/* === Brand tokens === */
:root {
  --black: #000000;
  --ink: #0E0E0E;
  --teal: #57DFCE;
  --teal-bright: #5EF0CD;
  --indigo: #332550;
  --link: #0E0CAB;
  --grey-700: #616161;
  --grey-600: #686975;
  --grey-300: #c2c4cf;
  --grey-200: #dcdee6;
  --bg-soft: #F0F4F3;
  --white: #FFFFFF;

  --container: 1574px;
  --pad-x: clamp(16px, 4vw, 24px);
  --radius: 6px;

  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.06);

  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* === Buttons (mirror MUI shape) === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(14px, 1.1dvw, 18px);
  line-height: 1.5;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background-color .25s, box-shadow .25s, color .25s, border-color .25s, transform .15s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--teal);
  color: rgba(0,0,0,0.87);
}
.btn-primary:hover { background: var(--teal-bright); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1px solid rgba(87,223,206,0.5);
}
.btn-outline:hover { background: rgba(87,223,206,0.08); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { color: var(--teal); }
.btn-lg { padding: 14px 28px; font-size: clamp(15px, 1.2dvw, 18px); }

/* === Header === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 2px 4px -1px rgba(0,0,0,0.2), 0 4px 5px 0 rgba(0,0,0,0.14);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.header-logo img { height: 28px; width: auto; }
.nav { display: flex; gap: 4px; align-items: center; }
.nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 4px;
  text-transform: capitalize;
}
.nav a:hover { color: var(--teal); text-decoration: none; }
.nav .btn { margin-left: 8px; }

@media (max-width: 900px) {
  .nav a:not(.btn) { display: none; }
}

main { padding-top: 72px; }

/* === Hero === */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) 0 clamp(32px, 6vw, 72px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 90%;
  background: url('assets/flare.x.webp') center top / cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(87,223,206,0.12);
  color: var(--teal);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); display: inline-block;
  box-shadow: 0 0 12px var(--teal);
}
.hero h1 {
  margin: 0 0 16px;
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.025em;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.05;
}
.hero h1 .highlight {
  color: var(--teal);
}
.hero p.lede {
  margin: 0 0 32px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-ctas .meta {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-left: 4px;
}
.hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.hero-visual img { width: 100%; display: block; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
}

/* === Press strip (above trust) === */
.press-strip {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0 12px;
}
.press-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
}
.press-inner a { color: var(--teal); font-weight: 500; }
.press-inner a:hover { text-decoration: underline; }
.press-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: var(--white);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.press-pill .star { color: var(--teal); }
@media (max-width: 600px) { .press-inner { font-size: 12px; gap: 10px; } }

/* === Trust strip === */
.trust {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 24px 0 56px;
  border-top: 0;
}
.trust-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  gap: 28px 40px;
  opacity: 0.85;
}
.trust-grid img {
  height: 28px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1) opacity(0.85);
  transition: opacity .2s;
}
.trust-grid img:hover { opacity: 1; }
@media (max-width: 1100px) { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
@media (max-width: 600px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* === Section base === */
section.block { padding: clamp(64px, 8vw, 120px) 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 16px;
}
.block h2 {
  margin: 0 0 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1;
}
.block .lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--grey-700);
  max-width: 760px;
  line-height: 1.6;
}
.block p { font-size: clamp(15px, 1.1vw, 17px); color: var(--ink); line-height: 1.65; }
.alt-bg { background: var(--bg-soft); }

/* === Honest opener === */
.honest h2 .strike { text-decoration: line-through; text-decoration-color: var(--teal); text-decoration-thickness: 4px; }
.honest .columns { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; margin-top: 40px; }
.honest .columns p { font-size: clamp(16px, 1.2vw, 18px); line-height: 1.7; color: var(--grey-700); }
.honest .columns p strong { color: var(--ink); }
.honest .quote {
  position: sticky;
  top: 100px;
  padding: 32px;
  border-left: 4px solid var(--teal);
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  font-size: 19px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.honest .quote .attr {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 900px) { .honest .columns { grid-template-columns: 1fr; gap: 32px; } .honest .quote { position: static; } }

/* === How it works === */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.how-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-200);
  transition: transform .2s, box-shadow .2s;
}
.how-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.how-card .num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
}
.how-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.how-card p { color: var(--grey-700); font-size: 15px; line-height: 1.6; margin: 0; }
.how-card .visual {
  margin-bottom: 24px;
  height: 140px;
  border-radius: 8px;
  background: linear-gradient(135deg, #F5FCFB, #E6F8F4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.how-card .visual img { max-width: 80%; max-height: 90%; }
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; } }

