/* Competitor Launch. Static site styles. Mobile first. */
/* Two-color system. Navy carries structure and content, teal carries emphasis and labels. */

:root {
  --paper: #ffffff;
  --ground: #f5f7f8;
  --tint: #eff4f2;
  --ink: #0b1a2e;
  --ink-hover: #1c3450;
  --muted: #5b6473;
  --rule: #dde1e6;
  --rule-strong: #c2cad3;
  --field: #8593a1;
  --accent: #1a6b5a;
  --accent-deep: #145448;
  --sans: "Calibri", "Carlito", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --measure: 40rem;
  --wide: 72rem;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --block: clamp(3rem, 8vw, 4.5rem);
  --radius: 4px;
  --ease: cubic-bezier(0.2, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--tint); }

/* Typography. Hierarchy through size and weight only. */

h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 1rem;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.06; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.85rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 0.5rem; }

p { margin: 0 0 1rem; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

.lede { font-size: 1.1rem; line-height: 1.7; color: var(--muted); }
.muted { color: var(--muted); }
.small { font-size: 0.9375rem; }

a { color: var(--accent); text-underline-offset: 0.15em; text-decoration-thickness: 1px; transition: color 0.15s ease; }
a:hover { color: var(--accent-deep); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; max-width: var(--measure); }
li { margin-bottom: 0.4rem; }

strong { font-weight: 700; }

/* Skip link */

.skip {
  position: absolute;
  left: 1.25rem;
  top: -6rem;
  padding: 0.6rem 1.25rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 10;
}
.skip:focus { top: 0; }

/* Layout */

.wrap {
  width: min(100% - 2 * var(--gutter), var(--wide));
  margin-inline: auto;
}

.section {
  padding-block: var(--block);
  border-top: 1px solid var(--rule);
}

.section.ground { background: var(--ground); }

.grid {
  display: grid;
  gap: 1.5rem 3rem;
}

@media (min-width: 56rem) {
  .grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .grid > h2 { grid-column: 1; }
  .grid > .body { grid-column: 2; }
}

.body > *:first-child { margin-top: 0; }

/* Header and navigation */

.site-header {
  padding-block: 1.375rem;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.brand {
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  max-width: none;
}
.nav li { margin: 0; }
.nav a {
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
}
.nav a:hover { color: var(--ink); text-decoration: none; }

@media (max-width: 47.99rem) {
  .nav { order: 3; flex-basis: 100%; }
}

/* Buttons. Navy primary, outlined quiet, small radius, no shadow. */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.875rem;
  padding: 0.6rem 1.375rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  line-height: 1.2;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.button:hover { background: var(--ink-hover); border-color: var(--ink-hover); color: var(--paper); }

.button.quiet {
  background: transparent;
  color: var(--ink);
}
.button.quiet:hover { background: rgba(11, 26, 46, 0.06); color: var(--ink); }

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 1.75rem 0 1.25rem;
}

/* Hero */

.hero {
  padding-block: clamp(3rem, 7vw, 4.5rem) var(--block);
  background: var(--paper);
}

.hero h1 { max-width: 20ch; }
.hero .lede { max-width: 43rem; }

.facts {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0;
  max-width: none;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--paper);
  overflow: hidden;
}
.facts li {
  margin: 0;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}
.facts li:last-child { border-bottom: 0; }

@media (min-width: 56rem) {
  .hero .wrap {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
  }
  .facts { margin-top: 0.5rem; }
}

/* Sample previews. Hairline cards, no fills, no shadow. */

.previews {
  display: grid;
  gap: 1.5rem;
  margin: 0 0 2rem;
}

@media (min-width: 48rem) {
  .previews { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
}

.previews figure {
  margin: 0;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--paper);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.previews figure:hover { border-color: var(--rule-strong); }
.previews img,
.slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ground);
  border-bottom: 1px solid var(--rule);
}
.slide img { border: 1px solid var(--rule); border-radius: 6px; }
.previews figcaption { padding: 1rem 1.125rem 1.125rem; }
.previews figcaption h3 { margin-bottom: 0.25rem; font-size: 1.05rem; }
.previews figcaption p { font-size: 0.9375rem; color: var(--muted); }

/* Definition-style lists */

.items { list-style: none; padding: 0; margin: 0 0 1.5rem; max-width: var(--measure); }
.items li { margin: 0 0 1.5rem; }
.items li:last-child { margin-bottom: 0; }
.items h3 { color: var(--accent); font-size: 1.05rem; }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0 0 1.5rem; max-width: var(--measure); }
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin: 0 0 1.75rem;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  width: 1.9rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Price */

.price-line {
  font-family: var(--sans);
  font-size: clamp(1.25rem, 1vw + 0.9rem, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
  max-width: var(--measure);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  background: var(--tint);
  margin: 1.5rem 0;
}

/* FAQ */

.faq { max-width: var(--measure); }
.faq details { border-top: 1px solid var(--rule); }
.faq details:last-child { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  flex: none;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding-bottom: 1.25rem; color: var(--muted); }

/* Form */

.form { max-width: var(--measure); }
.form .field { margin-bottom: 1.25rem; }
.form label { display: block; font-weight: 700; font-size: 0.9375rem; margin-bottom: 0.35rem; }
.form .hint { display: block; font-weight: 400; color: var(--muted); font-size: 0.9375rem; }
.form input,
.form textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--field);
  border-radius: var(--radius);
  transition: border-color 0.15s ease;
}
.form input:hover,
.form textarea:hover { border-color: var(--ink); }
.form textarea { min-height: 7.5rem; resize: vertical; }
.form input:focus-visible,
.form textarea:focus-visible { outline-offset: 1px; border-color: var(--accent); }
.form .hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Footer */

.site-footer {
  border-top: 1px solid var(--rule);
  background: var(--ground);
  padding-block: 2.5rem 3rem;
  font-size: 0.9375rem;
  color: var(--muted);
}
.site-footer p { max-width: 48rem; }
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  max-width: none;
}
.site-footer li { margin: 0; }
.site-footer a { color: var(--ink); font-weight: 500; }
.site-footer a:hover { color: var(--accent); }

/* Inner pages */

.page { padding-block: clamp(2.5rem, 6vw, 4rem) var(--block); }
.page h1 { font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.08; letter-spacing: -0.015em; }
.page h2 { font-size: 1.5rem; margin-top: 2.5rem; }
.page .content { max-width: var(--measure); }

.slide { margin: 0 0 3rem; }
.slide figcaption { margin-top: 0.75rem; max-width: var(--measure); }

.notice {
  max-width: var(--measure);
  padding: 1.25rem 1.5rem;
  background: var(--tint);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  margin: 2rem 0;
}

.founder-photo{display:block;width:160px;height:160px;border-radius:6px;object-fit:cover;margin:0 0 1.25rem;border:1px solid var(--rule,#dde1e6)}
@media (min-width:768px){.founder-photo{width:200px;height:200px}}
