:root {
    --navy: #1B2D4F;
    --navy-deep: #142442;
    --ink: #1B2D4F;
    --mint: #4ECDC4;
    --mint-dark: #2bb3aa;
    --mint-deep: #178f88;
    --coral: #FF6B6B;
    --coral-dark: #e84a4a;
    --yellow: #FFE66D;
    --yellow-deep: #b8962a;
    --white: #ffffff;
    --paper: #ffffff;
    --cloud: #f4f5f7;
    --cream: #F5F5F3;
    --pastel-yellow: #FFF4C2;
    --pastel-blue: #D7E6F5;
    --pastel-pink: #FFD9D9;
    --pastel-mint: #D6F5F2;
    --pastel-lilac: #E3DBF5;
    --line: #e6e8ec;
    --muted: #5a6378;

    --maxw: 1180px;
    --r-sm: 8px;
    --r-md: 10px;
    --r-lg: 12px;
    --r-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(27,45,79,.06), 0 4px 14px rgba(27,45,79,.05);
    --shadow-md: 0 6px 18px rgba(27,45,79,.08), 0 18px 40px rgba(27,45,79,.08);
    --shadow-lg: 0 12px 30px rgba(27,45,79,.12), 0 30px 70px rgba(27,45,79,.12);
    --ease: cubic-bezier(.16,1,.3,1);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

  body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--paper);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3 { margin: 0; }
  .display {
    font-family: "Anton", "Montserrat", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .01em;
    line-height: .96;
    color: var(--navy);
  }
  p { margin: 0; }
  a { color: inherit; text-decoration: none; }
  img, svg { max-width: 100%; display: block; }

  .wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
  .section { padding: 72px 0; }
  @media (min-width: 768px) { .section { padding: 104px 0; } }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 13px; letter-spacing: .14em;
    text-transform: uppercase; color: var(--coral);
  }
  .eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--coral); border-radius: 2px; }
  .eyebrow.mint { color: var(--mint-deep); }
  .eyebrow.mint::before { background: var(--mint-deep); }

  .lead { color: var(--muted); font-size: 18px; max-width: 60ch; }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 16px;
    padding: 15px 26px; border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
    white-space: nowrap; line-height: 1;
  }
  .btn svg { width: 18px; height: 18px; }
  .btn-primary { background: var(--mint); color: var(--navy); box-shadow: 0 8px 22px rgba(78,205,196,.45); }
  .btn-primary:hover { background: var(--mint-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(79,150,118,.5); }
  .btn-coral { background: var(--coral); color: var(--white); box-shadow: 0 8px 22px rgba(255,107,107,.4); }
  .btn-coral:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(197,70,47,.5); }
  .btn-ghost { background: transparent; color: var(--navy); border-color: rgba(27,45,79,.22); }
  .btn-ghost:hover { border-color: var(--navy); background: rgba(27,45,79,.04); transform: translateY(-2px); }
  .btn-ghost-light { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.4); }
  .btn-ghost-light:hover { background: rgba(255,255,255,.16); border-color: var(--white); transform: translateY(-2px); }
  .btn-sm { padding: 11px 20px; font-size: 14px; }
  .btn-lg { padding: 18px 34px; font-size: 18px; }

  /* ---------- Announcement bar ---------- */
  .announce {
    background: var(--navy); color: var(--white);
    text-align: center; font-size: 13.5px; font-weight: 600;
    padding: 9px 16px; letter-spacing: .03em;
  }
  .announce .dot { color: var(--mint); margin: 0 10px; }
  .announce strong { color: var(--pastel-yellow); font-weight: 700; }

  /* ---------- Header ---------- */
  .header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251,251,249,.82); backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
  }
  .header.scrolled { box-shadow: 0 2px 20px rgba(27,45,79,.07); border-color: var(--line); }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
  .brand { display: flex; align-items: center; gap: 11px; font-family: "Anton", sans-serif; text-transform: uppercase; font-size: 24px; color: var(--navy); letter-spacing: .02em; white-space: nowrap; }
  .brand .mark { width: 38px; height: 38px; flex: 0 0 auto; }
  .brand-logo { height: 48px; width: auto; display: block; }
  .drawer-top .brand-logo { height: 38px; }
  .foot-brand-logo .brand-logo { height: 56px; filter: brightness(0) invert(1); }
  .nav-links { display: none; gap: 6px; align-items: center; }
  .nav-links a { font-weight: 600; font-size: 15px; color: var(--ink); padding: 9px 14px; border-radius: 999px; transition: background .18s var(--ease), color .18s var(--ease); }
  .nav-links a:hover { background: var(--cloud); color: var(--navy); }
  .nav-cta { display: none; align-items: center; gap: 12px; }
  @media (min-width: 940px) {
    .nav-links { display: flex; }
    .nav-cta { display: flex; }
  }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: var(--white); cursor: pointer; }
  .menu-btn svg { width: 24px; height: 24px; color: var(--navy); }
  @media (min-width: 940px) { .menu-btn { display: none; } }

  /* mobile drawer */
  .drawer { position: fixed; inset: 0; z-index: 200; display: none; }
  .drawer.open { display: block; }
  .drawer-scrim { position: absolute; inset: 0; background: rgba(27,45,79,.4); backdrop-filter: blur(2px); }
  .drawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 340px); background: var(--white); box-shadow: var(--shadow-lg); padding: 22px; display: flex; flex-direction: column; gap: 6px; transform: translateX(100%); transition: transform .32s var(--ease); }
  .drawer.open .drawer-panel { transform: translateX(0); }
  .drawer-panel a { font-weight: 600; font-size: 18px; padding: 14px 10px; border-radius: 12px; color: var(--navy); }
  .drawer-panel a:hover { background: var(--cloud); }
  .drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
  .drawer-top .close { width: 44px; height: 44px; border: 1px solid var(--line); background: var(--white); border-radius: 12px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
  .drawer-top .close svg { width: 22px; height: 22px; color: var(--navy); }

  /* ---------- Hero ---------- */
  .hero { position: relative; overflow: hidden; }
  .hero-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; padding: 56px 0 64px; }
  @media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 48px; padding: 80px 0 96px; } }
  .hero h1 { font-size: clamp(46px, 9vw, 92px); }
  .hero h1 .hl { color: var(--coral); display: inline-block; }
  .hero .lead { margin-top: 22px; }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
  .badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
  .badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 9px 15px; font-size: 13.5px; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-sm); }
  .badge svg { width: 16px; height: 16px; color: var(--mint-dark); }

  .hero-visual { position: relative; }
  .hero-stage {
    position: relative; aspect-ratio: 1 / 1; border-radius: var(--r-xl);
    background: radial-gradient(120% 120% at 30% 20%, var(--pastel-mint), var(--pastel-blue));
    box-shadow: var(--shadow-lg); overflow: hidden; display: grid; place-items: center;
  }
  .hero-stage .blob { position: absolute; opacity: .55; }
  .hero-socks { position: relative; width: 78%; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; place-items: center; transform: rotate(-4deg); }
  .floaty { position: absolute; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-md); padding: 12px 15px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; color: var(--navy); }
  .floaty .pic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: var(--white); font-family: "Anton",sans-serif; }
  .floaty.one { top: 8%; left: -6%; }
  .floaty.two { bottom: 9%; right: -5%; }

  /* blobs */
  .blob-bg { position: absolute; z-index: 0; pointer-events: none; opacity: .5; filter: blur(2px); }

  /* ---------- Trust bar ---------- */
  .trust { background: var(--navy); color: var(--white); }
  .trust .wrap { padding-top: 44px; padding-bottom: 44px; }
  .trust-logos { display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: center; justify-content: center; opacity: .85; }
  .trust-logo { font-family: "Anton", sans-serif; text-transform: uppercase; font-size: 21px; letter-spacing: .04em; color: rgba(255,255,255,.78); display: inline-flex; align-items: center; gap: 9px; }
  .trust-logo .g { width: 22px; height: 22px; color: var(--mint); }
  .trust-stats { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 38px; }
  @media (min-width: 720px) { .trust-stats { grid-template-columns: repeat(3,1fr); } }
  .stat { text-align: center; padding: 8px; }
  .stat .num { font-family: "Anton", sans-serif; font-size: clamp(38px,6vw,56px); line-height: 1; color: var(--white); }
  .stat .num .u { color: var(--mint); }
  .stat .lbl { margin-top: 8px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .02em; }
  .trust-divider { height: 1px; background: rgba(255,255,255,.14); margin: 36px 0 0; }

  /* ---------- Section heading ---------- */
  .sec-head { max-width: 720px; }
  .sec-head.center { margin: 0 auto; text-align: center; }
  .sec-head h2 { font-size: clamp(34px, 5.4vw, 60px); margin-top: 14px; }
  .sec-head p { margin-top: 16px; }
  .sec-head.center .lead { margin-left: auto; margin-right: auto; }

  /* ---------- How it works ---------- */
  .steps { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 52px; }
  @media (min-width: 640px) { .steps { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1000px) { .steps { grid-template-columns: repeat(4,1fr); gap: 18px; } }
  .step { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); position: relative; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
  .step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
  .step .n { font-family: "Anton", sans-serif; font-size: 17px; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: var(--white); background: var(--navy); margin-bottom: 18px; }
  .step:nth-child(2) .n { background: var(--mint-dark); }
  .step:nth-child(3) .n { background: var(--coral); }
  .step:nth-child(4) .n { background: var(--navy); }
  .step h3 { font-size: 20px; color: var(--navy); font-weight: 800; margin-bottom: 8px; }
  .step p { color: var(--muted); font-size: 15.5px; }
  .step .arrow { display: none; position: absolute; right: -28px; top: 46px; color: var(--mint); }
  @media (min-width: 1000px) { .step:not(:last-child) .arrow { display: block; } }

  /* ---------- Sock types ---------- */
  .alt { background: var(--cloud); }
  .cards { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 52px; }
  @media (min-width: 600px) { .cards { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1000px) { .cards { grid-template-columns: repeat(3,1fr); } }
  .sock-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
  .sock-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .sock-pic { aspect-ratio: 16/12; display: grid; place-items: center; position: relative; }
  .sock-pic svg.sock { width: 56%; filter: drop-shadow(0 14px 22px rgba(27,45,79,.18)); transition: transform .3s var(--ease); }
  .sock-card:hover .sock-pic svg.sock { transform: rotate(-6deg) scale(1.04); }
  .sock-card .body { padding: 22px 22px 26px; }
  .sock-card h3 { font-family: "Anton",sans-serif; text-transform: uppercase; font-size: 24px; color: var(--navy); letter-spacing: .015em; }
  .sock-card p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }
  .sock-card .tag { display: inline-block; margin-top: 14px; font-size: 12.5px; font-weight: 700; color: var(--mint-deep); background: var(--pastel-mint); padding: 5px 12px; border-radius: 999px; letter-spacing: .02em; }

  /* ---------- Why Yax ---------- */
  .why-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-top: 50px; }
  @media (min-width: 940px) { .why-grid { grid-template-columns: 1fr 1.02fr; gap: 56px; } }
  .features { display: grid; grid-template-columns: 1fr; gap: 18px; }
  @media (min-width: 540px) { .features { grid-template-columns: 1fr 1fr; } }
  .feature { display: flex; gap: 15px; }
  .feature .ic { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--pastel-mint); color: var(--mint-deep); }
  .feature:nth-child(2) .ic { background: var(--pastel-yellow); color: #8a6d12; }
  .feature:nth-child(3) .ic { background: var(--pastel-pink); color: var(--coral-dark); }
  .feature:nth-child(4) .ic { background: var(--pastel-blue); color: var(--navy); }
  .feature .ic svg { width: 24px; height: 24px; }
  .feature h3 { font-size: 18px; color: var(--navy); font-weight: 800; }
  .feature p { color: var(--muted); font-size: 14.5px; margin-top: 4px; }
  .video-card { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: linear-gradient(150deg, var(--navy), #1d3f7d); display: grid; place-items: center; }
  .video-card .play { width: 84px; height: 84px; border-radius: 999px; background: var(--mint); color: var(--navy); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.3); cursor: pointer; transition: transform .2s var(--ease), background .2s var(--ease); position: relative; z-index: 2; }
  .video-card .play:hover { transform: scale(1.07); background: var(--white); }
  .video-card .play svg { width: 34px; height: 34px; margin-left: 5px; }
  .video-card .vlabel { position: absolute; bottom: 22px; left: 22px; z-index: 2; color: var(--white); }
  .video-card .vlabel .t { font-family: "Anton",sans-serif; text-transform: uppercase; font-size: 22px; }
  .video-card .vlabel .s { font-size: 13px; opacity: .8; }
  .video-card .vsock { position: absolute; opacity: .22; }

  /* ---------- Testimonials ---------- */
  .testi-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 50px; }
  @media (min-width: 820px) { .testi-grid { grid-template-columns: repeat(3,1fr); } }
  .testi { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; min-width: 0; }
  .testi .quote-mark { font-family: "Anton",sans-serif; color: var(--mint); font-size: 56px; line-height: .5; height: 26px; }
  .testi .stars { display: flex; gap: 3px; color: var(--coral); margin: 6px 0 12px; }
  .testi .stars svg { width: 17px; height: 17px; }
  .testi p.q { color: var(--ink); font-size: 16px; font-weight: 500; flex: 1; }
  .testi .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
  .testi .av { width: 48px; height: 48px; border-radius: 999px; display: grid; place-items: center; color: var(--white); font-family: "Anton",sans-serif; font-size: 19px; flex: 0 0 auto; }
  .testi .who .nm { font-weight: 700; color: var(--navy); font-size: 15px; }
  .testi .who .rl { font-size: 13px; color: var(--muted); }
  .results { margin-top: 40px; background: var(--mint); border-radius: var(--r-lg); padding: 34px; text-align: center; }
  .results .num { font-family: "Anton",sans-serif; font-size: clamp(40px,7vw,64px); color: var(--navy); line-height: 1; }
  .results p { color: var(--mint-deep); font-weight: 700; margin-top: 6px; font-size: 16px; }

  /* ---------- Pricing teaser ---------- */
  .pricing { background: var(--navy); color: var(--white); border-radius: 0; }
  .price-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
  @media (min-width: 860px) { .price-grid { grid-template-columns: 1.1fr .9fr; } }
  .pricing h2 { color: var(--white); font-size: clamp(34px,5.4vw,58px); }
  .pricing .lead { color: rgba(255,255,255,.78); }
  .price-card { background: var(--white); color: var(--ink); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-lg); }
  .price-card .from { font-size: 14px; font-weight: 700; color: var(--coral); text-transform: uppercase; letter-spacing: .1em; }
  .price-card .amount { font-family: "Anton",sans-serif; color: var(--navy); display: flex; align-items: baseline; gap: 6px; margin-top: 6px; }
  .price-card .amount .big { font-size: 76px; line-height: .9; }
  .price-card .amount .per { font-size: 18px; color: var(--muted); font-family: "Montserrat",sans-serif; font-weight: 600; }
  .price-list { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 11px; }
  .price-list li { display: flex; gap: 10px; align-items: center; font-size: 15px; font-weight: 500; }
  .price-list li svg { width: 19px; height: 19px; color: var(--mint-dark); flex: 0 0 auto; }
  .price-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }

  /* ---------- Packaging ---------- */
  .pack-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 50px; }
  @media (min-width: 760px) { .pack-grid { grid-template-columns: repeat(3,1fr); } }
  .pack { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: var(--white); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
  .pack:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
  .pack .top { aspect-ratio: 16/10; display: grid; place-items: center; position: relative; }
  .pack .top svg { width: 46%; }
  .pack .body { padding: 22px 24px 26px; }
  .pack h3 { font-size: 20px; color: var(--navy); font-weight: 800; }
  .pack p { color: var(--muted); font-size: 14.5px; margin-top: 7px; }

  /* ---------- FAQ ---------- */
  .faq-list { max-width: 820px; margin: 46px auto 0; display: grid; gap: 14px; }
  .faq { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); overflow: hidden; }
  .faq summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 700; color: var(--navy); font-size: 17px; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary .pm { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 999px; background: var(--cloud); display: grid; place-items: center; transition: transform .25s var(--ease), background .25s var(--ease); }
  .faq summary .pm svg { width: 18px; height: 18px; color: var(--navy); }
  .faq[open] summary .pm { transform: rotate(45deg); background: var(--mint); }
  .faq .ans { padding: 0 24px 24px; color: var(--muted); font-size: 15.5px; }

  /* ---------- Final CTA ---------- */
  .final { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--coral), #ef7a52); }
  .final .wrap { position: relative; z-index: 2; text-align: center; padding-top: 84px; padding-bottom: 84px; }
  .final h2 { font-family: "Anton",sans-serif; text-transform: uppercase; color: var(--white); font-size: clamp(38px,6.5vw,76px); line-height: .98; }
  .final p { color: rgba(255,255,255,.92); font-size: 19px; margin: 18px auto 0; max-width: 56ch; }
  .final-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
  .final .whats { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--white); font-weight: 700; font-size: 16px; }
  .final .whats svg { width: 22px; height: 22px; }
  .final .blob-w { position: absolute; opacity: .16; z-index: 1; }

  /* ---------- Footer ---------- */
  .footer { background: var(--ink); color: rgba(255,255,255,.72); }
  .footer .wrap { padding-top: 70px; padding-bottom: 36px; }
  .foot-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
  @media (min-width: 720px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
  @media (min-width: 1000px) { .foot-grid { grid-template-columns: 1.8fr 1fr 1fr 1.5fr; } }
  .foot-brand .brand { color: var(--white); margin-bottom: 16px; }
  .foot-brand p { font-size: 14.5px; max-width: 34ch; }
  .foot-col h4 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 16px; }
  .foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
  .foot-col a { font-size: 14.5px; transition: color .18s var(--ease); }
  .foot-col a:hover { color: var(--mint); }
  .foot-col .ct { display: flex; align-items: center; gap: 9px; font-size: 14.5px; }
  .foot-col .ct svg { width: 16px; height: 16px; color: var(--mint); flex: 0 0 auto; }
  .news p { font-size: 14.5px; margin-bottom: 14px; }
  .news form { display: flex; gap: 8px; flex-wrap: wrap; }
  .news input { flex: 1; min-width: 0; padding: 13px 15px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: var(--white); font-family: inherit; font-size: 14px; }
  .news input::placeholder { color: rgba(255,255,255,.45); }
  .news input:focus { outline: none; border-color: var(--mint); box-shadow: 0 0 0 3px rgba(78,205,196,.25); }
  .news .ok { color: var(--mint); font-size: 13.5px; font-weight: 600; margin-top: 10px; display: none; }
  .socials { display: flex; gap: 10px; margin-top: 18px; }
  .socials a { width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: background .18s var(--ease), border-color .18s var(--ease); }
  .socials a:hover { background: var(--mint); border-color: var(--mint); color: var(--navy); }
  .socials a svg { width: 18px; height: 18px; }
  .foot-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; }

  /* ---------- Reveal animation ---------- */
  .js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .reveal.in { opacity: 1 !important; transform: none !important; }
  /* Snap = instantly visible with NO transition (cannot freeze at opacity:0). */
  .reveal-snap, .js .reveal-snap { opacity: 1 !important; transform: none !important; transition: none !important; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none; }
    .float-anim { animation: none !important; }
  }
  .float-anim { animation: floaty 5s ease-in-out infinite; }
  .float-anim.b { animation-delay: -2.5s; }
  @keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

  /* skip link */
  .skip { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 999; }
  .skip:focus { left: 12px; }
  a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible { outline: 3px solid rgba(27,45,79,.35); outline-offset: 2px; border-radius: 6px; }

  /* ===== Urgency top bar ===== */
  .topbar { background: var(--navy); color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .01em; position: relative; }
  .topbar .inner { display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 10px 46px; }
  .topbar .pulse-dot { width: 9px; height: 9px; border-radius: 999px; background: var(--coral); flex: 0 0 auto; box-shadow: 0 0 0 0 rgba(255,107,107,.7); animation: pdot 2s infinite; }
  @keyframes pdot { 0% { box-shadow: 0 0 0 0 rgba(255,107,107,.6); } 70% { box-shadow: 0 0 0 9px rgba(255,107,107,0); } 100% { box-shadow: 0 0 0 0 rgba(255,107,107,0); } }
  .topbar .dot { color: var(--mint); margin: 0 4px; }
  .topbar strong { color: var(--coral); }
  .topbar .tb-close { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border: none; background: rgba(255,255,255,.1); border-radius: 6px; color: #fff; cursor: pointer; display: grid; place-items: center; }
  .topbar .tb-close:hover { background: var(--coral); }
  .topbar .tb-close svg { width: 16px; height: 16px; }
  .topbar.hidden { display: none; }
  @media (prefers-reduced-motion: reduce) { .topbar .pulse-dot { animation: none; } }

  /* ===== Navbar WhatsApp ===== */
  .nav-wa { display: none; align-items: center; gap: 9px; padding: 8px 14px; border-radius: 999px; border: 2px solid var(--mint); color: var(--navy); font-weight: 700; font-size: 14px; transition: border-color .18s var(--ease), background .18s var(--ease); }
  .nav-wa:hover { border-color: var(--mint); background: var(--mint); }
  .nav-wa .wa-ic { width: 30px; height: 30px; border-radius: 999px; background: #25D366; display: grid; place-items: center; flex: 0 0 auto; }
  .nav-wa .wa-ic svg { width: 18px; height: 18px; color: #fff; }
  .nav-wa .wa-txt { line-height: 1.1; }
  .nav-wa .wa-txt small { display: block; font-size: 10.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
  @media (min-width: 1080px) { .nav-wa { display: inline-flex; } }

  /* ===== Hero benefit pills ===== */
  .hero-pills { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 26px; }
  .hero-pills .pill { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--navy); background: transparent; border: 2px solid var(--mint); padding: 8px 15px; border-radius: 999px; }
  .hero-pills .pill:nth-child(even) { border-color: var(--coral); }
  .hero-pills .pill svg { width: 15px; height: 15px; color: var(--mint-dark); flex: 0 0 auto; }
  .hero-pills .pill:nth-child(even) svg { color: var(--coral); }

  /* ===== Client logos band ===== */
  .logoband { background: var(--cream); }
  .logoband .wrap { padding: 44px 22px; }
  .logoband .lb-title { text-align: center; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); margin-bottom: 26px; }
  .logoband .lb-logos { display: flex; flex-wrap: wrap; gap: 18px 44px; align-items: center; justify-content: center; }
  .lb-logo { display: inline-flex; align-items: center; gap: 9px; font-family: "Anton", sans-serif; text-transform: uppercase; font-size: 23px; letter-spacing: .03em; color: var(--navy); opacity: .5; transition: color .2s var(--ease), opacity .2s var(--ease); }
  .lb-logo svg { width: 23px; height: 23px; }
  .lb-logo:hover { color: var(--coral); opacity: 1; }

  /* ===== Stats band (navy) ===== */
  .statband { background: var(--navy); color: #fff; }
  .statband .wrap { padding: 56px 22px; }

  /* ===== How it works: giant numbers, solid color cards ===== */
  .steps-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 48px; }
  .steps-3 { grid-template-columns: 1fr; gap: 20px; }
  @media (min-width: 820px) { .steps-3 { grid-template-columns: repeat(3,1fr); } }
  .steps-3 .step { background: var(--navy); border: none; border-radius: var(--r-md); padding: 38px 32px 34px; box-shadow: none; overflow: hidden; }
  .steps-3 .step:hover { transform: translateY(-6px); box-shadow: none; }
  .steps-3 .step:nth-child(2) { background: var(--mint); }
  .steps-3 .step:nth-child(3) { background: var(--coral); }
  .steps-3 .step .n { font-family: "Anton", sans-serif; font-size: clamp(86px, 11vw, 128px); line-height: .78; width: auto; height: auto; background: none; border-radius: 0; margin: 0 0 6px; display: block; color: var(--coral); }
  .steps-3 .step:nth-child(2) .n { color: var(--navy); }
  .steps-3 .step:nth-child(3) .n { color: var(--yellow); }
  .steps-3 .step h3 { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase; letter-spacing: .01em; font-size: 23px; line-height: 1.04; color: #fff; margin-bottom: 10px; }
  .steps-3 .step:nth-child(2) h3 { color: var(--navy); }
  .steps-3 .step p { color: rgba(255,255,255,.82); font-size: 15.5px; }
  .steps-3 .step:nth-child(2) p { color: var(--navy-deep); }
  .steps-3 .step .arrow { display: none; }

  /* ===== Sock type cards: solid navy, coral CTA ===== */
  .sock-card { background: var(--navy); border: none; border-radius: var(--r-sm); box-shadow: none; }
  .sock-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(27,45,79,.28); }
  .sock-card .body { padding: 24px 24px 26px; }
  .sock-card .body h3 { font-family: "Anton", sans-serif; text-transform: uppercase; font-size: 25px; color: #fff; letter-spacing: .01em; }
  .sock-card .feats { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 9px; }
  .sock-card .feats li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,.8); font-weight: 500; }
  .sock-card .feats li svg { width: 16px; height: 16px; color: var(--mint); flex: 0 0 auto; margin-top: 2px; stroke-width: 3; }
  .sock-card .vstyle { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-size: 14.5px; font-weight: 800; color: var(--coral); text-transform: uppercase; letter-spacing: .04em; }
  .sock-card .vstyle svg { width: 16px; height: 16px; stroke-width: 3; transition: transform .2s var(--ease); }
  .sock-card:hover .vstyle svg { transform: translateX(4px); }
  .sock-card .head-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
  .sock-card .mini-tag { font-size: 11px; font-weight: 800; color: var(--navy); background: var(--yellow); padding: 5px 11px; border-radius: 999px; letter-spacing: .04em; white-space: nowrap; text-transform: uppercase; }

  /* ===== Use cases: solid color blocks, thick icons, alternating rows ===== */
  .uses { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 50px; }
  @media (min-width: 600px) { .uses { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 940px) { .uses { grid-template-columns: repeat(3,1fr); } }
  .use { border-radius: var(--r-sm); padding: 32px 28px; box-shadow: none; transition: transform .25s var(--ease); background: var(--navy); color: #fff; }
  .use:hover { transform: translateY(-5px); }
  .use:nth-child(n+4) { background: var(--cream); color: var(--navy); border: 2px solid rgba(27,45,79,.1); }
  .use .ic { width: auto; height: auto; border-radius: 0; background: none; color: var(--mint); margin-bottom: 16px; display: block; }
  .use:nth-child(n+4) .ic { color: var(--coral); }
  .use .ic svg { width: 42px; height: 42px; stroke-width: 2.2; }
  .use h3 { font-family: "Anton", sans-serif; text-transform: uppercase; font-weight: 400; letter-spacing: .01em; font-size: 22px; color: #fff; }
  .use:nth-child(n+4) h3 { color: var(--navy); }
  .use p { color: rgba(255,255,255,.78); font-size: 15px; margin-top: 7px; }
  .use:nth-child(n+4) p { color: var(--muted); }

  /* ===== Sustainability (dark) ===== */
  .sustain { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
  .sustain h2 { color: #fff; }
  .sustain .eyebrow { color: var(--coral); }
  .sustain .eyebrow::before { background: var(--coral); }
  .sustain .lead { color: rgba(255,255,255,.78); }
  .sustain .blob-bg { opacity: .07; filter: none; }
  .sus-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 50px; }
  @media (min-width: 560px) { .sus-grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 980px) { .sus-grid { grid-template-columns: repeat(4,1fr); } }
  .sus { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-top: 4px solid var(--mint); border-radius: var(--r-sm); padding: 30px 24px; }
  .sus:nth-child(even) { border-top-color: var(--coral); }
  .sus .ic { width: auto; height: auto; border-radius: 0; background: none; color: var(--mint); margin-bottom: 16px; display: block; }
  .sus:nth-child(even) .ic { color: var(--coral); }
  .sus .ic svg { width: 46px; height: 46px; stroke-width: 2.2; }
  .sus h3 { font-family: "Anton", sans-serif; text-transform: uppercase; font-weight: 400; letter-spacing: .01em; font-size: 19px; color: #fff; }
  .sus p { color: rgba(255,255,255,.74); font-size: 14.5px; margin-top: 8px; }

  /* ===== Testimonial product photo ===== */
  .testi .prod { display: flex; align-items: center; gap: 12px; margin: 16px 0 4px; padding: 12px; border-radius: var(--r-sm); background: var(--cream); min-width: 0; }
  .testi .prod .ph { width: 54px; height: 54px; border-radius: 8px; display: grid; place-items: center; flex: 0 0 auto; }
  .testi .prod .ph svg { width: 70%; }
  .testi .prod .pmeta { line-height: 1.3; min-width: 0; }
  .testi .prod .pmeta .pt { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
  .testi .prod .pmeta .pv { font-size: 14px; font-weight: 800; color: var(--navy); overflow-wrap: anywhere; }

  /* ===== Interactive pricing calculator ===== */
  .calc { background: #fff; border-radius: var(--r-md); box-shadow: none; padding: 28px; margin-top: 14px; color: var(--ink); }
  .calc-tabs { display: flex; gap: 8px; background: var(--cream); padding: 6px; border-radius: 999px; margin-bottom: 22px; flex-wrap: wrap; }
  .calc-tab { flex: 1; min-width: 110px; border: none; background: transparent; font-family: inherit; font-weight: 800; font-size: 14.5px; color: var(--muted); padding: 11px 14px; border-radius: 999px; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease); }
  .calc-tab[aria-selected="true"] { background: var(--coral); color: #fff; }
  .calc-table { width: 100%; border-collapse: collapse; }
  .calc-table th { text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 800; padding: 0 12px 12px; }
  .calc-table th.r, .calc-table td.r { text-align: right; }
  .calc-table td { padding: 14px 12px; border-top: 1px solid var(--line); font-variant-numeric: tabular-nums; }
  .calc-table .qty { font-weight: 800; color: var(--navy); font-size: 16px; }
  .calc-table .ppair { font-family: "Anton", sans-serif; color: var(--navy); font-size: 24px; }
  .calc-table .save { display: inline-block; font-size: 12.5px; font-weight: 800; color: var(--navy); background: var(--mint); padding: 4px 10px; border-radius: 999px; }
  .calc-table .save.zero { color: var(--muted); background: var(--cream); }
  .calc-table tr.pop { background: rgba(255,107,107,.08); }
  .calc-table tr.pop .qty::after { content: "Popular"; display: inline-block; margin-left: 8px; font-family: "Montserrat",sans-serif; font-size: 10px; font-weight: 800; color: #fff; background: var(--coral); padding: 3px 8px; border-radius: 999px; vertical-align: middle; letter-spacing: .04em; }
  .calc-note { font-size: 13px; color: var(--muted); margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px 14px; }
  .calc-note span { display: inline-flex; align-items: center; gap: 6px; }
  .calc-note svg { width: 15px; height: 15px; color: var(--mint-dark); stroke-width: 3; }

  /* ===== Packaging dark + bold checklist ===== */
  .packdark { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
  .packdark h2 { color: #fff; }
  .packdark .eyebrow { color: var(--coral); }
  .packdark .eyebrow::before { background: var(--coral); }
  .packdark .lead { color: rgba(255,255,255,.78); }
  .packd-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
  @media (min-width: 900px) { .packd-grid { grid-template-columns: .95fr 1.05fr; gap: 56px; } }
  .packd-visual { border-radius: var(--r-md); background: var(--mint); aspect-ratio: 5/4; display: grid; place-items: center; box-shadow: none; position: relative; overflow: hidden; }
  .packd-visual .packd-photo { width: auto; height: auto; max-width: 78%; max-height: 82%; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(27,45,79,.22)); transition: transform .4s var(--ease); }
  .packdark .packd-grid > div:first-child:hover .packd-photo { transform: scale(1.04) rotate(-2deg); }
  .packd-checklist { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 16px; }
  .packd-checklist li { display: flex; gap: 14px; align-items: center; font-size: 17.5px; font-weight: 600; color: #fff; }
  .packd-checklist li .ck { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 999px; background: var(--mint); color: var(--navy); display: grid; place-items: center; }
  .packd-checklist li:nth-child(even) .ck { background: var(--coral); color: #fff; }
  .packd-checklist li .ck svg { width: 20px; height: 20px; stroke-width: 3.2; }

  /* ===== Instagram feed ===== */
  .ig-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; }
  .ig-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 36px; }
  @media (min-width: 560px) { .ig-grid { grid-template-columns: repeat(4,1fr); } }
  @media (min-width: 940px) { .ig-grid { grid-template-columns: repeat(4,1fr); gap: 16px; } }
  .ig-cell { aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden; display: grid; place-items: center; position: relative; transition: transform .25s var(--ease); }
  .ig-cell:hover { transform: scale(1.03); }
  .ig-cell svg.sock { width: 56%; filter: drop-shadow(0 8px 14px rgba(27,45,79,.18)); }
  .ig-cell .ov { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transition: opacity .2s var(--ease); }
  .ig-cell:nth-child(4n+1) .ov { background: rgba(27,45,79,.62); }
  .ig-cell:nth-child(4n+2) .ov { background: rgba(255,107,107,.7); }
  .ig-cell:nth-child(4n+3) .ov { background: rgba(78,205,196,.72); }
  .ig-cell:nth-child(4n) .ov { background: rgba(255,230,109,.78); }
  .ig-cell:hover .ov { opacity: 1; }
  .ig-cell .ov svg { width: 28px; height: 28px; color: #fff; }
  .ig-cell:nth-child(4n) .ov svg { color: var(--navy); }

  /* ===== Floating WhatsApp ===== */
  .wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 300; display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; font-weight: 700; font-size: 15px; padding: 13px 18px 13px 14px; border-radius: 999px; box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
  .wa-float:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,211,102,.55); }
  .wa-float .ring { position: relative; width: 26px; height: 26px; display: grid; place-items: center; }
  .wa-float .ring::before { content: ""; position: absolute; inset: -7px; border-radius: 999px; background: rgba(37,211,102,.5); animation: waPulse 2.2s ease-out infinite; z-index: -1; }
  .wa-float svg { width: 26px; height: 26px; }
  @keyframes waPulse { 0% { transform: scale(.7); opacity: .8; } 100% { transform: scale(1.8); opacity: 0; } }
  @media (prefers-reduced-motion: reduce) { .wa-float .ring::before { animation: none; } }
  @media (max-width: 520px) { .wa-float .wa-label { display: none; } .wa-float { padding: 14px; } }

/* ============================================================
   MULTI-PAGE ADDITIONS (shared across all Yax Socks pages)
   ============================================================ */
.nav-links a.active { color: var(--coral); }
.drawer-panel a.active { color: var(--coral); }

/* Page hero */
.phero { position: relative; overflow: hidden; background: var(--cream); }
.phero.navy { background: var(--navy); color: #fff; }
.phero.navy h1, .phero.navy .display { color: #fff; }
.phero .wrap { position: relative; z-index: 2; }
.phero-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; padding: 56px 0 60px; }
@media (min-width: 900px) { .phero-grid { grid-template-columns: 1.1fr .9fr; gap: 48px; padding: 70px 0 78px; } }
.phero h1 { font-size: clamp(40px, 7vw, 76px); }
.phero h1 .hl { color: var(--coral); }
.phero.navy h1 .hl { color: var(--mint); }
.phero .lead { margin-top: 20px; }
.phero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.phero-art { aspect-ratio: 1/1; border-radius: var(--r-md); display: grid; place-items: center; position: relative; overflow: hidden; }
.phero-art .sk { width: 64%; filter: drop-shadow(0 16px 26px rgba(27,45,79,.22)); }
.phero-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: 80%; }
.phero-mini .cell { aspect-ratio: 1; border-radius: var(--r-sm); display: grid; place-items: center; }
.phero-mini .cell svg { width: 62%; }
.phero-art.phero-photo { aspect-ratio: auto; border-radius: 0; overflow: visible; background: none; }
.phero-art.phero-photo img { width: 100%; max-width: 560px; height: auto; object-fit: contain; filter: drop-shadow(0 14px 22px rgba(27,45,79,.10)); }

/* Generic forms */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; }
.field .req { color: var(--coral); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 15px; border-radius: var(--r-sm); border: 2px solid var(--line);
  background: #fff; color: var(--ink); font-family: inherit; font-size: 15.5px; font-weight: 500;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--mint); box-shadow: 0 0 0 4px rgba(78,205,196,.25); }
.field input::placeholder, .field textarea::placeholder { color: #97a0b1; }
.form-ok { display: none; align-items: center; gap: 10px; background: var(--mint); color: var(--navy); font-weight: 800; padding: 14px 18px; border-radius: var(--r-sm); margin-top: 4px; }
.form-ok svg { width: 20px; height: 20px; stroke-width: 3; flex: 0 0 auto; }
.form-note { font-size: 13px; color: var(--muted); }

/* Split lead-capture layout */
.split { display: grid; grid-template-columns: 1fr; gap: 0; align-items: stretch; }
@media (min-width: 940px) { .split { grid-template-columns: 1fr 1fr; min-height: 78vh; } }
.split .pane-info { background: var(--navy); color: #fff; padding: 56px 7vw; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.split .pane-info h1 { color: #fff; }
.split .pane-info .hl { color: var(--mint); }
.split .pane-form { background: var(--cream); padding: 56px 7vw; display: flex; flex-direction: column; justify-content: center; }
.split .blob-bg { opacity: .08; }
.bullets { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.bullets li { display: flex; gap: 13px; align-items: center; font-size: 16.5px; font-weight: 600; color: rgba(255,255,255,.94); }
.bullets li .ck { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 999px; background: var(--mint); color: var(--navy); display: grid; place-items: center; }
.bullets li:nth-child(even) .ck { background: var(--coral); color: #fff; }
.bullets li .ck svg { width: 18px; height: 18px; stroke-width: 3.2; }

/* Channel cards reuse .use; add a CTA link */
.use .uca { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--mint); }
.use:nth-child(n+4) .uca { color: var(--coral); }
.use .uca svg { width: 15px; height: 15px; stroke-width: 3; transition: transform .2s var(--ease); }
.use:hover .uca svg { transform: translateX(4px); }

/* Simple info rows (contact details) */
.inforow { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); }
.inforow:first-child { border-top: none; }
.inforow .ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 999px; background: var(--navy); color: var(--mint); display: grid; place-items: center; }
.inforow .ic svg { width: 22px; height: 22px; stroke-width: 2.2; }
.inforow .t { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.inforow .v { font-size: 17px; font-weight: 700; color: var(--navy); }

/* Pricing page: what's included list */
.incl { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.incl li { display: flex; gap: 11px; align-items: flex-start; font-size: 16px; font-weight: 600; color: var(--navy); }
.incl li svg { width: 20px; height: 20px; color: var(--mint-dark); flex: 0 0 auto; margin-top: 2px; stroke-width: 3; }

/* generic section number tag for private label etc already covered by steps-3 */
.lede-block { max-width: 760px; }

/* ===== Custom Socks: 4-step ordering process ===== */
.proc { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-top: 50px; }
@media (min-width: 940px) { .proc { grid-template-columns: 1.12fr .88fr; gap: 56px; } }
.proc-steps { display: grid; gap: 16px; }
.proc-card { display: flex; gap: 20px; align-items: flex-start; border-radius: var(--r-md); padding: 24px 26px; background: var(--navy); color: #fff; }
.proc-card:nth-child(2) { background: var(--mint); color: var(--navy); }
.proc-card:nth-child(3) { background: var(--coral); color: #fff; }
.proc-card:nth-child(4) { background: var(--yellow); color: var(--navy); }
.proc-card .pn { font-family: "Anton", sans-serif; font-size: clamp(48px, 6vw, 70px); line-height: .78; flex: 0 0 auto; color: var(--mint); }
.proc-card:nth-child(2) .pn { color: var(--coral); }
.proc-card:nth-child(3) .pn { color: var(--yellow); }
.proc-card:nth-child(4) .pn { color: var(--coral); }
.proc-card h3 { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase; font-size: 21px; letter-spacing: .01em; line-height: 1.05; margin-bottom: 6px; }
.proc-card p { font-size: 15.5px; font-weight: 500; opacity: .92; }
.proc-visual { border-radius: var(--r-md); background: radial-gradient(120% 120% at 30% 18%, var(--pastel-mint), var(--pastel-blue)); padding: 36px; display: grid; place-items: center; }
.proc-visual .pv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; max-width: 320px; }
.proc-visual .pv-cell { aspect-ratio: 1; background: #fff; border-radius: var(--r-sm); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.proc-visual .pv-cell:nth-child(2) { background: var(--pastel-yellow); }
.proc-visual .pv-cell:nth-child(3) { background: var(--pastel-pink); }
.proc-visual .pv-cell svg { width: 60%; }
.proc-visual.proc-photo { background: none; padding: 0; }
.proc-visual.proc-photo img { width: 100%; max-width: 440px; height: auto; object-fit: contain; }

/* ===== Custom Socks: "What you can customize" annotated panel ===== */
.customize { background: var(--navy); color: #fff; }
.customize .eyebrow.mint { color: var(--mint); }
.customize .display { color: #fff; }
.customize .lead { color: rgba(255,255,255,.8); }
.cz-wrap { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; justify-items: center; margin-top: 50px; }
@media (min-width: 900px) { .cz-wrap { grid-template-columns: 1fr auto 1fr; gap: 24px; } }
.cz-col { display: grid; gap: 16px; width: 100%; max-width: 360px; }
.cz-stage { width: min(250px, 62vw); display: grid; place-items: center; }
.cz-stage svg { width: 100%; filter: drop-shadow(0 22px 44px rgba(0,0,0,.45)); }
.cz-stage.cz-photo { width: min(400px, 82vw); }
.cz-stage.cz-photo img { width: 100%; height: auto; object-fit: contain; }
.cz-label { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 13px 19px; display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 15px; }
.cz-label .dot { width: 11px; height: 11px; border-radius: 999px; flex: 0 0 auto; background: var(--mint); }
.cz-col.right .cz-label .dot { background: var(--coral); }
@media (min-width: 900px) { .cz-col.right .cz-label { flex-direction: row-reverse; text-align: right; } }

/* ===== Animated benefit ticker ===== */
.ticker { background: var(--coral); overflow: hidden; padding: 16px 0; }
.ticker-track { display: inline-flex; white-space: nowrap; animation: tickerScroll 30s linear infinite; will-change: transform; }
.ticker-track .grp { display: inline-flex; align-items: center; }
.ticker-track .it { font-family: "Anton", sans-serif; text-transform: uppercase; font-size: clamp(17px, 2.2vw, 26px); letter-spacing: .03em; color: #fff; padding: 0 28px; }
.ticker-track .sep { color: var(--yellow); font-size: clamp(15px, 1.8vw, 22px); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ===== Type pages: hero, feature cards, order band ===== */
.type-hero-art { border-radius: var(--r-md); padding: 40px; display: grid; place-items: center; aspect-ratio: 4/3; }
.type-hero-art svg.bigsock { width: min(220px, 60%); filter: drop-shadow(0 22px 44px rgba(27,45,79,.28)); }
.type-hero-art.on-dark svg.bigsock { filter: drop-shadow(0 22px 44px rgba(0,0,0,.45)); }
.type-hero-photo { padding: 0; overflow: hidden; aspect-ratio: 1/1; }
.type-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--r-md); }
/* Crew showcase: thumbnail rail + large viewer */
.crew-showcase { display: grid; grid-template-columns: 96px 1fr; gap: 18px; margin-top: 46px; align-items: start; }
@media (max-width: 640px) { .crew-showcase { grid-template-columns: 72px 1fr; gap: 12px; } }
.cs-rail { display: flex; flex-direction: column; gap: 14px; }
.cs-thumb { padding: 0; border: 2px solid transparent; border-radius: var(--r-md); overflow: hidden; cursor: pointer; background: var(--cloud); aspect-ratio: 1/1; transition: border-color .2s var(--ease), transform .2s var(--ease); }
.cs-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-thumb:hover { transform: translateY(-2px); }
.cs-thumb.is-active { border-color: var(--coral); }
.cs-main { margin: 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-md); background: var(--cloud); }
.cs-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .18s var(--ease); }

/* Product-page hero: gallery + spec panel */
.product-hero { padding-top: 38px; padding-bottom: 64px; }
.prod-crumbs { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 22px; }
.prod-crumbs a { color: var(--muted); text-decoration: none; }
.prod-crumbs a:hover { color: var(--coral); }
.prod-crumbs span { margin: 0 6px; opacity: .6; }
.product-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
@media (min-width: 900px) { .product-grid { grid-template-columns: 1.05fr .95fr; gap: 52px; } }
.product-gallery .crew-showcase { margin-top: 0; }
.product-gallery .type-gallery-single { aspect-ratio: 1/1; padding: 8%; margin-top: 0; }
.product-gallery .type-gallery-single svg.bigsock { width: min(240px, 64%); }
.product-info { align-self: center; }
.product-info .eyebrow { color: var(--mint-deep); }
.product-info h1 { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.02; }
.product-info .lead { margin-top: 14px; font-size: 16.5px; }
.prod-rate { display: flex; align-items: center; gap: 9px; margin-top: 14px; font-size: 13.5px; font-weight: 700; color: var(--navy); }
.prod-rate .stars { color: #F5A623; letter-spacing: 2px; font-size: 15px; }
.spec-list { list-style: none; padding: 0; margin: 22px 0 4px; display: grid; gap: 11px; }
.spec-list li { position: relative; padding-left: 30px; font-size: 15.5px; font-weight: 500; color: var(--navy); line-height: 1.4; }
.spec-list li strong { font-weight: 800; }
.spec-list li::before { content: ""; position: absolute; left: 0; top: 2px; width: 19px; height: 19px; border-radius: 999px; background: var(--mint); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B2D4F' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); background-size: 13px; background-repeat: no-repeat; background-position: center; }
.product-info .phero-cta { margin-top: 26px; }

/* Benefit strip under product hero */
.benefit-strip { background: var(--navy); }
.benefit-strip .wrap { padding: 20px 22px; }
.bstrip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; }
.bs { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .01em; }
.bs svg { width: 20px; height: 20px; color: var(--mint); flex: 0 0 auto; }
.tcards { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 46px; }
@media (min-width: 760px) { .tcards { grid-template-columns: repeat(3,1fr); } }
.tcard { border-radius: var(--r-md); padding: 30px 28px; background: var(--navy); color: #fff; }
.tcard:nth-child(2) { background: var(--mint); color: var(--navy); }
.tcard:nth-child(3) { background: var(--coral); color: #fff; }
.tcard .ic { color: var(--mint); margin-bottom: 14px; display: block; }
.tcard:nth-child(2) .ic { color: var(--navy); }
.tcard:nth-child(3) .ic { color: var(--yellow); }
.tcard .ic svg { width: 38px; height: 38px; stroke-width: 2.3; }
.tcard h3 { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase; font-size: 20px; letter-spacing: .01em; margin-bottom: 8px; }
.tcard p { font-size: 15.5px; font-weight: 500; opacity: .92; }
.order-band { background: var(--mint); }
.order-band .eyebrow, .order-band .display { color: var(--navy); }
.order-band .lead { color: var(--navy-deep); }
.order4 { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 42px; }
@media (min-width: 760px) { .order4 { grid-template-columns: repeat(4,1fr); } }
.order4 .o .on { font-family: "Anton", sans-serif; font-size: 52px; line-height: .8; color: #fff; display: block; margin-bottom: 8px; }
.order4 .o h3 { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase; font-size: 18px; color: var(--navy); margin-bottom: 6px; letter-spacing: .01em; }
.order4 .o p { font-size: 14.5px; font-weight: 500; color: var(--navy-deep); }

/* ===== "Type Of Socks" nav dropdown ===== */
.nav-dd { position: relative; }
.nav-dd-toggle { display: inline-flex; align-items: center; gap: 5px; font-family: inherit; font-weight: 600; font-size: 15px; color: var(--ink); background: none; border: 0; cursor: pointer; padding: 9px 14px; border-radius: 999px; transition: background .18s var(--ease), color .18s var(--ease); }
.nav-dd-toggle .cv { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.nav-dd:hover .nav-dd-toggle, .nav-dd.open .nav-dd-toggle { background: var(--cloud); color: var(--navy); }
.nav-dd:hover .nav-dd-toggle .cv, .nav-dd.open .nav-dd-toggle .cv { transform: rotate(180deg); }
.nav-dd-menu { position: absolute; top: calc(100% + 10px); left: 0; min-width: 212px; background: var(--navy); border-radius: 14px; padding: 8px; box-shadow: 0 18px 44px rgba(11,31,58,.30); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; z-index: 200; }
.nav-dd:hover .nav-dd-menu, .nav-dd.open .nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-menu a { display: block; color: #fff; font-weight: 600; font-size: 15px; padding: 11px 14px; border-radius: 9px; white-space: nowrap; transition: background .15s var(--ease); }
.nav-dd-menu a:hover, .nav-dd-menu a.active { background: var(--coral); color: #fff; }
.drawer-types { display: flex; flex-direction: column; }
.drawer-types-label { font-family: "Anton", sans-serif; text-transform: uppercase; font-size: 13px; letter-spacing: .04em; color: var(--muted); padding: 8px 0 2px; }