/* === Pricing === */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.price-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--teal); }
.price-card.featured {
  border: 2px solid var(--teal);
  box-shadow: 0 16px 40px rgba(87,223,206,0.18);
}
.price-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal);
  color: rgba(0,0,0,0.87);
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.price-card .tier {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 8px;
}
.price-card .price {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.price-card .price small { font-size: 16px; font-weight: 400; color: var(--grey-700); }
.price-card .annual { font-size: 13px; color: var(--grey-700); margin-bottom: 20px; }
.price-card hr { border: 0; border-top: 1px solid var(--grey-200); margin: 0 0 20px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.price-card li {
  font-size: 14px;
  color: var(--ink);
  padding: 8px 0 8px 24px;
  position: relative;
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.price-card .btn { width: 100%; }
.pricing-note { text-align: center; margin-top: 32px; color: var(--grey-700); font-size: 14px; }
@media (max-width: 900px) { .pricing-table { grid-template-columns: 1fr; } }

/* === Numbers === */
.numbers {
  background: var(--ink);
  color: var(--white);
}
.numbers h2 { color: var(--white); }
.numbers .lede { color: rgba(255,255,255,0.7); }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.stat {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat .figure {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--teal);
  margin-bottom: 8px;
}
.stat h3 {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--white);
}
.stat p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) { .numbers-grid { grid-template-columns: 1fr; } }

/* === Scope === */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.scope-card {
  border-radius: 16px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--grey-200);
}
.scope-card.live {
  background: linear-gradient(180deg, #F5FCFB 0%, #ffffff 100%);
  border-color: var(--teal);
}
.scope-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.badge-live { background: var(--teal); color: rgba(0,0,0,0.87); }
.badge-direct { background: var(--indigo); color: var(--white); }
.badge-platform { background: var(--grey-200); color: var(--grey-700); }
.scope-card h3 { margin: 0 0 8px; font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.scope-card p { color: var(--grey-700); font-size: 15px; line-height: 1.6; margin: 0 0 16px; }
.scope-card a { color: var(--link); font-weight: 500; }
@media (max-width: 900px) { .scope-grid { grid-template-columns: 1fr; } }

/* === FAQ === */
.faq { max-width: 900px; margin: 48px auto 0; }
.faq details {
  border-bottom: 1px solid var(--grey-200);
  padding: 24px 0;
}
.faq details summary {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.01em;
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary::after {
  content: "+";
  font-size: 24px;
  color: var(--teal);
  font-weight: 300;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 16px 0 0;
  color: var(--grey-700);
  font-size: 16px;
  line-height: 1.65;
}

/* === Final CTA === */
.final-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(87,223,206,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); font-size: clamp(32px, 4vw, 56px); }
.final-cta .lede { color: rgba(255,255,255,0.75); margin: 0 auto 32px; }
.final-cta .buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* === Footer === */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
footer h5 {
  margin: 0 0 16px;
  font-size: clamp(16px, 2dvw, 20px);
  font-weight: 400;
  letter-spacing: -1px;
  text-transform: uppercase;
  word-spacing: 5px;
  color: var(--white);
  line-height: 1.4;
}
footer .footer-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { padding: 6px 0; }
footer a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
footer a:hover { color: var(--teal); text-decoration: none; }
.footer-logo img { height: 28px; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .eu-badge { display: flex; align-items: center; gap: 12px; }
.footer-bottom .eu-badge img { height: 28px; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* === Comparison table === */
.compare {
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-card);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid var(--grey-200);
  vertical-align: middle;
}
.compare-table thead th {
  background: var(--bg-soft);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-200);
}
.compare-table thead th.us {
  background: var(--ink);
  color: var(--teal);
  position: relative;
}
.compare-table thead th.us::before {
  content: "WEARFITS";
  display: block;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2px;
}
.compare-table thead th.us span { font-size: 11px; color: var(--teal); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.compare-table tbody th {
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  font-size: 14px;
}
.compare-table td {
  text-align: center;
  font-size: 13px;
  color: var(--grey-700);
  line-height: 1.4;
}
.compare-table td.us {
  background: rgba(87,223,206,0.06);
  color: var(--ink);
  font-weight: 500;
  border-left: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:last-child td.us { border-bottom: 2px solid var(--teal); }

/* Highlighted row for the per-asset cost differentiator */
.compare-table tr.row-highlight th,
.compare-table tr.row-highlight td {
  background: linear-gradient(90deg, rgba(87,223,206,0.08), rgba(87,223,206,0.02));
  font-weight: 600;
  position: relative;
}
.compare-table tr.row-highlight th {
  color: var(--ink);
  position: relative;
}
.compare-table tr.row-highlight th::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 60%;
  background: var(--teal);
  border-radius: 2px;
}
.compare-table tr.row-highlight td.us {
  background: linear-gradient(90deg, rgba(87,223,206,0.18), rgba(87,223,206,0.10));
  color: var(--indigo);
  font-weight: 600;
}
.compare-table tr.row-highlight td.us strong { color: var(--ink); }
.compare-callout-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(87,223,206,0.12);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: 2px;
}
.compare-icon { display: inline-block; font-size: 16px; line-height: 1; margin-right: 4px; vertical-align: -2px; }
.icon-yes { color: #2BB673; }
.icon-no { color: #D14343; }
.icon-warn { color: #E89B2C; }
.compare-caption {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.compare-caption .col {
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.6;
}
.compare-caption .col strong { color: var(--ink); display: block; margin-bottom: 4px; }
.compare-conclusion {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
}
.compare-conclusion strong { color: var(--teal); }
@media (max-width: 1100px) {
  .compare { overflow-x: auto; }
  .compare-table { min-width: 760px; }
  .compare-caption { grid-template-columns: 1fr; }
}

/* === Util === */
.text-mono { font-family: var(--font-mono); }
.text-teal { color: var(--teal); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto; }
.section-head .lede { margin-left: auto; margin-right: auto; }
