/* =========================================================
     WEARFITS LP — matches wearfits.com black/white aesthetic
     Geist display font, MUI container width, white-on-black
     ========================================================= */

  :root {
    --black: #000000;
    --ink: #0a0a0a;
    --grey-950: #0f0f0f;
    --grey-900: #1a1a1a;
    --grey-800: #2a2a2a;
    --grey-700: #3a3a3a;
    --grey-500: #6a6a6a;
    --grey-400: #888888;
    --grey-300: #b0b0b0;
    --grey-200: #d0d0d0;
    --white: #ffffff;
    --teal: #57DFCE;
    --teal-deep: #3bc4b1;
    --coral: #FF7B6B;

    --font-display: 'Geist', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --max-w: 1200px;  /* MUI Container maxWidthLg */
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
    --radius: 6px;
    --radius-lg: 12px;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: var(--white); text-decoration: none; }

  h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--white);
    margin: 0 0 0.5em;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.1;
    text-transform: uppercase;
  }
  h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
  h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
  h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); }
  h4 { font-size: 1.1rem; }
  h5 { font-size: 0.95rem; font-weight: 500; letter-spacing: 0.08em; }
  p { margin: 0 0 1em; }

  .wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

  /* ==================== HEADER ==================== */
  .header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: saturate(150%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }
  .header.scrolled { border-bottom-color: var(--grey-900); }
  .header__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    max-width: var(--max-w); margin: 0 auto;
    padding: 1rem var(--gutter);
  }
  .header__logo img { height: 22px; width: auto; display: block; }
  .header__nav { display: flex; align-items: center; gap: 1.5rem; }
  .header__nav a {
    font-size: 0.95rem; color: var(--white); font-weight: 400;
    padding: 0.5rem 0.25rem;
    transition: opacity 0.2s ease;
  }
  .header__nav a:hover { opacity: 0.7; }
  .header__nav .with-arrow::after {
    content: ""; display: inline-block; width: 8px; height: 8px;
    border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg); margin-left: 6px; margin-bottom: 2px;
    vertical-align: middle;
  }
  .header__cta {
    border: 1px solid var(--white);
    color: var(--white);
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius);
    font-size: 0.9rem; font-weight: 400;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
  }
  .header__cta:hover { background: var(--white); color: var(--black); }
  @media (max-width: 900px) {
    .header__nav { display: none; }
  }

  /* ==================== BUTTONS ==================== */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.85rem 1.5rem; border-radius: var(--radius); border: 1px solid transparent;
    font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
    cursor: pointer; transition: all 0.18s ease;
    text-decoration: none;
    white-space: nowrap; line-height: 1.2;
  }
  .btn--primary { background: var(--white); color: var(--black); }
  .btn--primary:hover { background: var(--teal); color: var(--black); }
  .btn--ghost { background: transparent; color: var(--white); border-color: var(--white); }
  .btn--ghost:hover { background: var(--white); color: var(--black); }
  .btn--teal { background: var(--teal); color: var(--black); }
  .btn--teal:hover { background: var(--teal-deep); color: var(--white); }
  .btn--lg { padding: 1rem 1.85rem; font-size: 1rem; }
  .btn--xl { padding: 1.15rem 2rem; font-size: 1.05rem; width: 100%; }

  /* ==================== HERO ==================== */
  .hero { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2rem, 5vw, 4rem); position: relative; overflow: hidden; }
  .hero::before {
    content: ""; position: absolute; top: -20%; right: -10%; width: 60%; height: 80%;
    background: radial-gradient(circle at center, rgba(87, 223, 206, 0.10) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero__grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 4rem);
    align-items: center; position: relative; z-index: 1;
  }
  @media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
  .hero__eyebrow {
    font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--teal); font-weight: 500; margin-bottom: 1.25rem;
  }
  .hero h1 {
    margin-bottom: 1.5rem; font-weight: 400;
    letter-spacing: -0.02em;
  }
  .hero__sub {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--grey-300);
    margin-bottom: 0.7rem;
    max-width: 38ch;
    line-height: 1.5;
  }
  .hero__sub--em { color: var(--white); font-weight: 500; }
  .hero__sub--small {
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    font-style: italic;
    color: var(--teal);
    margin-bottom: 2rem;
  }
  .hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
  .hero__trust {
    font-size: 0.85rem; color: var(--grey-400);
    display: flex; align-items: center; gap: 0.5rem;
  }
  .hero__trust::before {
    content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 999px;
    background: var(--teal); flex: 0 0 6px;
  }
  .hero__phone {
    width: 100%; max-width: 460px; margin: 0 auto;
    filter: drop-shadow(0 25px 60px rgba(87, 223, 206, 0.18));
    transform: rotate(-2deg);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .hero__phone:hover { transform: rotate(0); }

  /* ==================== SECTION ==================== */
  section.band { padding: clamp(3rem, 7vw, 5.5rem) 0; position: relative; }
  .band--light { background: var(--grey-950); }
  .band__sub {
    font-size: 1.05rem; color: var(--grey-300); margin: 0 0 2.5rem;
    max-width: 60ch; line-height: 1.55;
  }

  /* ==================== PIVOT ==================== */
  .pivot h2 { color: var(--white); max-width: 22ch; }
  .pivot h2 em { font-style: normal; color: var(--teal); }
  .pivot__body { font-size: 1.1rem; color: var(--grey-300); max-width: 62ch; line-height: 1.65; }

  /* ==================== FIRST CLAIM ==================== */
  .first {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
  }
  @media (max-width: 880px) { .first { grid-template-columns: 1fr; } }
  .first__body { font-size: 1.05rem; color: var(--grey-300); line-height: 1.65; }
  .first__body strong { color: var(--white); }
  .first__phone {
    width: 100%; max-width: 360px; margin: 0 auto;
    filter: drop-shadow(0 20px 50px rgba(87, 223, 206, 0.18));
  }

  /* ==================== NUMBERS ==================== */
  .numbers__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
    margin-bottom: 2rem;
  }
  @media (max-width: 880px) { .numbers__grid { grid-template-columns: 1fr; } }
  .number-card {
    background: var(--grey-950); border: 1px solid var(--grey-800);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  .number-card:hover {
    transform: translateY(-3px);
    border-color: var(--teal);
  }
  .number-card__big {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(2.75rem, 5.5vw, 4rem); line-height: 1; color: var(--teal);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
  }
  .number-card__lbl {
    font-family: var(--font-display); font-weight: 500; font-size: 1rem;
    color: var(--white); margin-bottom: 0.7rem; text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .number-card__body { color: var(--grey-300); font-size: 0.95rem; line-height: 1.55; margin: 0; }
  .numbers__close {
    color: var(--grey-300); font-size: 1.05rem; max-width: 75ch; line-height: 1.6;
  }
  .numbers__close a { color: var(--teal); border-bottom: 1px solid currentColor; }

  /* ==================== JOURNEY CAROUSEL ==================== */
  .journey {
    position: relative;
  }
  .journey__viewport {
    overflow: hidden; border-radius: var(--radius-lg);
  }
  .journey__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }
  .journey__slide {
    flex: 0 0 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
  }
  @media (max-width: 880px) { .journey__slide { grid-template-columns: 1fr; gap: 2rem; } }
  .journey__num {
    font-family: var(--font-display); font-weight: 500;
    font-size: 0.95rem; color: var(--teal);
    letter-spacing: 0.12em; margin-bottom: 1rem;
    text-transform: uppercase;
  }
  .journey__title { color: var(--white); margin-bottom: 1rem; max-width: 22ch; }
  .journey__body { color: var(--grey-300); font-size: 1.05rem; line-height: 1.6; max-width: 50ch; }
  .journey__body em { color: var(--teal); font-style: italic; }
  .journey__phone-wrap {
    display: flex; justify-content: center; align-items: center;
  }
  .journey__phone {
    width: 100%; max-width: 360px;
    filter: drop-shadow(0 15px 40px rgba(87, 223, 206, 0.18));
  }

  /* Carousel controls */
  .journey__controls {
    display: flex; align-items: center; justify-content: center; gap: 1.5rem;
    margin-top: 2rem;
  }
  .journey__btn {
    width: 48px; height: 48px; border-radius: 999px;
    background: transparent; border: 1px solid var(--grey-700);
    color: var(--white);
    cursor: pointer; transition: all 0.2s ease;
    display: flex; align-items: center; justify-content: center;
  }
  .journey__btn:hover:not(:disabled) { border-color: var(--teal); color: var(--teal); }
  .journey__btn:disabled { opacity: 0.3; cursor: not-allowed; }
  .journey__btn svg { width: 18px; height: 18px; }
  .journey__dots {
    display: flex; gap: 0.5rem;
  }
  .journey__dot {
    width: 8px; height: 8px; border-radius: 999px;
    background: var(--grey-700); border: 0; padding: 0;
    cursor: pointer; transition: all 0.25s ease;
  }
  .journey__dot.active { background: var(--teal); width: 28px; border-radius: 4px; }
  .journey__dot:hover:not(.active) { background: var(--grey-500); }
  .journey__counter {
    font-family: var(--font-display); font-weight: 400;
    font-size: 0.95rem; color: var(--grey-400); letter-spacing: 0.05em;
    min-width: 5ch; text-align: center;
  }
  .journey__counter strong { color: var(--white); font-weight: 500; }
  .journey__progress {
    height: 2px; background: var(--grey-900); overflow: hidden;
    margin-top: 1.5rem; border-radius: 999px;
  }
  .journey__progress-fill {
    height: 100%; background: var(--teal);
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    width: 14.28%;
  }

  /* ==================== COMPARISON ==================== */
  .compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  @media (max-width: 880px) { .compare { grid-template-columns: 1fr; } }
  .compare-card {
    background: var(--grey-950); border: 1px solid var(--grey-800);
    border-radius: var(--radius-lg); padding: 2rem;
  }
  .compare-card--us {
    background: linear-gradient(160deg, #0a1f1a 0%, #0a0a0a 100%);
    border-color: var(--teal);
    position: relative; overflow: hidden;
  }
  .compare-card--us::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--coral) 100%);
  }
  .compare-card h4 {
    color: var(--grey-400); margin-bottom: 1rem;
    font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em;
    font-weight: 500;
  }
  .compare-card--us h4 { color: var(--teal); }
  .compare-card p {
    font-size: 0.95rem; line-height: 1.55; margin: 0;
    color: var(--grey-300);
  }
  .compare-card--us p strong { color: var(--white); }

  /* ==================== WHY NOW ==================== */
  .why-now__item { padding: 1.5rem 0; border-bottom: 1px solid var(--grey-900); }
  .why-now__item:last-child { border-bottom: 0; }
  .why-now__item strong {
    display: block; color: var(--white); font-family: var(--font-display); font-size: 1.15rem;
    margin-bottom: 0.5rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.02em;
  }
  .why-now__item p { margin: 0; color: var(--grey-300); font-size: 1rem; line-height: 1.6; max-width: 72ch; }

  /* ==================== PERKS ==================== */
  .perks { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
  .perks li {
    display: grid; grid-template-columns: 24px 1fr; gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--grey-950); border-radius: var(--radius-lg);
    border: 1px solid var(--grey-800);
  }
  .perks svg { color: var(--teal); width: 24px; height: 24px; flex: 0 0 24px; }
  .perks strong {
    display: block; font-family: var(--font-display); color: var(--white);
    margin-bottom: 0.25rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.02em; font-size: 0.95rem;
  }
  .perks p { margin: 0; color: var(--grey-300); font-size: 0.95rem; }

  /* ==================== FAQ ==================== */
  .faq { display: grid; gap: 0.6rem; max-width: 880px; }
  .faq details {
    background: var(--grey-950); border-radius: var(--radius-lg);
    border: 1px solid var(--grey-800);
    transition: border-color 0.2s ease;
  }
  .faq details:hover { border-color: var(--grey-700); }
  .faq details[open] { border-color: var(--teal); }
  .faq summary {
    padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 500; color: var(--white);
    font-size: 1rem; display: flex; justify-content: space-between; gap: 1rem;
    list-style: none; align-items: center;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: "+"; font-family: var(--font-display); font-size: 1.5rem; color: var(--teal);
    transition: transform 0.2s ease; line-height: 1;
  }
  .faq details[open] summary::after { content: "−"; }
  .faq__body {
    padding: 0 1.5rem 1.5rem; color: var(--grey-300);
    font-size: 0.98rem; line-height: 1.6;
  }

  /* ==================== CONTACT ==================== */
  .contact-intro h2 { margin-bottom: 1rem; }
  .contact-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--grey-800);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2.5rem);
  }
  .contact-form {
    display: grid;
    gap: 1.5rem;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  @media (max-width: 720px) {
    .contact-grid { grid-template-columns: 1fr; }
  }
  .contact-field {
    display: grid;
    gap: 0.45rem;
  }
  .contact-field span {
    font-size: 0.78rem;
    color: var(--grey-400);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--grey-800);
    color: var(--white);
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .contact-field input:focus,
  .contact-field select:focus,
  .contact-field textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: rgba(87, 223, 206, 0.05);
  }
  .contact-field textarea {
    resize: vertical;
    min-height: 140px;
  }
  .contact-field select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%2357DFCE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
  }
  .contact-field-wide {
    grid-column: 1 / -1;
  }
  .contact-actions {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
  }
  .contact-submit {
    min-width: min(100%, 320px);
  }
  .contact-status {
    min-height: 1.5rem;
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
    color: var(--grey-300);
  }
  .contact-status[data-state="success"] { color: var(--teal); }
  .contact-status[data-state="error"] { color: var(--coral); }
  .contact-alt,
  .contact-privacy {
    margin: 0;
    text-align: center;
    color: var(--grey-400);
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .contact-alt a,
  .contact-privacy a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* ==================== FINAL CTA ==================== */
  .final {
    background: linear-gradient(160deg, #0a1f1a 0%, #050505 100%);
    border: 1px solid var(--teal);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 4rem);
    position: relative; overflow: hidden;
  }
  .final::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse at top right, rgba(87, 223, 206, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(255, 123, 107, 0.10) 0%, transparent 60%);
    pointer-events: none;
  }
  .final > * { position: relative; z-index: 1; }
  .final h2 {
    text-align: center; color: var(--white);
    max-width: 22ch; margin: 0 auto 1.25rem;
  }
  .final__body {
    text-align: center; color: var(--grey-300);
    max-width: 60ch; margin: 0 auto 2.5rem; font-size: 1.05rem; line-height: 1.6;
  }
  .final__actions {
    display: flex;
    justify-content: center;
  }

  /* ==================== FOOTER (matches wearfits.com) ==================== */
  .footer { padding: 4rem 0 2rem; background: var(--black); }
  .footer__top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: 3rem;
  }
  @media (max-width: 880px) {
    .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  }
  @media (max-width: 560px) {
    .footer__top { grid-template-columns: 1fr; }
  }
  .footer__brand img { height: 22px; margin-bottom: 1.5rem; }
  .footer__tagline {
    font-family: var(--font-display); font-size: 0.95rem;
    color: var(--white); text-transform: uppercase;
    line-height: 1.4; margin-bottom: 1rem; font-weight: 500;
    letter-spacing: 0.04em; max-width: 32ch;
  }
  .footer__desc { color: var(--grey-300); font-size: 0.92rem; line-height: 1.5; max-width: 36ch; margin-bottom: 1.5rem; }
  .footer__partners { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
  .footer__partners img { height: 28px; width: auto; opacity: 0.85; }
  .footer__partners img:nth-child(2) { height: 36px; }
  .footer__col h5 {
    color: var(--white); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 1rem; font-weight: 500;
  }
  .footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
  .footer__col a {
    color: var(--grey-300); font-size: 0.9rem;
    transition: color 0.2s ease;
  }
  .footer__col a:hover { color: var(--teal); }
  .footer__bottom {
    border-top: 1px solid var(--grey-900);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    flex-wrap: wrap;
  }
  .footer__copy { color: var(--grey-400); font-size: 0.85rem; }
  .footer__legal { display: flex; gap: 1.5rem; }
  .footer__legal a { color: var(--grey-400); font-size: 0.85rem; }
  .footer__legal a:hover { color: var(--teal); }

  /* ==================== STICKY ELEMENTS ==================== */
  .sticky-top {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--teal); color: var(--black);
    padding: 0.6rem var(--gutter);
    text-align: center; font-size: 0.92rem; font-weight: 500;
    transform: translateY(-100%); transition: transform 0.3s ease;
    display: flex; gap: 1rem; align-items: center; justify-content: center;
    font-family: var(--font-display); letter-spacing: 0.02em;
  }
  .sticky-top.visible { transform: translateY(0); }
  .sticky-top a {
    color: var(--black); text-decoration: underline; text-underline-offset: 3px;
    font-weight: 600;
  }
  .sticky-mobile {
    position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 90;
    transform: translateY(150%); transition: transform 0.3s ease;
    display: none;
  }
  .sticky-mobile .btn { width: 100%; box-shadow: 0 10px 40px rgba(87, 223, 206, 0.4); }
  .sticky-mobile.visible { transform: translateY(0); }
  @media (max-width: 720px) { .sticky-mobile { display: block; } }

  /* ==================== REVEAL ==================== */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
  }
