-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
657 lines (630 loc) · 20.7 KB
/
Copy pathindex.html
File metadata and controls
657 lines (630 loc) · 20.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MethodSAT — Private SAT Instruction</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet" />
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--navy: #0C447C;
--navy-dark: #042C53;
--navy-deep: #021c35;
--navy-light: #E6F1FB;
--navy-mid: #B5D4F4;
--navy-rule: #d0dce8;
--gold: #BA7517;
--gold-light: #FAEEDA;
--white: #ffffff;
--off: #F8FAFB;
--text: #0f1c2b;
--muted: #4a5f74;
--light-text: #8099b0;
--serif: 'Playfair Display', Georgia, serif;
--sans: 'Inter', system-ui, sans-serif;
--radius: 4px;
--radius-md: 8px;
}
html { scroll-behavior: smooth; }
body {
font-family: var(--sans);
color: var(--text);
background: var(--white);
font-size: 16px;
line-height: 1.7;
-webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 980px; margin: 0 auto; padding: 0 32px; }
.rule { width: 40px; height: 2px; background: var(--gold); margin-bottom: 20px; }
.rule-center { margin-left: auto; margin-right: auto; }
nav {
position: sticky;
top: 0;
background: var(--white);
border-bottom: 1px solid var(--navy-rule);
z-index: 100;
}
.nav-inner {
max-width: 980px;
margin: 0 auto;
padding: 0 32px;
height: 64px;
display: flex;
align-items: center;
justify-content: space-between;
}
.nav-logo {
font-family: var(--serif);
font-size: 20px;
font-weight: 600;
color: var(--navy-dark);
letter-spacing: 0.02em;
}
.nav-links {
display: flex;
align-items: center;
gap: 32px;
}
.nav-links a {
font-size: 13px;
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--muted);
transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
background: var(--navy-dark) !important;
color: var(--white) !important;
padding: 9px 22px !important;
border-radius: var(--radius) !important;
font-size: 12px !important;
font-weight: 600 !important;
letter-spacing: 0.08em !important;
text-transform: uppercase !important;
transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--navy-deep) !important; }
.hero {
background: var(--navy-deep);
padding: 96px 32px 88px;
}
.hero-inner {
max-width: 980px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 320px;
gap: 64px;
align-items: center;
}
.hero-eyebrow {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 28px;
}
.eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.eyebrow-text {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--gold);
}
.hero h1 {
font-family: var(--serif);
font-size: clamp(30px, 4vw, 50px);
font-weight: 500;
color: var(--white);
line-height: 1.18;
margin-bottom: 24px;
letter-spacing: -0.01em;
}
.hero-sub {
font-size: 15px;
color: var(--navy-mid);
line-height: 1.8;
max-width: 480px;
margin-bottom: 40px;
font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
display: inline-block;
background: var(--white);
color: var(--navy-dark);
padding: 13px 28px;
border-radius: var(--radius);
font-size: 12px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
transition: background 0.2s;
}
.btn-primary:hover { background: var(--navy-light); }
.btn-outline {
display: inline-block;
background: transparent;
color: var(--navy-mid);
padding: 13px 28px;
border-radius: var(--radius);
font-size: 12px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
border: 1px solid rgba(181,212,244,0.28);
transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--navy-mid); color: var(--white); }
.hero-card {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(181,212,244,0.15);
border-radius: var(--radius-md);
padding: 32px 28px;
}
.hero-card-title {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 24px;
}
.credential {
padding: 18px 0;
border-bottom: 1px solid rgba(181,212,244,0.1);
}
.credential:last-child { border-bottom: none; padding-bottom: 0; }
.credential:first-of-type { padding-top: 0; }
.cred-value {
font-family: var(--serif);
font-size: 28px;
font-weight: 500;
color: var(--white);
line-height: 1;
margin-bottom: 4px;
}
.cred-label { font-size: 12px; color: var(--light-text); font-weight: 400; }
.divider { height: 1px; background: var(--navy-rule); }
section { padding: 88px 32px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .rule { margin-left: auto; margin-right: auto; }
.section-eyebrow {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 14px;
}
.section-title {
font-family: var(--serif);
font-size: clamp(22px, 3vw, 34px);
font-weight: 500;
color: var(--navy-dark);
line-height: 1.25;
letter-spacing: -0.01em;
margin-bottom: 16px;
}
.section-sub {
font-size: 15px;
color: var(--muted);
font-weight: 300;
max-width: 540px;
line-height: 1.75;
}
.section-header.center .section-sub { margin: 0 auto; }
.steps-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
border: 1px solid var(--navy-rule);
border-radius: var(--radius-md);
overflow: hidden;
gap: 0;
}
.step-cell {
background: var(--white);
padding: 36px 28px;
border-right: 1px solid var(--navy-rule);
}
.step-cell:last-child {
border-right: none;
}
.step-index {
font-family: var(--serif);
font-size: 13px;
color: var(--gold);
font-weight: 400;
letter-spacing: 0.06em;
margin-bottom: 20px;
}
.step-cell h3 {
font-family: var(--serif);
font-size: 17px;
font-weight: 500;
color: var(--navy-dark);
margin-bottom: 10px;
line-height: 1.3;
}
.step-cell p { font-size: 13px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.offers-bg { background: var(--off); }
.offers-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 24px;
}
.offer-card {
background: var(--white);
border: 1px solid var(--navy-rule);
border-radius: var(--radius-md);
padding: 28px 24px;
}
.offer-rule { width: 24px; height: 2px; background: var(--navy); margin-bottom: 18px; }
.offer-card h3 {
font-family: var(--serif);
font-size: 16px;
font-weight: 500;
color: var(--navy-dark);
margin-bottom: 8px;
}
.offer-card p { font-size: 13px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
}
.testimonial-card {
background: var(--white);
border: 1px solid var(--navy-rule);
border-radius: var(--radius-md);
padding: 32px 28px;
}
.t-quote-mark {
font-family: var(--serif);
font-size: 48px;
color: var(--navy-light);
line-height: 1;
margin-bottom: 8px;
}
.testimonial-card blockquote {
font-size: 14px;
color: var(--text);
line-height: 1.8;
margin-bottom: 24px;
font-style: italic;
font-weight: 300;
}
.t-divider { width: 100%; height: 1px; background: var(--navy-rule); margin-bottom: 16px; }
.t-author { font-size: 13px; font-weight: 600; color: var(--navy-dark); }
.t-role { font-size: 12px; color: var(--light-text); margin-top: 2px; }
.placeholder-note {
display: inline-block;
font-size: 10px;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
background: var(--gold-light);
color: var(--gold);
padding: 3px 8px;
border-radius: 2px;
margin-bottom: 16px;
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 72px;
align-items: start;
}
.about-text p {
font-size: 14px;
color: var(--muted);
font-weight: 300;
line-height: 1.85;
margin-bottom: 16px;
}
.credentials-panel {
border: 1px solid var(--navy-rule);
border-radius: var(--radius-md);
overflow: hidden;
}
.cred-panel-header {
background: var(--navy-dark);
padding: 18px 24px;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--navy-mid);
}
.cred-row {
display: flex;
align-items: flex-start;
gap: 14px;
padding: 18px 24px;
border-bottom: 1px solid var(--navy-rule);
background: var(--white);
}
.cred-row:last-child { border-bottom: none; }
.cred-check {
width: 18px;
height: 18px;
border-radius: 50%;
background: var(--navy-light);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 2px;
}
.cred-check svg { width: 10px; height: 10px; stroke: var(--navy-dark); stroke-width: 2.5; fill: none; }
.cred-row-text { font-size: 13px; color: var(--text); line-height: 1.55; font-weight: 400; }
.cred-row-sub { font-size: 12px; color: var(--light-text); margin-top: 2px; font-weight: 300; }
.cta-section {
background: var(--navy-deep);
padding: 96px 32px;
text-align: center;
}
.cta-eyebrow {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 20px;
}
.cta-section h2 {
font-family: var(--serif);
font-size: clamp(26px, 4vw, 42px);
font-weight: 500;
color: var(--white);
margin-bottom: 16px;
letter-spacing: -0.01em;
line-height: 1.2;
}
.cta-section p {
font-size: 15px;
color: var(--navy-mid);
max-width: 460px;
margin: 0 auto 40px;
font-weight: 300;
line-height: 1.8;
}
.cta-note {
margin-top: 48px;
font-size: 12px;
color: rgba(181,212,244,0.4);
letter-spacing: 0.04em;
}
footer {
background: var(--navy-deep);
border-top: 1px solid rgba(255,255,255,0.06);
padding: 32px;
text-align: center;
}
footer p { font-size: 12px; color: rgba(181,212,244,0.35); letter-spacing: 0.04em; }
footer a { color: rgba(181,212,244,0.55); text-decoration: underline; }
@media (max-width: 860px) {
.steps-grid { grid-template-columns: 1fr 1fr; }
.step-cell:nth-child(2) { border-right: none; }
.step-cell { border-bottom: 1px solid var(--navy-rule); }
.step-cell:nth-child(3), .step-cell:nth-child(4) { border-bottom: none; }
.step-cell:nth-child(4) { border-right: none; }
}
@media (max-width: 768px) {
.hero-inner { grid-template-columns: 1fr; gap: 40px; }
.about-grid { grid-template-columns: 1fr; gap: 40px; }
.steps-grid { grid-template-columns: 1fr; }
.step-cell { border-right: none; border-bottom: 1px solid var(--navy-rule); }
.step-cell:last-child { border-bottom: none; }
.nav-links a:not(.nav-cta) { display: none; }
section { padding: 60px 20px; }
.container { padding: 0 20px; }
.hero { padding: 60px 20px 52px; }
.cta-section { padding: 72px 20px; }
}
</style>
</head>
<body>
<nav>
<div class="nav-inner">
<div class="nav-logo">MethodSAT</div>
<div class="nav-links">
<a href="#process">Process</a>
<a href="#about">About</a>
<a href="https://calendly.com/methodsat/30min" class="nav-cta" target="_blank" rel="noopener">Book a Free Intro Session</a>
</div>
</div>
</nav>
<div class="hero">
<div class="hero-inner">
<div>
<div class="hero-eyebrow">
<div class="eyebrow-line"></div>
<span class="eyebrow-text">Private SAT Instruction</span>
</div>
<h1>Be Prepared to Ace SAT Math</h1>
<p class="hero-sub">MethodSAT provides structured, one-on-one online SAT preparation built around each student's individual gaps — not a generic curriculum. Taught by Grady Thomas, who earned a perfect 800 on the SAT Mathematics section. Personalized 1-on-1 instruction at a fraction of what the big platforms charge.</p>
<div class="hero-btns">
<a href="https://calendly.com/methodsat/30min" class="btn-primary" target="_blank" rel="noopener">Book a Free Intro Session</a>
<a href="#process" class="btn-outline">View the Process</a>
</div>
</div>
<div class="hero-card">
<div class="hero-card-title">Credentials at a glance</div>
<div class="credential">
<div class="cred-value">800</div>
<div class="cred-label">Perfect SAT Mathematics score</div>
</div>
<div class="credential">
<div class="cred-value">900+</div>
<div class="cred-label">Students at Rye High School, where Grady serves as Student Body President</div>
</div>
<div class="credential">
<div class="cred-value">1-on-1</div>
<div class="cred-label">Fully individualized instruction</div>
</div>
<div class="credential">
<div class="cred-value">Online</div>
<div class="cred-label">Conducted via Google Meet — no commute required</div>
</div>
</div>
</div>
</div>
<section id="process">
<div class="container">
<div class="section-header">
<div class="section-eyebrow">The process</div>
<div class="rule"></div>
<h2 class="section-title">A structured path from assessment to score</h2>
<p class="section-sub">Every student begins with a diagnostic, not a sales pitch. The plan follows the data.</p>
</div>
<div class="steps-grid">
<div class="step-cell">
<div class="step-index">Step I</div>
<h3>Free Consultation</h3>
<p>A free 30-minute introductory session to understand your student's current standing, target score, and test timeline. No commitment required.</p>
</div>
<div class="step-cell">
<div class="step-index">Step II</div>
<h3>Diagnostic Assessment</h3>
<p>A targeted diagnostic identifies precisely where points are being lost — so instruction begins where it matters most.</p>
</div>
<div class="step-cell">
<div class="step-index">Step III</div>
<h3>Individualized Study Plan</h3>
<p>A custom roadmap is developed for your student's timeline, prioritizing high-impact areas before test day.</p>
</div>
<div class="step-cell">
<div class="step-index">Step IV</div>
<h3>Weekly Sessions & Review</h3>
<p>Live sessions over Google Meet with real-time feedback, practice test analysis, and ongoing plan adjustments as scores improve.</p>
</div>
</div>
</div>
</section>
<div class="divider"></div>
<section class="offers-bg">
<div class="container">
<div class="section-header center">
<div class="section-eyebrow">What is included</div>
<div class="rule rule-center"></div>
<h2 class="section-title">Comprehensive preparation — nothing extraneous</h2>
<p class="section-sub">Every element of the engagement is designed to move the score. No filler, no upsells.</p>
</div>
<div class="offers-grid">
<div class="offer-card">
<div class="offer-rule"></div>
<h3>Personalized Instruction</h3>
<p>Each session is structured around the student's specific weaknesses — not a predetermined curriculum followed regardless of individual need.</p>
</div>
<div class="offer-card">
<div class="offer-rule"></div>
<h3>Diagnostic Assessment</h3>
<p>A thorough diagnostic pinpoints the exact question types and content areas costing the student points before instruction begins.</p>
</div>
<div class="offer-card">
<div class="offer-rule"></div>
<h3>Live Online Sessions</h3>
<p>All sessions are conducted live via Google Meet, allowing focused, interactive instruction from any location without commute.</p>
</div>
<div class="offer-card">
<div class="offer-rule"></div>
<h3>Practice Test Analysis</h3>
<p>Full-length practice tests are reviewed in detail — every missed question examined to understand the error pattern behind it.</p>
</div>
<div class="offer-card">
<div class="offer-rule"></div>
<h3>Flexible Scheduling</h3>
<p>Sessions are scheduled around the student's academic and extracurricular calendar, with consistent availability week to week.</p>
</div>
<div class="offer-card">
<div class="offer-rule"></div>
<h3>Between-Session Support</h3>
<p>Questions that arise between sessions are addressed directly — students are never left waiting a week for an answer.</p>
</div>
</div>
</div>
</section>
<div class="divider"></div>
<section id="about">
<div class="container">
<div class="about-grid">
<div class="about-text">
<div class="section-eyebrow">About the instructor</div>
<div class="rule"></div>
<h2 class="section-title">Grady Thomas</h2>
<p>MethodSAT was founded on a straightforward premise: students deserve instruction from someone who has genuinely mastered the material they are being asked to learn. Grady Thomas earned a perfect 800 on the SAT Mathematics section and currently serves as Student Body President of Rye High School — a school of over 900 students — bringing firsthand perspective on what it takes to excel academically while managing a full schedule.</p>
<p>His approach prioritizes diagnostic clarity over volume. Rather than covering as much material as possible, sessions are structured around the specific gaps that are costing each student points — making every hour of preparation deliberate and measurable.</p>
<p>Grady works exclusively with students in grades 10 and 11, entirely online, and limits his caseload to ensure each student receives the attention the process requires.</p>
</div>
<div>
<div class="credentials-panel">
<div class="cred-panel-header">Why MethodSAT over a tutoring platform</div>
<div class="cred-row">
<div class="cred-check">
<svg viewBox="0 0 12 12"><polyline points="2,6 5,9 10,3"/></svg>
</div>
<div>
<div class="cred-row-text">You work with Grady directly — every session, without exception</div>
<div class="cred-row-sub">Not a rotating pool of contractors assigned by availability</div>
</div>
</div>
<div class="cred-row">
<div class="cred-check">
<svg viewBox="0 0 12 12"><polyline points="2,6 5,9 10,3"/></svg>
</div>
<div>
<div class="cred-row-text">Instruction built around your student's diagnostic results</div>
<div class="cred-row-sub">Not a standardized curriculum applied uniformly to every student</div>
</div>
</div>
<div class="cred-row">
<div class="cred-check">
<svg viewBox="0 0 12 12"><polyline points="2,6 5,9 10,3"/></svg>
</div>
<div>
<div class="cred-row-text">Direct communication — no account managers or support queues</div>
<div class="cred-row-sub">Questions are answered by the instructor</div>
</div>
</div>
<div class="cred-row">
<div class="cred-check">
<svg viewBox="0 0 12 12"><polyline points="2,6 5,9 10,3"/></svg>
</div>
<div>
<div class="cred-row-text">Taught by a tutor who earned a perfect 800 in SAT Mathematics</div>
<div class="cred-row-sub">Not a generalist matched by an algorithm</div>
</div>
</div>
<div class="cred-row">
<div class="cred-check">
<svg viewBox="0 0 12 12"><polyline points="2,6 5,9 10,3"/></svg>
</div>
<div>
<div class="cred-row-text">No platform fees, hidden minimums, or inflexible packages</div>
<div class="cred-row-sub">Scheduling and structure are determined by the student's needs</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="cta-section">
<div class="cta-eyebrow">Begin the process</div>
<h2>Book a free introductory session</h2>
<p>A 30-minute session to discuss your student's goals, current standing, and whether MethodSAT is the right fit. No obligation.</p>
<a href="https://calendly.com/methodsat/30min" class="btn-primary" target="_blank" rel="noopener">Book a Free Intro Session</a>
</div>
<footer>
<p>No commitment required · Available via Google Meet · Grades 10–11</p>
<p style="margin-top:10px;">© 2025 MethodSAT · Grady Thomas, Instructor · <a href="https://calendly.com/methodsat/30min" target="_blank" rel="noopener">Schedule a Session</a></p>
</footer>
</body>
</html>