/* Built Local. Plain page, the words do the work. Single light theme on purpose.
   Palette: Chargers on mist paper. Powder blue, navy, gold; cool off-white page; navy contact block.
   Every color is a role token in this block; a palette swap is this block only.
   Look: Shawn's Canva mock of 2026-09-08 (sky hero, gradient headings with one bold word, glass cards, pill buttons with an arrow chip,
   gradient price cards, contact block). Zero JavaScript: the effects are CSS. */
:root {
  --paper: #EDF1F5;        /* page, mist */
  --card: #F8FAFC;         /* cards, form */
  --ink: #14161a;          /* body text */
  --ink-2: #4a4f57;        /* secondary text */
  --line: #D5DCE4;         /* soft borders */
  --line-strong: #D5DCE4;  /* header and footer borders */
  --btn: #002A5E;          /* main buttons, navy */
  --on-btn: #FFFFFF;
  --btn-hover: #0080C6;    /* powder blue */
  --on-btn-hover: #FFFFFF;
  --bar: #0080C6;          /* benefit bars */
  --on-bar: #FFFFFF;
  --shot-border: #14161a;  /* phone screenshot frames */
  --shot-bg: #000000;
  --tier-border: #002A5E;  /* featured price tier */
  --tier-shadow: #FFC20E;  /* gold */
  --accent-text: #002A5E;  /* eyebrow, tags, links, ghost buttons, header rocket */
  --focus: #FFC20E;
  --rocket: #0080C6;       /* the rocket in the official logo (Shawn's file uses a lighter sky blue; the site runs it in powder so it matches the buttons) */
  --heading-a: #14161a;    /* heading gradient, start */
  --heading-b: #002A5E;    /* heading gradient, end */
  --glass: rgba(255, 255, 255, .62);       /* glass card fill */
  --glass-border: rgba(20, 22, 26, .14);
  --glow: rgba(0, 128, 198, .22);          /* powder glow */
  --glow-soft: rgba(255, 194, 14, .16);    /* gold haze */
  --void: #002A5E;                         /* contact block, navy */
  --void-ink: #EDF1F5;
  --void-ink-2: #C9D6E4;
  --void-heading-a: #FFFFFF;
  --void-heading-b: #9CC9E8;
  --void-glass: rgba(255, 255, 255, .08);
  --void-glass-border: rgba(237, 241, 245, .25);
  --void-btn: #0080C6;
  --void-on-btn: #FFFFFF;
  --void-btn-hover: #FFC20E;
  --void-on-btn-hover: #14161a;
  --display: "Archivo Black", "Arial Black", Impact, sans-serif;
  --heading: "Archivo", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --body: "Archivo", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-text); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.wrap { max-width: 720px; margin: 0 auto; padding: 0 20px; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* type: light headings with one bold word, gradient fill */
h1, h2 { font-family: var(--heading); font-weight: 300; line-height: 1.05; margin: 0 0 .45em; letter-spacing: -0.02em; text-wrap: balance;
  background: linear-gradient(100deg, var(--heading-a), var(--heading-b)); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
h1 b, h2 b { font-weight: 900; }
h1 { font-size: clamp(2.5rem, 9.5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 6.5vw, 2.6rem); margin-top: 0; }
h3 { font-family: var(--heading); font-weight: 900; font-size: 1.2rem; line-height: 1.1; margin: 0 0 .45em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
strong { font-weight: 700; }
.sub { color: var(--ink-2); max-width: 60ch; }

/* logo: Shawn's official mark (2026-09-09), inline SVG symbols; the letters take the ink token, the rocket takes the rocket token */
.logo { display: block; width: min(52vw, 340px); aspect-ratio: 590 / 386; height: auto; }
.bl-ink { fill: var(--ink); }
.bl-rocket { fill: var(--rocket); }

/* top bar */
.top { position: sticky; top: 0; z-index: 5; background: var(--paper); border-bottom: 1px solid var(--line-strong); }
.row { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 58px; }
.mark { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-family: var(--display); text-decoration: none; font-size: 1.02rem; letter-spacing: -0.01em; color: var(--ink); }
.mark-rocket { width: 19px; height: 30px; }
.pill { font-weight: 700; text-decoration: none; white-space: nowrap; padding: 8px 14px; border: 2px solid var(--accent-text); border-radius: 999px; font-size: .9rem; color: var(--accent-text); }

/* pill buttons with a fill sweep and an arrow chip */
.btn { display: inline-flex; align-items: center; gap: 12px; background-color: var(--btn); background-image: linear-gradient(var(--btn-hover), var(--btn-hover)); background-repeat: no-repeat; background-size: 0% 100%; background-position: left center; color: var(--on-btn); font-weight: 700; text-decoration: none; padding: 12px 22px; border: 2px solid var(--btn); border-radius: 999px; font-size: 1rem; cursor: pointer; font-family: var(--body); transition: background-size .35s ease, color .35s ease, border-color .35s ease, transform .2s ease; }
.btn:has(.chip) { padding-right: 8px; }
.btn:hover { background-size: 100% 100%; color: var(--on-btn-hover); border-color: var(--btn-hover); }
.btn.ghost { background-color: transparent; background-image: linear-gradient(var(--accent-text), var(--accent-text)); color: var(--accent-text); border-color: var(--accent-text); }
.btn.ghost:hover { color: var(--paper); }
.btn.big { width: 100%; padding: 14px 10px 14px 22px; font-size: 1.1rem; justify-content: space-between; }
.chip { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--paper); color: var(--ink); display: inline-grid; place-items: center; font-size: 1rem; line-height: 1; }
.link { font-weight: 700; color: var(--accent-text); }

/* sections */
section { padding: 56px 20px; }
.zone section + section { border-top: 1px solid var(--glass-border); }

/* hero: sky atmosphere in CSS, no photo */
.sky { background:
  radial-gradient(60% 45% at 78% 12%, var(--glow) 0%, transparent 65%),
  radial-gradient(55% 40% at 18% 55%, var(--glow-soft) 0%, transparent 65%),
  radial-gradient(90% 55% at 50% 105%, var(--card) 0%, transparent 70%),
  var(--paper);
  border-bottom: 1px solid var(--glass-border); }
.hero { padding-top: 48px; padding-bottom: 48px; text-align: center; }
.hero .logo { margin: 0 auto 26px; }
.eyebrow { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; color: var(--accent-text); margin-bottom: 18px; }
.lede { font-size: 1.15rem; max-width: 58ch; margin-left: auto; margin-right: auto; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; justify-content: center; }

.letter { font-size: 1.08rem; max-width: 720px; }
.letter p { max-width: 62ch; }

/* work: glass cards with a soft glow */
.piece { display: grid; gap: 16px; padding: 18px; border-radius: 22px; border: 1px solid var(--glass-border); background: radial-gradient(120% 90% at 50% 0%, var(--glow) 0%, transparent 60%), var(--glass); backdrop-filter: blur(8px); }
.feature { grid-template-columns: minmax(0, 220px) 1fr; align-items: start; margin: 22px 0 0; }
.feature + .feature { margin-top: 22px; }
.shot { display: block; border: 3px solid var(--shot-border); border-radius: 22px; overflow: hidden; background: var(--shot-bg); transition: transform .3s ease, box-shadow .3s ease; }
.shot img { width: 100%; aspect-ratio: 520 / 900; object-fit: cover; }
.piece-body h3 { margin-top: 4px; }
.piece-body p:last-of-type { margin-bottom: 1.2em; }
.tag { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; color: var(--accent-text); margin: 0 0 4px; }

/* benefits */
.benefits { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.benefits li { padding-left: 18px; border-left: 4px solid var(--bar); }

/* price: gradient cards with a foot row */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 22px 0; }
.tier { display: flex; flex-direction: column; background: linear-gradient(160deg, var(--card), var(--paper) 90%); border: 1px solid var(--glass-border); border-radius: 18px; padding: 20px 16px 16px; transition: transform .3s ease, box-shadow .3s ease; }
.tier.hot { border-color: var(--tier-border); box-shadow: 6px 6px 0 var(--tier-shadow), 0 20px 50px var(--glow); }
.tier-name { font-weight: 700; margin: 0 0 6px; font-size: .95rem; }
.deal { display: inline-block; align-self: flex-start; background: var(--tier-shadow); color: var(--btn); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 5px 10px; border-radius: 999px; margin: 0 0 12px; }
.amount { font-family: var(--display); font-size: 2.2rem; margin: 0; line-height: 1; font-variant-numeric: tabular-nums; }
.amount s { color: var(--ink-2); font-size: 1.3rem; margin-right: 6px; }
.once { color: var(--ink-2); font-size: .85rem; margin: 6px 0 12px; }
.tier ul { margin: 0; padding-left: 18px; font-size: .95rem; flex: 1; }
.tier li { margin-bottom: 4px; }
.tier-go { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--glass-border); text-decoration: none; font-weight: 700; color: var(--ink); font-size: .95rem; }
.tier-go .chip { background: var(--btn); color: var(--on-btn); transition: transform .2s ease; }
.tier-go:hover .chip { transform: translateX(3px); }
.callout { border-radius: 22px; border: 1px solid var(--glass-border); background: radial-gradient(120% 90% at 50% 0%, var(--glow) 0%, transparent 60%), var(--glass); padding: 22px 20px; }
.callout h3 { margin-top: 0; }
.callout h3 + p { margin-bottom: 1.3em; }
.callout p:last-child { margin-bottom: 0; }

/* ask: black block, big gradient heading, glass form */
.ask { background: var(--void); color: var(--void-ink); border-top: 1px solid var(--glass-border); padding: 56px 20px 48px;
  --ink: var(--void-ink); --ink-2: var(--void-ink-2); --heading-a: var(--void-heading-a); --heading-b: var(--void-heading-b); --glass: var(--void-glass); --glass-border: var(--void-glass-border); --btn: var(--void-btn); --on-btn: var(--void-on-btn); --btn-hover: var(--void-btn-hover); --on-btn-hover: var(--void-on-btn-hover); --accent-text: var(--void-heading-b); --focus: var(--void-btn-hover); }
.ask input, .ask textarea { background: var(--card); color: var(--void-on-btn-hover); border-color: transparent; }
.ask .chip { background: var(--void); color: var(--void-ink); }
.ask h2 { text-align: center; font-size: clamp(2.2rem, 9vw, 3.6rem); }
.ask .sub { text-align: center; margin-left: auto; margin-right: auto; }
form { display: grid; gap: 14px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 22px; padding: 22px 20px; margin: 22px 0; backdrop-filter: blur(8px); }
label { display: grid; gap: 6px; font-weight: 700; font-size: .95rem; }
input, textarea { font: inherit; font-weight: 400; padding: 12px 14px; border: 1px solid var(--glass-border); border-radius: 12px; background: var(--paper); color: var(--ink); width: 100%; }
input:focus, textarea:focus { border-color: var(--accent-text); outline: none; }
.hp { position: absolute; left: -9999px; }
.fine { color: var(--ink-2); font-size: .85rem; margin: 0; }
.steps { padding-left: 22px; display: grid; gap: 10px; margin: 26px 0 0; }

.foot { padding: 34px 20px 60px; border-top: 1px solid var(--line-strong); color: var(--ink-2); font-size: .95rem; text-align: center; }
.foot-rocket { width: 22px; height: 35px; margin: 0 auto 14px; }
.foot p:last-child { font-weight: 700; color: var(--ink); }

/* sticky mobile CTA: sticks to the bottom of the phone, scrolls away when the form arrives. Pure CSS: it is the last child of .zone. */
.sticky-cta { display: none; }

/* motion: card lift, headline reveal, scroll reveal. All off under reduced motion. */
@media (hover: hover) {
  .shot:hover { transform: translateY(-4px); box-shadow: 0 18px 40px var(--glow); }
  .tier:hover { transform: translateY(-4px); box-shadow: 0 18px 40px var(--glow); }
  .tier.hot:hover { box-shadow: 6px 6px 0 var(--tier-shadow), 0 24px 60px var(--glow); }
}
.tier-note { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--glass-border); font-weight: 700; color: var(--ink-2); font-size: .95rem; }
@media (prefers-reduced-motion: no-preference) {
  h1 { animation: reveal .9s cubic-bezier(.2, .7, .2, 1) both; }
  .hero .logo { animation: fade-up .8s ease both; }
  .hero .eyebrow { animation: fade-up .6s ease .25s both; }
  .hero .lede { animation: fade-up .6s ease .45s both; }
  .hero .cta-row { animation: fade-up .6s ease .6s both; }
  @keyframes reveal { from { clip-path: inset(0 100% 0 0); opacity: 0; } to { clip-path: inset(0 0 0 0); opacity: 1; } }
  @keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
  @supports (animation-timeline: view()) {
    .letter p, .work .piece, .benefits li, .tiers, .callout, .ask form, .steps li { animation: rise linear both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
    @keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
  }
}

@media (max-width: 640px) {
  section { padding: 44px 20px; }
  h1, h2 { font-weight: 400; }
  .feature { grid-template-columns: 1fr; }
  .feature .shot { max-width: 240px; margin: 0 auto; }
  .tiers { grid-template-columns: 1fr; }
  .sticky-cta { display: inline-flex; position: sticky; bottom: 14px; z-index: 4; margin: 0 auto 20px; width: calc(100% - 40px); justify-content: space-between; box-shadow: 0 12px 30px var(--glow); }
  .zone { display: flex; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
