:root{
      --blue:#73ddff;
      --blue-2:#9de7ff;
      --blue-dark:#2a788a;
      --ink:#12161c;
      --ink-2:#1b2129;
      --white:#ffffff;
      --paper:#f7f9fc;
      --paper-2:#eef3f8;
      --muted:#66717f;
      --muted-2:#8b96a1;
      --line:#e7edf3;
      --glass-dark:rgba(10,14,18,.54);
      --shadow-lg:0 34px 100px rgba(11,19,28,.15);
      --shadow-md:0 18px 52px rgba(11,19,28,.08);
      --radius-xl:42px;
      --radius-lg:30px;
      --radius-md:22px;
      --ease:.38s cubic-bezier(.2,.7,.2,1);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      color:var(--ink);
      background:linear-gradient(180deg,#ffffff 0%,#fbfcfe 100%);
      overflow-x:hidden;
    }
    img{display:block;max-width:100%}
    a{text-decoration:none;color:inherit}
    button,input,textarea{font:inherit}
    .container{width:min(1320px,88%);margin:0 auto}
    .section{padding:92px 0}
    .section--soft{background:var(--paper)}
    .section + .section{border-top:1px solid rgba(18,22,28,.025)}

    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      padding:7px 14px;border-radius:999px;
      background:rgba(115,221,255,.12);
      border:1px solid rgba(115,221,255,.22);
      color:var(--blue-dark);
      font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;
    }
    .eyebrow::before{
      content:"";width:7px;height:7px;border-radius:50%;
      background:var(--blue);box-shadow:0 0 14px rgba(115,221,255,.58);
    }

    .btn{
      position:relative;overflow:hidden;
      display:inline-flex;align-items:center;justify-content:center;gap:10px;
      min-height:56px;padding:0 32px;border-radius:999px;
      background:var(--blue);color:#101418;
      font-size:13px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;
      box-shadow:0 14px 38px rgba(115,221,255,.28);
      transition:transform var(--ease),box-shadow var(--ease),background var(--ease);
    }
    .btn::before{
      content:"";position:absolute;top:0;left:-40%;width:32%;height:100%;
      transform:skewX(-18deg);
      background:linear-gradient(90deg,transparent,rgba(255,255,255,.55),transparent);
      transition:left .65s ease;
    }
    .btn::after{content:"→";font-size:18px;transition:transform .22s ease}
    .btn:hover{
      transform:translateY(-3px);
      background:var(--blue-2);
      box-shadow:0 20px 48px rgba(115,221,255,.34);
    }
    .btn:hover::before{left:118%}
    .btn:hover::after{transform:translateX(4px)}

    .heading{
      max-width:820px;margin:0 auto 44px;text-align:center;
    }
    .heading h2{
      margin:14px 0 0;
      font-size:clamp(34px,4.6vw,58px);
      line-height:1.02;letter-spacing:-.055em;font-weight:900;
    }
    .heading p{
      max-width:680px;margin:16px auto 0;
      color:var(--muted);font-size:17px;line-height:1.68;
    }

    /* progress */
    .scroll-progress{
      position:fixed;top:0;left:0;right:0;height:4px;z-index:120;
      background:rgba(255,255,255,.2);
    }
    .scroll-progress span{
      display:block;height:100%;width:0;
      background:var(--blue);
      box-shadow:0 0 18px rgba(115,221,255,.85);
    }

    /* header */
    .site-header{
      position:fixed;top:14px;left:0;right:0;z-index:100;
    }
    .site-header__bar{
      display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:24px;
      padding:16px 18px 16px 18px;
      border-radius:999px;
      background:rgba(255,255,255,.95);
      border:1px solid rgba(18,22,28,.05);
      box-shadow:0 18px 54px rgba(10,18,26,.10);
      backdrop-filter:blur(18px);
      transition:box-shadow var(--ease),background var(--ease);
    }
    .site-header.scrolled .site-header__bar{
      background:rgba(255,255,255,.98);
      box-shadow:0 20px 62px rgba(10,18,26,.14);
    }
    .brand{
      display:inline-flex;align-items:center;
    }
    .brand-mark{
      display:inline-flex;align-items:center;justify-content:center;
      padding:10px 14px;border-radius:18px;background:#07090c;
      box-shadow:0 8px 18px rgba(0,0,0,.10);
    }
    .brand img{width:174px;height:auto}
    .main-nav{
      display:flex;justify-content:center;gap:28px;
    }
    .main-nav a{
      position:relative;
      font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;
      color:#20252d;
    }
    .main-nav a::after{
      content:"";position:absolute;left:0;right:100%;bottom:-6px;height:2px;
      border-radius:999px;background:var(--blue);
      transition:right .25s ease;
    }
    .main-nav a:hover::after{right:0}
    .header-cta{min-height:50px;padding:0 30px;font-size:11px}

    /* hero */
    .hero{
      padding:132px 0 32px;
      background:
        radial-gradient(circle at 8% 0%, rgba(115,221,255,.10), transparent 30%),
        radial-gradient(circle at 100% 16%, rgba(115,221,255,.06), transparent 32%),
        linear-gradient(180deg,#fafdff 0%,#ffffff 100%);
    }
    .hero-stage{
      position:relative;overflow:hidden;min-height:860px;
      border-radius:48px;background:#11161b;
      box-shadow:var(--shadow-lg);
    }
    .hero-media{
      position:absolute;inset:0;width:100%;height:100%;
      object-fit:cover;object-position:center 44%;
      filter:grayscale(1);
      transform:scale(1.01);
    }
    .hero-stage::before{
      content:"";position:absolute;inset:0;z-index:1;
      background:
        radial-gradient(circle at 50% 18%, rgba(115,221,255,.05), transparent 22%),
        linear-gradient(180deg, rgba(7,10,13,.32) 0%, rgba(7,10,13,.18) 24%, rgba(7,10,13,.18) 100%);
    }
    .hero-shell{
      position:relative;z-index:2;
      display:flex;align-items:flex-start;justify-content:center;
      min-height:860px;
      padding:76px 34px 132px;
    }
    .hero-box{
      width:min(1080px,100%);
      padding:38px 48px 34px;
      border-radius:36px;
      background:linear-gradient(180deg, rgba(12,16,20,.62), rgba(12,16,20,.46));
      border:1px solid rgba(255,255,255,.10);
      backdrop-filter:blur(18px);
      box-shadow:0 22px 60px rgba(0,0,0,.18);
      text-align:center;
      color:#fff;
    }
    .hero-box .eyebrow{color:var(--blue)}
    .hero-box h1{
      max-width:960px;margin:20px auto 20px;
      font-size:clamp(46px,6vw,78px);
      line-height:.96;letter-spacing:-.07em;font-weight:900;
    }
    .hero-box h1 span{
      display:inline-block;padding:0 .16em .04em;border-radius:15px;
      background:var(--blue);color:#101418;
    }
    .hero-lead{
      margin:0 auto 16px;max-width:760px;
      color:rgba(255,255,255,.78);font-size:19px;line-height:1.72;
    }
    .hero-body{
      margin:0 auto 28px;max-width:980px;
      color:rgba(255,255,255,.78);font-size:18px;line-height:1.72;
    }
    .hero-actions{
      display:flex;justify-content:center;align-items:center;gap:26px;flex-wrap:wrap;
    }
    .hero-trust{
      display:flex;justify-content:center;gap:22px;flex-wrap:wrap;
      margin-top:28px;
      color:rgba(255,255,255,.86);font-size:15px;font-weight:700;
    }
    .hero-trust span::before{
      content:"✓";color:var(--blue);font-weight:900;margin-right:7px;
    }

    .benefits-wrap{
      position:absolute;left:34px;right:34px;bottom:26px;z-index:3;
      display:flex;justify-content:center;
    }
    .benefits{
      width:min(1080px,100%);
      overflow:hidden;padding:3px;
      border-radius:999px;
      background:linear-gradient(90deg, rgba(115,221,255,.65), rgba(255,255,255,.15), rgba(115,221,255,.65));
      box-shadow:0 16px 44px rgba(0,0,0,.12);
    }
    .benefits-inner{
      overflow:hidden;border-radius:999px;background:rgba(14,18,24,.82);
      backdrop-filter:blur(16px);
    }
    .benefits-track{
      display:flex;width:max-content;gap:42px;padding:18px 30px;
      animation:move 34s linear infinite;
    }
    .benefits-track span{
      display:inline-flex;align-items:center;gap:11px;
      white-space:nowrap;color:#fff;font-size:14px;font-weight:800;
    }
    .benefits-track i{
      width:9px;height:9px;border-radius:50%;background:var(--blue);
      box-shadow:0 0 16px rgba(115,221,255,.45);
    }
    @keyframes move{to{transform:translateX(-50%)}}

    /* editorial human section */
    .debtier-human{
      position:relative;overflow:hidden;
      background:
        radial-gradient(circle at 88% 16%, rgba(115,221,255,.08), transparent 28%),
        linear-gradient(180deg,#fff 0%,#fbfcfe 100%);
    }
    .human-heading{
      display:grid;grid-template-columns:1.08fr .92fr;gap:42px;align-items:end;
      margin-bottom:34px;
    }
    .human-heading h2{
      margin:14px 0 0;
      font-size:clamp(38px,5.2vw,66px);
      line-height:.98;letter-spacing:-.06em;font-weight:900;
    }
    .human-heading p{
      max-width:560px;margin:0;color:var(--muted);
      font-size:17px;line-height:1.7;
    }
    .human-gallery{
      display:grid;grid-template-columns:1.25fr .75fr .75fr;gap:16px;
    }
    .human-shot{
      position:relative;overflow:hidden;min-height:390px;margin:0;
      border-radius:28px;background:#d9dfe5;box-shadow:var(--shadow-md);
    }
    .human-shot--large{min-height:500px}
    .human-shot img{
      width:100%;height:100%;object-fit:cover;filter:grayscale(1);
      transition:transform .8s ease,filter .8s ease;
    }
    .human-shot:hover img{transform:scale(1.035);filter:grayscale(.82)}
    .human-shot::after{
      content:"";position:absolute;inset:0;
      background:linear-gradient(180deg,transparent 56%,rgba(8,12,16,.62) 100%);
    }
    .human-shot figcaption{
      position:absolute;left:18px;right:18px;bottom:16px;z-index:2;
      color:#fff;font-size:13px;font-weight:800;
    }

    /* about */
    .about-shell{
      display:grid;grid-template-columns:1.05fr .95fr;gap:24px;align-items:stretch;
    }
    .about-content{
      padding:42px;border-radius:34px;background:var(--paper);
      border:1px solid var(--line);
      display:flex;flex-direction:column;justify-content:center;
    }
    .about-content h3{
      margin:18px 0 12px;font-size:clamp(30px,3vw,44px);
      line-height:1.05;font-weight:900;
    }
    .about-content p{color:var(--muted);font-size:16px;line-height:1.72}
    .pill-list{
      display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:22px 0 28px;
    }
    .pill{
      padding:14px 16px;border-radius:18px;background:#fff;border:1px solid var(--line);
    }
    .pill strong{display:block;font-size:14px}
    .pill span{display:block;margin-top:3px;color:var(--muted);font-size:12px}
    .about-media{
      position:relative;overflow:hidden;min-height:560px;border-radius:34px;
      background:#d9dde2;box-shadow:var(--shadow-md);
    }
    .about-media img{
      width:100%;height:100%;object-fit:cover;filter:grayscale(1);
      transition:transform .8s ease;
    }
    .about-media:hover img{transform:scale(1.035)}
    .about-stats{
      position:absolute;left:22px;right:22px;bottom:22px;
      display:grid;grid-template-columns:repeat(3,1fr);gap:10px;
    }
    .about-stat{
      padding:16px;border-radius:18px;background:rgba(255,255,255,.88);
      backdrop-filter:blur(14px);
    }
    .about-stat strong{display:block;font-size:22px;letter-spacing:-.04em}
    .about-stat span{display:block;margin-top:3px;color:var(--muted);font-size:11px;font-weight:800}

    /* services bento */
    .bento{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      grid-auto-rows:minmax(210px,auto);
      gap:16px;
    }
    .bento-card{
      position:relative;overflow:hidden;
      padding:28px;border-radius:28px;border:1px solid var(--line);
      background:linear-gradient(180deg,#ffffff 0%,#fbfcfe 100%);
      box-shadow:0 12px 34px rgba(11,19,28,.05);
      transition:transform var(--ease),box-shadow var(--ease);
    }
    .bento-card:hover{transform:translateY(-5px);box-shadow:0 20px 48px rgba(11,19,28,.08)}
    .bento-card--main{
      grid-row:span 2;
      background:
        radial-gradient(circle at 85% 10%, rgba(115,221,255,.12), transparent 26%),
        linear-gradient(145deg,#131820,#202832);
      color:#fff;
      padding:36px;
    }
    .bento-kicker{
      display:inline-flex;padding:7px 12px;border-radius:999px;
      background:rgba(115,221,255,.12);color:var(--blue-dark);
      font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;
    }
    .bento-card--main .bento-kicker{color:var(--blue)}
    .bento-card h3{margin:18px 0 10px;font-size:27px;line-height:1.08;font-weight:900}
    .bento-card--main h3{font-size:38px;max-width:480px}
    .bento-card p{margin:0;color:var(--muted);font-size:14.5px;line-height:1.64}
    .bento-card--main p{color:rgba(255,255,255,.68);font-size:16px}
    .bento-card--main .btn{margin-top:28px}
    .bento-mark{
      position:absolute;right:20px;bottom:14px;
      font-size:72px;line-height:1;font-weight:900;letter-spacing:-.08em;
      color:rgba(115,221,255,.14);
    }

    /* CTA banner centered like hero */
    .cta-stage{
      position:relative;overflow:hidden;min-height:620px;
      border-radius:42px;background:#11161b;box-shadow:var(--shadow-lg);
    }
    .cta-media{
      position:absolute;inset:0;width:100%;height:100%;
      object-fit:cover;object-position:center 57%;filter:grayscale(1);
    }
    .cta-stage::before{
      content:"";position:absolute;inset:0;z-index:1;
      background:
        radial-gradient(circle at 50% 24%, rgba(115,221,255,.08), transparent 22%),
        linear-gradient(180deg, rgba(8,12,16,.32) 0%, rgba(8,12,16,.26) 100%);
    }
    .cta-shell{
      position:relative;z-index:2;
      min-height:620px;padding:56px 34px 120px;
      display:flex;align-items:flex-start;justify-content:center;
    }
    .cta-box{
      width:min(960px,100%);
      padding:36px 44px;border-radius:34px;
      text-align:center;color:#fff;
      background:linear-gradient(180deg, rgba(12,16,20,.62), rgba(12,16,20,.44));
      border:1px solid rgba(255,255,255,.10);
      backdrop-filter:blur(18px);
      box-shadow:0 22px 60px rgba(0,0,0,.18);
    }
    .cta-box .eyebrow{color:var(--blue)}
    .cta-box h2{
      margin:18px auto 12px;max-width:740px;
      font-size:clamp(42px,5.4vw,70px);
      line-height:.98;letter-spacing:-.06em;font-weight:900;
    }
    .cta-box h2 span{
      display:inline-block;padding:0 .16em;border-radius:15px;
      background:var(--blue);color:#101418;
    }
    .cta-box p{
      max-width:680px;margin:0 auto;color:rgba(255,255,255,.76);
      font-size:17px;line-height:1.72;
    }
    .cta-actions{margin-top:26px}
    .cta-bottom-note{
      position:absolute;left:34px;right:34px;bottom:26px;z-index:3;
      display:flex;justify-content:center;
    }
    .cta-bottom-card{
      width:min(540px,100%);
      display:flex;justify-content:center;gap:26px;flex-wrap:wrap;
      padding:16px 22px;border-radius:999px;
      background:rgba(255,255,255,.90);backdrop-filter:blur(14px);
      color:#111;font-size:14px;font-weight:800;
      box-shadow:0 14px 36px rgba(0,0,0,.12);
    }
    .cta-bottom-card span::before{
      content:"•";color:var(--blue-dark);margin-right:8px;
    }

    /* steps */
    .steps-shell{
      position:relative;
      display:grid;grid-template-columns:repeat(4,1fr);gap:18px;
    }
    .steps-shell::before{
      content:"";position:absolute;left:8%;right:8%;top:34px;height:2px;
      background:linear-gradient(90deg,var(--blue),rgba(115,221,255,.18));
    }
    .step{
      position:relative;z-index:1;
      padding:82px 24px 26px;border-radius:26px;background:#fff;border:1px solid var(--line);
      box-shadow:0 12px 34px rgba(11,19,28,.05);
      transition:transform var(--ease),box-shadow var(--ease),border-color var(--ease);
    }
    .step:hover{
      transform:translateY(-5px);
      box-shadow:0 20px 48px rgba(11,19,28,.09);
      border-color:rgba(115,221,255,.30);
    }
    .step-no{
      position:absolute;top:10px;left:24px;
      width:48px;height:48px;border-radius:50%;
      display:grid;place-items:center;
      background:#fff;border:2px solid var(--blue);
      color:var(--blue-dark);font-weight:900;
      box-shadow:0 8px 18px rgba(115,221,255,.16);
    }
    .step h3{margin:0 0 9px;font-size:20px;line-height:1.15}
    .step p{margin:0;color:var(--muted);font-size:14px;line-height:1.64}

    /* meaning */
    .meaning-shell{
      display:grid;grid-template-columns:.9fr 1.1fr;gap:24px;
    }
    .meaning-card{
      padding:42px;border-radius:34px;background:#11161b;color:#fff;
      display:flex;flex-direction:column;justify-content:center;
      box-shadow:var(--shadow-md);
    }
    .meaning-card h3{
      margin:18px 0 12px;font-size:clamp(30px,3.6vw,48px);
      line-height:1.05;font-weight:900;
    }
    .meaning-card p{color:rgba(255,255,255,.68);font-size:16px;line-height:1.72}
    .meaning-points{display:flex;flex-wrap:wrap;gap:8px;margin:20px 0 26px}
    .meaning-points span{
      padding:8px 13px;border-radius:999px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.08);
      color:#fff;font-size:12px;font-weight:800;
    }
    .meaning-media{
      position:relative;overflow:hidden;min-height:500px;border-radius:34px;
      background:#d9dde2;box-shadow:var(--shadow-md);
    }
    .meaning-media img{
      width:100%;height:100%;object-fit:cover;object-position:center 38%;
      filter:grayscale(1);
    }
    .meaning-quote{
      position:absolute;left:22px;right:22px;bottom:22px;
      padding:18px 20px;border-radius:20px;
      background:rgba(255,255,255,.88);backdrop-filter:blur(14px);
      color:#111;font-size:14px;font-weight:800;
    }

    /* FAQ */
    .faq-shell{
      display:grid;grid-template-columns:.72fr 1.28fr;gap:34px;
      padding:34px;border-radius:34px;background:#fff;border:1px solid var(--line);
      box-shadow:var(--shadow-md);
    }
    .faq-left{
      position:sticky;top:120px;height:max-content;
      padding:30px;border-radius:24px;background:var(--paper);
    }
    .faq-left h3{margin:0 0 10px;font-size:26px}
    .faq-left p{color:var(--muted);font-size:15px;line-height:1.7}
    .faq-item{border-bottom:1px solid var(--line)}
    .faq-question{
      width:100%;display:flex;justify-content:space-between;gap:20px;
      padding:20px 0;background:none;border:0;cursor:pointer;
      text-align:left;color:#111;font-size:17px;font-weight:700;
    }
    .faq-icon{
      width:28px;height:28px;border-radius:50%;
      display:grid;place-items:center;background:var(--paper);
      transition:transform .3s ease,background .3s ease,box-shadow .3s ease;
    }
    .faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease}
    .faq-answer p{margin:0;padding:0 0 20px;color:var(--muted);font-size:15px;line-height:1.7}
    .faq-item.active .faq-icon{
      transform:rotate(180deg);
      background:rgba(115,221,255,.18);
      box-shadow:0 0 0 6px rgba(115,221,255,.08);
    }

    /* footer */
    .site-footer{
      padding:34px 0 24px;background:#0f1318;color:#fff;
      border-top:1px solid rgba(255,255,255,.06);
    }
    .footer-wrap{
      padding:40px;border-radius:34px;background:#141a21;
      border:1px solid rgba(255,255,255,.06);
      box-shadow:0 20px 60px rgba(0,0,0,.18);
    }
    .footer-manifesto{
      display:flex;justify-content:space-between;align-items:flex-end;gap:24px;
      padding-bottom:26px;margin-bottom:30px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .footer-manifesto span{
      color:var(--blue);font-size:12px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;
    }
    .footer-manifesto strong{
      max-width:680px;font-size:clamp(28px,3vw,42px);
      line-height:1.02;letter-spacing:-.05em;text-align:right;
    }
    .footer-top{
      display:grid;grid-template-columns:1.05fr 1.35fr;gap:40px;
      padding-bottom:30px;border-bottom:1px solid rgba(255,255,255,.08);
    }
    .footer-brand img{width:188px;height:auto}
    .footer-brand p{max-width:470px;margin:18px 0 0;color:rgba(255,255,255,.58);font-size:14px;line-height:1.7}
    .footer-selector{margin-top:22px}
    .footer-selector details{position:relative;width:fit-content}
    .footer-selector summary{
      list-style:none;display:flex;align-items:center;gap:10px;cursor:pointer;
      padding:12px 16px;border-radius:18px;
      background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);
    }
    .footer-selector summary::-webkit-details-marker{display:none}
    .lang-flag{font-size:18px}
    .lang-copy strong{display:block;font-size:14px}
    .lang-copy small{display:block;color:rgba(255,255,255,.5);font-size:12px}
    .lang-chevron{color:rgba(255,255,255,.5)}
    .footer-language-menu{
      position:absolute;left:0;top:calc(100% + 10px);min-width:270px;z-index:20;
      padding:8px;border-radius:18px;background:#fff;color:#111;
      box-shadow:0 18px 40px rgba(0,0,0,.22);
    }
    .footer-language-option{
      display:flex;align-items:center;justify-content:space-between;gap:12px;
      padding:10px 12px;border-radius:12px;
    }
    .footer-language-option:hover{background:#f4f7fa}
    .footer-language-option.is-current{background:rgba(115,221,255,.14)}
    .footer-language-option .left{display:flex;align-items:center;gap:10px}
    .footer-language-option .lang-copy small{color:#7a8591}
    .footer-guides-shortcut{
      display:inline-flex;align-items:center;gap:8px;margin-top:18px;
      font-size:14px;font-weight:800;color:#fff;
    }
    .footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
    .footer-col h3{
      margin:0 0 14px;font-size:12px;font-weight:900;
      letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.42)
    }
    .footer-col a,.footer-col span{
      display:block;padding:7px 0;color:rgba(255,255,255,.78);font-size:14px;
    }
    .footer-col a:hover{color:var(--blue)}
    .footer-bottom{padding-top:24px;display:grid;gap:18px}
    .footer-legal p{
      margin:0 0 12px;color:rgba(255,255,255,.48);font-size:12.8px;line-height:1.75
    }
    .footer-meta{
      padding-top:16px;border-top:1px solid rgba(255,255,255,.08);
      display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;
      color:rgba(255,255,255,.38);font-size:12px;font-weight:700;
    }

    @media(max-width:1080px){
      .human-heading,.about-shell,.meaning-shell,.faq-shell,.footer-top{grid-template-columns:1fr}
      .human-gallery{grid-template-columns:1fr 1fr}
      .human-shot--large{grid-column:span 2}
      .bento{grid-template-columns:1fr 1fr}
      .bento-card--main{grid-row:auto;grid-column:span 2}
      .steps-shell{grid-template-columns:1fr 1fr}
      .steps-shell::before{display:none}
      .footer-grid{grid-template-columns:1fr 1fr}
      .faq-left{position:relative;top:auto}
    }
    @media(max-width:820px){
      .site-header__bar{
        grid-template-columns:1fr auto;
        grid-template-areas:"brand cta" "nav nav";
        gap:16px;
      }
      .brand{grid-area:brand}
      .main-nav{grid-area:nav;justify-content:flex-start}
      .header-cta{grid-area:cta}
      .hero{padding-top:170px}
      .hero-stage{min-height:900px}
      .hero-shell{min-height:900px;padding:36px 20px 126px}
      .hero-box{padding:28px 24px}
      .hero-box h1{font-size:52px}
      .cta-shell{padding:34px 20px 116px}
      .cta-box{padding:30px 24px}
    }
    @media(max-width:620px){
      .container{width:min(100% - 28px,1320px)}
      .section{padding:64px 0}
      .heading{text-align:left;margin-bottom:30px}
      .heading h2{font-size:36px}
      .heading p{font-size:15px}
      .site-header{top:10px}
      .site-header__bar{
        grid-template-columns:1fr;
        grid-template-areas:"brand" "nav" "cta";
        gap:10px;padding:14px;border-radius:28px;
      }
      .brand-mark{justify-content:center;width:100%}
      .brand img{width:156px}
      .main-nav{gap:16px;flex-wrap:wrap}
      .main-nav a{font-size:11px}
      .btn,.header-cta{width:100%;padding:0 20px}
      .hero{padding-top:196px}
      .hero-stage{min-height:820px;border-radius:32px}
      .hero-shell{min-height:820px;padding:20px 12px 118px}
      .hero-box{padding:24px 18px;border-radius:26px}
      .hero-box h1{font-size:38px}
      .hero-lead,.hero-body{font-size:15px}
      .hero-trust{gap:8px;flex-direction:column;font-size:14px}
      .benefits-wrap{left:12px;right:12px;bottom:14px}
      .benefits-track{padding:16px 22px;gap:28px}
      .human-heading h2{font-size:40px}
      .human-gallery{grid-template-columns:1fr}
      .human-shot--large{grid-column:auto}
      .human-shot,.human-shot--large{min-height:420px}
      .about-content,.meaning-card{padding:26px}
      .pill-list,.bento,.steps-shell,.footer-grid{grid-template-columns:1fr}
      .bento-card--main{grid-column:auto}
      .about-stats{grid-template-columns:1fr;left:14px;right:14px;bottom:14px}
      .cta-stage{min-height:560px;border-radius:32px}
      .cta-shell{min-height:560px;padding:18px 12px 106px}
      .cta-box{padding:24px 18px;border-radius:26px}
      .cta-box h2{font-size:38px}
      .cta-box p{font-size:15px}
      .cta-bottom-note{left:12px;right:12px;bottom:14px}
      .cta-bottom-card{gap:10px;border-radius:26px;padding:14px 16px}
      .faq-shell{padding:18px}
      .footer-wrap{padding:24px 18px}
      .footer-manifesto{flex-direction:column;align-items:flex-start}
      .footer-manifesto strong{text-align:left}
      .footer-meta{flex-direction:column;align-items:flex-start}
      .footer-selector details,.footer-selector summary{width:100%}
      .footer-language-menu{width:100%;min-width:100%}
    }

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



/* v0.9 header logo correction */
.site-header .brand{
  display:inline-flex;
  align-items:center;
  padding:0;
  min-width:0;
}
.site-header .brand-logo{
  display:block;
  width:190px;
  height:auto;
  max-height:50px;
  object-fit:contain;
  object-position:left center;
}
.site-header .brand-mark{
  display:contents !important;
  padding:0 !important;
  margin:0 !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
}
.site-footer .footer-brand img{
  display:block;
  width:190px;
  height:auto;
  filter:none !important;
}

@media(max-width:620px){
  .site-header .brand-logo{
    width:160px;
    max-height:44px;
  }
}


/* =========================================================
   v0.10 — COMPACT DESKTOP SCALE
   Reduces the "zoomed" feeling while preserving the same design.
   ========================================================= */

@media (min-width: 1081px){

  /* Overall width */
  .container{
    width:min(1240px,84%);
  }

  /* Header */
  .site-header{
    top:12px;
  }

  .site-header__bar{
    padding:10px 12px 10px 16px;
    min-height:72px;
  }

  .site-header .brand-logo{
    width:142px;
    max-height:38px;
  }

  .main-nav{
    gap:24px;
  }

  .main-nav a{
    font-size:11px;
  }

  .header-cta{
    min-height:44px;
    padding:0 24px;
    font-size:10.5px;
  }

  /* Hero */
  .hero{
    padding:112px 0 26px;
  }

  .hero-stage{
    min-height:690px;
    border-radius:40px;
  }

  .hero-shell{
    min-height:690px;
    padding:50px 30px 104px;
  }

  .hero-box{
    width:min(940px,100%);
    padding:30px 38px 28px;
    border-radius:30px;
  }

  .hero-box h1{
    max-width:820px;
    margin:16px auto 14px;
    font-size:clamp(40px,4.75vw,64px);
    line-height:.98;
  }

  .hero-lead{
    max-width:700px;
    margin-bottom:10px;
    font-size:16px;
    line-height:1.6;
  }

  .hero-body{
    max-width:860px;
    margin-bottom:22px;
    font-size:15.5px;
    line-height:1.62;
  }

  .hero-actions .btn{
    min-height:50px;
    padding:0 28px;
    font-size:11px;
  }

  .hero-trust{
    gap:18px;
    margin-top:20px;
    font-size:13px;
  }

  .benefits-wrap{
    left:30px;
    right:30px;
    bottom:18px;
  }

  .benefits{
    width:min(940px,100%);
  }

  .benefits-track{
    gap:34px;
    padding:14px 24px;
  }

  .benefits-track span{
    font-size:12.5px;
  }

  /* Section rhythm */
  .section{
    padding:72px 0;
  }

  .heading{
    margin-bottom:34px;
  }

  .heading h2{
    font-size:clamp(30px,3.6vw,48px);
  }

  .heading p{
    font-size:15.5px;
  }

  /* Human editorial */
  .human-heading{
    gap:34px;
    margin-bottom:28px;
  }

  .human-heading h2{
    font-size:clamp(34px,4.2vw,54px);
  }

  .human-heading p{
    font-size:15.5px;
  }

  .human-shot{
    min-height:320px;
    border-radius:24px;
  }

  .human-shot--large{
    min-height:410px;
  }

  /* About */
  .about-content{
    padding:34px;
    border-radius:28px;
  }

  .about-content h3{
    font-size:clamp(28px,2.8vw,38px);
  }

  .about-content p{
    font-size:15px;
  }

  .about-media{
    min-height:460px;
    border-radius:28px;
  }

  .about-stat{
    padding:13px;
  }

  .about-stat strong{
    font-size:18px;
  }

  /* Bento */
  .bento{
    grid-auto-rows:minmax(175px,auto);
    gap:14px;
  }

  .bento-card{
    padding:22px;
    border-radius:24px;
  }

  .bento-card--main{
    padding:28px;
  }

  .bento-card h3{
    font-size:23px;
  }

  .bento-card--main h3{
    font-size:32px;
  }

  .bento-card p{
    font-size:13.5px;
  }

  /* CTA banner */
  .cta-stage{
    min-height:500px;
    border-radius:36px;
  }

  .cta-shell{
    min-height:500px;
    padding:40px 28px 92px;
  }

  .cta-box{
    width:min(820px,100%);
    padding:28px 36px;
    border-radius:28px;
  }

  .cta-box h2{
    max-width:660px;
    margin-top:14px;
    font-size:clamp(38px,4.5vw,58px);
  }

  .cta-box p{
    max-width:620px;
    font-size:15px;
  }

  .cta-actions{
    margin-top:20px;
  }

  .cta-bottom-note{
    bottom:18px;
  }

  .cta-bottom-card{
    padding:13px 20px;
    font-size:12.5px;
  }

  /* Steps */
  .steps-shell{
    gap:14px;
  }

  .step{
    padding:70px 20px 22px;
    border-radius:22px;
  }

  .step h3{
    font-size:18px;
  }

  .step p{
    font-size:13.5px;
  }

  /* Meaning */
  .meaning-card{
    padding:34px;
    border-radius:28px;
  }

  .meaning-card h3{
    font-size:clamp(28px,3.1vw,40px);
  }

  .meaning-card p{
    font-size:15px;
  }

  .meaning-media{
    min-height:420px;
    border-radius:28px;
  }

  /* FAQ */
  .faq-shell{
    padding:28px;
    gap:28px;
    border-radius:28px;
  }

  .faq-left{
    padding:24px;
  }

  .faq-left h3{
    font-size:22px;
  }

  .faq-question{
    padding:16px 0;
    font-size:15.5px;
  }

  .faq-answer p{
    font-size:14px;
  }

  /* Footer */
  .footer-wrap{
    padding:32px;
    border-radius:28px;
  }

  .footer-manifesto{
    margin-bottom:24px;
    padding-bottom:22px;
  }

  .footer-manifesto strong{
    font-size:clamp(24px,2.5vw,34px);
  }

  .footer-brand img{
    width:160px;
  }
}


/* v0.15 sticky-header spacing correction */
@media(min-width:901px){.hero{padding:30px 0 26px!important}.about-page-hero,.contact-page-hero{padding:30px 0 24px!important}}
