:root {
  --cream: #f7f4ec;
  --paper: #fffdf8;
  --ink: #172a2a;
  --muted: #66716d;
  --line: #ded8ca;
  --green: #174c45;
  --green-2: #2f7468;
  --blue: #356bb3;
  --yellow: #e4b33b;
  --coral: #d95a48;
  --red-soft: #f5d6cf;
  --yellow-soft: #f5e7b4;
  --blue-soft: #d9e5f5;
  --green-soft: #d9e9df;
  --shadow: 0 24px 70px rgba(23, 42, 42, .1);
  --radius: 18px;
  --font: Inter, Avenir Next, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--cream); color: var(--ink); font-family: var(--font); }
body.dialog-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
img { max-width: 100%; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .75rem 1rem; background: white; color: var(--ink); border-radius: 8px; }
.skip-link:focus { top: 1rem; }
.section-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header { width: min(1240px, calc(100% - 32px)); min-height: 78px; margin: 14px auto 0; padding: 10px 14px 10px 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 1px solid rgba(23, 42, 42, .09); border-radius: 18px; background: rgba(255, 253, 248, .84); backdrop-filter: blur(18px); position: sticky; top: 12px; z-index: 20; box-shadow: 0 8px 32px rgba(23, 42, 42, .06); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 1.05rem; font-weight: 850; letter-spacing: -.03em; text-decoration: none; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand > span > span { color: var(--green-2); }
.brand small { font-size: .62em; font-weight: 750; color: var(--muted); }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a, .text-button { border: 0; background: none; color: var(--ink); padding: 12px 13px; font-size: .9rem; font-weight: 680; text-decoration: none; border-radius: 9px; }
.main-nav a:hover, .text-button:hover { background: #f0ece2; }
.menu-button { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--ink); padding: 12px; }
.menu-button i { display: block; height: 2px; margin: 4px 0; background: white; }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 11px; padding: 0 20px; font-weight: 800; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, .choice-card:has(input:focus-visible), .identity-options label:has(input:focus-visible) { outline: 3px solid rgba(53, 107, 179, .35); outline-offset: 2px; }
.button-small { min-height: 42px; padding-inline: 16px; font-size: .88rem; }
.button-dark { background: var(--ink); color: white; box-shadow: 0 10px 24px rgba(23, 42, 42, .14); }
.button-coral { background: var(--coral); color: white; box-shadow: 0 10px 24px rgba(217, 90, 72, .18); }
.button-blue { background: var(--blue); color: white; }
.button-cream { background: var(--cream); color: var(--ink); }
.button-quiet { background: transparent; border-color: var(--line); color: var(--ink); }
.button-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.button[disabled] { cursor: wait; opacity: .6; transform: none; }

.hero { min-height: 720px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(30px, 6vw, 90px); padding-block: 70px 80px; }
.eyebrow { margin: 0 0 18px; display: flex; align-items: center; gap: 9px; color: var(--green-2); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 850; }
.eyebrow span { width: 24px; height: 3px; border-radius: 9px; background: currentColor; }
.eyebrow-light { color: #b9d8ce; }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(3.3rem, 6.4vw, 6.3rem); line-height: .93; letter-spacing: -.065em; }
.hero h1 em { color: var(--green-2); font-family: Georgia, serif; font-weight: 500; }
.lead { max-width: 610px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.23rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 28px; color: var(--muted); font-size: .78rem; font-weight: 700; }
.trust-row span { display: flex; align-items: center; gap: 7px; }
.dot { width: 8px; height: 8px; border-radius: 50%; }.dot-green{background:var(--green-2)}.dot-blue{background:var(--blue)}.dot-yellow{background:var(--yellow)}
.hero-visual { min-height: 580px; position: relative; display: grid; align-items: center; }
.hero-visual::before { content: ""; position: absolute; inset: 10% 0; background: var(--paper); border-radius: 48% 48% 42% 54%; transform: rotate(-2deg); box-shadow: var(--shadow); }
.hero-visual img { position: relative; width: 112%; max-width: none; margin-left: -12%; clip-path: inset(1% round 42% 45% 38% 46%); mix-blend-mode: normal; }
.visual-label { position: absolute; z-index: 2; min-width: 160px; padding: 12px 15px; display: grid; gap: 2px; border-radius: 12px; background: rgba(255,253,248,.93); box-shadow: 0 12px 35px rgba(23,42,42,.13); backdrop-filter: blur(10px); }
.visual-label strong { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--green-2); }
.visual-label span { font-size: .9rem; font-weight: 750; }
.visual-label-top { top: 19%; right: -2%; }.visual-label-bottom { bottom: 13%; left: -5%; }

.statement { padding: 90px 30px; text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statement p { margin: 4px 0; font-size: clamp(1.7rem, 3.6vw, 3.7rem); letter-spacing: -.045em; line-height: 1.15; }
.statement p:first-child { color: var(--muted); }
.statement mark { padding: 0 .12em; background: linear-gradient(transparent 63%, var(--yellow-soft) 63%); color: inherit; }

.steps { padding-block: 120px; }
.section-heading { display: grid; grid-template-columns: 1.5fr .75fr; gap: 50px; align-items: end; margin-bottom: 48px; }
.section-heading h2, .protection h2, .principles h2, .business h2, .cta h2 { margin: 0; font-size: clamp(2.35rem, 4.5vw, 4.6rem); line-height: 1; letter-spacing: -.055em; }
.section-heading > p, .business-heading > p { margin: 0 0 4px; color: var(--muted); line-height: 1.65; }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step-card { min-height: 330px; padding: 22px; display: flex; flex-direction: column; border-radius: var(--radius); position: relative; overflow: hidden; }
.step-card::after { content:""; position:absolute; width:150px; height:150px; right:-70px; bottom:-65px; border:28px solid rgba(255,255,255,.32); border-radius:50%; }
.step-red { background: var(--red-soft); }.step-yellow{background:var(--yellow-soft)}.step-blue{background:var(--blue-soft)}.step-green{background:var(--green-soft)}
.step-number { color: rgba(23,42,42,.48); font-size: .76rem; font-weight: 850; letter-spacing: .12em; }
.step-icon { width: 64px; height: 64px; margin: 42px 0 26px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--ink); font-family: Georgia,serif; font-size: 1.8rem; }
.step-red .step-icon{background:var(--coral)}.step-yellow .step-icon{background:#bd8513}.step-blue .step-icon{background:var(--blue)}.step-green .step-icon{background:var(--green-2)}
.step-card h3 { margin: auto 0 7px; font-size: 1.4rem; letter-spacing: -.03em; }.step-card p { margin:0; color:#4f5b57; line-height:1.55; font-size:.92rem; }
.center-action { margin-top: 34px; display: grid; justify-items: center; gap: 12px; }.center-action small{color:var(--muted)}

.protection { min-height: 620px; display: grid; grid-template-columns: 1fr 1.05fr; background: var(--green); color: white; border-radius: 30px; overflow: hidden; }
.protection-visual { min-height: 620px; position: relative; display: grid; place-items: center; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.12), transparent 45%); }
.orbit { position:absolute; border:1px solid rgba(255,255,255,.23); border-radius:50%; }.orbit-one{width:420px;height:420px}.orbit-two{width:570px;height:570px}
.person-symbol { width: 145px; height: 190px; position:relative; }.person-symbol i{position:absolute;left:43px;top:0;width:60px;height:60px;border-radius:50%;background:var(--yellow)}.person-symbol b{position:absolute;left:13px;bottom:0;width:120px;height:115px;border-radius:60px 60px 28px 28px;background:var(--coral)}
.protection-chip { position:absolute; padding:10px 15px; border:1px solid rgba(255,255,255,.2); border-radius:99px; background:rgba(255,255,255,.1); backdrop-filter:blur(8px); font-size:.8rem;font-weight:750}.chip-one{top:19%;left:9%}.chip-two{top:28%;right:7%}.chip-three{bottom:17%;left:18%}
.protection-copy { padding: clamp(50px,7vw,100px); display:flex;flex-direction:column;justify-content:center;background:rgba(0,0,0,.05) }
.protection-copy h2 { font-size:clamp(2.5rem,4.4vw,4.3rem) }.protection-copy > p:not(.eyebrow){margin:26px 0;color:#c7dad4;line-height:1.7;font-size:1.03rem}
.check-list{display:grid;gap:13px;margin:0;padding:0;list-style:none}.check-list li{display:flex;gap:12px;align-items:center;font-weight:730}.check-list li::before{content:"✓";width:24px;height:24px;display:grid;place-items:center;border-radius:50%;background:var(--yellow);color:var(--ink);font-size:.75rem;font-weight:900}

.business { padding-block: 125px; }
.business-paths { display:grid; grid-template-columns:1fr 80px 1fr; align-items:stretch; }
.path-card { padding:34px; border:1px solid var(--line); border-radius:22px; background:var(--paper); box-shadow:0 16px 45px rgba(23,42,42,.06); }
.path-amiq { background:#eef3f9; border-color:#cddced; }
.path-top{display:flex;justify-content:space-between;gap:10px;align-items:center}.path-badge{padding:6px 10px;border-radius:99px;background:var(--ink);color:white;font-size:.72rem;font-weight:800;letter-spacing:.08em}.path-amiq .path-badge{background:var(--blue)}.path-state{color:var(--muted);font-size:.78rem;font-weight:750}
.path-card h3{margin:48px 0 12px;font-size:clamp(1.7rem,3vw,2.7rem);letter-spacing:-.045em}.path-card>p{color:var(--muted);line-height:1.65}.path-card ul{margin:24px 0 30px;padding:0;display:grid;gap:10px;list-style:none}.path-card li{position:relative;padding-left:24px;font-size:.9rem}.path-card li::before{content:"";position:absolute;left:0;top:.45em;width:9px;height:9px;border:3px solid var(--green-2);border-radius:50%}
.path-connector { display:grid;place-items:center;position:relative}.path-connector::before{content:"";position:absolute;left:50%;top:24%;bottom:24%;border-left:1px dashed #b7b0a3}.path-connector span{position:relative;padding:9px 4px;background:var(--cream);color:var(--muted);font-size:.7rem;writing-mode:vertical-rl;text-transform:uppercase;letter-spacing:.1em}
.amiq-rule{margin:22px 0 30px;padding:15px;border-left:4px solid var(--yellow);background:rgba(255,255,255,.7);font-size:.83rem;line-height:1.5}.amiq-rule strong{color:var(--blue)}

.principles { display:grid;grid-template-columns:.8fr 1.2fr;gap:80px;padding:90px 0;border-top:1px solid var(--line) }
.anonymity-promise{margin-block:40px 110px;padding:clamp(38px,6vw,78px);border-radius:30px;background:var(--ink);color:white;position:relative;overflow:hidden}.anonymity-promise::after{content:"";position:absolute;right:-170px;top:-210px;width:480px;height:480px;border:72px solid rgba(255,255,255,.035);border-radius:50%;pointer-events:none}.anonymity-heading{position:relative;z-index:1;display:grid;grid-template-columns:1.1fr .9fr;column-gap:60px;align-items:end}.anonymity-heading .eyebrow{grid-column:1/3}.anonymity-heading h2{margin:10px 0 0;font-size:clamp(2.8rem,5vw,5.4rem);line-height:.95;letter-spacing:-.06em}.anonymity-heading>p:last-child{margin:0;color:#bdcac8;line-height:1.7}.anonymity-grid{position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:52px}.anonymity-grid article{padding:25px;border:1px solid rgba(255,255,255,.12);border-radius:16px;background:rgba(255,255,255,.045)}.anonymity-grid article>span{color:var(--yellow);font-size:.72rem;font-weight:850;letter-spacing:.1em}.anonymity-grid h3{margin:18px 0 9px;font-size:1.08rem}.anonymity-grid p{margin:0;color:#bdcac8;line-height:1.58;font-size:.88rem}.anonymity-boundary{position:relative;z-index:1;display:grid;grid-template-columns:150px 1fr;gap:22px;margin-top:18px;padding:21px;border-radius:14px;background:rgba(235,184,62,.12);border-left:4px solid var(--yellow)}.anonymity-boundary strong{color:#f5cf6a}.anonymity-boundary p{margin:0;color:#e2e9e7;line-height:1.6}
.flow-explainer{padding-bottom:118px}.flow-explainer-heading h2{max-width:820px;font-size:clamp(2.35rem,4.5vw,4.35rem)}.route-map{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.route-card{position:relative;display:flex;flex-direction:column;min-height:390px;padding:28px;border:1px solid var(--line);border-radius:24px;background:var(--paper);box-shadow:0 20px 60px rgba(23,42,42,.08);overflow:hidden}.route-card::before{content:"";position:absolute;inset:0 0 auto;height:7px;background:var(--green)}.route-service::before{background:var(--yellow)}.route-direct::before{background:var(--blue)}.route-number{font-size:.72rem;font-weight:900;letter-spacing:.12em;color:var(--muted)}.route-card h3{margin:20px 0 0;font-family:var(--serif);font-size:clamp(1.45rem,2.1vw,2rem);line-height:1.08;color:var(--ink)}.route-path{display:flex;align-items:center;justify-content:center;gap:8px;min-height:112px;margin:25px -4px 20px;padding:18px 10px;border-radius:16px;background:#f4f6f1}.route-node{display:grid;place-items:center;min-width:60px;min-height:60px;padding:8px;border-radius:50%;background:white;border:2px solid var(--green);font-size:.72rem;font-weight:850;text-align:center;color:var(--green)}.route-remi{border-color:#bf8c0f;color:#785500}.route-company{min-width:78px;border-radius:14px;border-color:var(--blue);color:#235b79}.route-file{border-radius:12px;border-color:#8d948e;color:#555}.route-arrow{font-size:1.35rem;font-weight:900;color:#81908c}.route-card p{margin:0;color:var(--muted);line-height:1.62}.route-card strong{display:block;margin-top:auto;padding-top:22px;color:var(--ink);font-size:.86rem;line-height:1.45}.flow-privacy-note{display:grid;grid-template-columns:190px 1fr;gap:24px;margin-top:18px;padding:20px 22px;border-left:4px solid var(--yellow);border-radius:0 14px 14px 0;background:rgba(245,231,180,.55)}.flow-privacy-note strong{color:var(--green)}.flow-privacy-note p{margin:0;color:var(--muted);line-height:1.6}
.principle-title h2{font-size:clamp(2.5rem,4vw,4.2rem)}.principle-list{display:grid}.principle-list article{display:grid;grid-template-columns:50px 1fr;gap:20px;padding:28px 0;border-bottom:1px solid var(--line)}.principle-list article>span{color:var(--coral);font-size:.75rem;font-weight:850;letter-spacing:.1em}.principle-list h3{margin:0 0 8px;font-size:1.15rem}.principle-list p{margin:0;color:var(--muted);line-height:1.6}
.cta { min-height:560px;padding:80px;display:grid;justify-items:center;align-content:center;text-align:center;border-radius:30px;background:var(--ink);color:white;position:relative;overflow:hidden}.cta::before,.cta::after{content:"";position:absolute;width:360px;height:360px;border:65px solid rgba(255,255,255,.04);border-radius:50%}.cta::before{left:-190px;top:-180px}.cta::after{right:-160px;bottom:-230px}.cta img{position:absolute;right:5%;top:9%;width:120px;opacity:.8}.cta h2{max-width:900px;font-size:clamp(2.6rem,5vw,5rem)}.cta>p:not(.eyebrow){max-width:660px;margin:24px auto 30px;color:#bdcac8;line-height:1.65}

.site-footer{padding:70px 0 35px;display:grid;grid-template-columns:1fr auto;gap:24px;align-items:center}.brand-footer img{width:40px;height:40px}.site-footer>p{grid-column:1;color:var(--muted);margin:0}.site-footer nav{grid-column:2;grid-row:1/3;display:flex;gap:6px}.site-footer nav button,.site-footer nav a{border:0;background:none;padding:9px;color:var(--muted);font:inherit;font-weight:700;text-decoration:none}.site-footer nav button:hover,.site-footer nav a:hover{color:var(--ink)}.site-footer>small{grid-column:1/3;padding-top:28px;border-top:1px solid var(--line);color:var(--muted)}

.app-dialog { width:100%;max-width:none;height:100%;max-height:none;margin:0;border:0;padding:0;background:rgba(23,42,42,.45);backdrop-filter:blur(9px);color:var(--ink) }
.app-dialog::backdrop{background:rgba(23,42,42,.45);backdrop-filter:blur(9px)}
.dialog-shell{min-height:100%;background:var(--cream);display:flex;flex-direction:column}.dialog-header{min-height:78px;padding:12px clamp(18px,4vw,54px);display:grid;grid-template-columns:1fr minmax(180px,360px) 1fr;align-items:center;border-bottom:1px solid var(--line);background:rgba(255,253,248,.84);position:sticky;top:0;z-index:4}.brand-dialog img{width:42px;height:42px}.dialog-progress{display:grid;gap:7px;text-align:center;color:var(--muted);font-size:.73rem;font-weight:750}.dialog-progress i{height:5px;background:#e7e1d5;border-radius:9px;overflow:hidden}.dialog-progress b{display:block;width:20%;height:100%;background:var(--green-2);transition:width .3s ease}.close-button{justify-self:end;width:44px;height:44px;border:1px solid var(--line);border-radius:50%;background:var(--paper);color:var(--ink);font-size:1.8rem;font-weight:300;line-height:1}
#whistleForm{flex:1;display:flex;flex-direction:column}.wizard-step{display:none;width:min(900px,calc(100% - 40px));margin:auto;padding:64px 0 40px;animation:stepIn .3s ease}.wizard-step.active{display:block}@keyframes stepIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.wizard-intro{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(250px,.75fr);gap:30px;align-items:stretch;margin-bottom:34px}.wizard-copy{text-align:left;align-self:center}.wizard-copy .eyebrow{justify-content:flex-start}.wizard-copy h2,.panel-shell h2{margin:0;font-size:clamp(2.2rem,4.5vw,4.4rem);letter-spacing:-.055em;line-height:1}.wizard-copy>p:last-child,.panel-shell>p{max-width:650px;margin:18px 0 0;color:var(--muted);line-height:1.6}.wizard-step-visual{min-height:190px;margin:0;position:relative;overflow:hidden;border:1px solid var(--line);border-radius:18px;background:var(--paper);box-shadow:0 15px 34px rgba(23,42,42,.1)}.wizard-step-visual img{display:block;width:100%;height:100%;position:absolute;inset:0;object-fit:cover;object-position:center 43%}.wizard-step-visual::after{content:"";position:absolute;inset:45% 0 0;background:linear-gradient(transparent,rgba(12,36,34,.9))}.wizard-step-visual figcaption{position:absolute;z-index:1;left:18px;right:18px;bottom:16px;color:white;line-height:1.3}.wizard-step-visual figcaption strong,.wizard-step-visual figcaption span{display:block}.wizard-step-visual figcaption strong{font-size:.95rem}.wizard-step-visual figcaption span{margin-top:4px;color:#dce9e5;font-size:.76rem}.panel-illustration{display:grid;grid-template-columns:118px 1fr;gap:18px;align-items:center;margin:24px 0;padding:12px;border:1px solid var(--line);border-radius:14px;background:var(--paper)}.panel-illustration img{display:block;width:118px;height:92px;border-radius:10px;object-fit:cover}.panel-illustration figcaption{color:var(--muted);font-size:.86rem;line-height:1.5}.panel-illustration strong{display:block;color:var(--green);font-size:.96rem}
fieldset{border:0;padding:0;margin:0}.choice-grid{display:grid;gap:12px}.choice-grid-two{grid-template-columns:1fr 1fr}.choice-card{min-height:160px;padding:20px;display:grid;grid-template-columns:54px 1fr;grid-template-rows:auto 1fr;column-gap:16px;border:1px solid var(--line);border-radius:14px;background:var(--paper);cursor:pointer;transition:.18s ease}.choice-card:hover{transform:translateY(-2px);box-shadow:0 12px 35px rgba(23,42,42,.07)}.choice-card:has(input:checked){border:2px solid var(--green-2);background:#f4fbf7}.choice-card input{position:absolute;opacity:0}.choice-symbol{grid-row:1/3;width:48px;height:48px;display:grid;place-items:center;border-radius:50%;color:white;font-size:1.2rem;font-weight:850}.choice-symbol.red{background:var(--coral)}.choice-symbol.yellow{background:#bd8513}.choice-symbol.blue{background:var(--blue)}.choice-symbol.green{background:var(--green-2)}.choice-card b{font-size:1.05rem}.choice-card small{margin-top:7px;color:var(--muted);line-height:1.5}.guidance-box{margin-top:16px;padding:18px;border-radius:12px;background:var(--blue-soft);line-height:1.55}
.form-grid{display:grid;gap:18px}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}label>span:first-child{font-weight:750}.form-grid label,.identity-fields label,.recipient-fields>label:not(.consent-check),.risk-scale{display:grid;gap:8px;color:var(--ink)}input,select,textarea{width:100%;border:1px solid #cfc7b9;border-radius:11px;padding:13px 14px;background:var(--paper);color:var(--ink)}textarea{resize:vertical;line-height:1.55}.form-grid label>small,.recipient-fields label>small{justify-self:end;color:var(--muted);font-size:.72rem}.form-grid label>small b{font-weight:inherit}.notice{display:grid;grid-template-columns:30px 1fr;gap:12px;padding:16px;border-radius:12px;background:var(--yellow-soft)}.notice>span{width:26px;height:26px;display:grid;place-items:center;border-radius:50%;background:#bd8513;color:white;font-weight:850}.notice p{margin:0;line-height:1.5;font-size:.85rem}
.identity-options,.check-options{display:grid;gap:11px}.identity-options label,.check-options label,.delivery-card{display:flex;align-items:center;gap:15px;padding:18px;border:1px solid var(--line);border-radius:13px;background:var(--paper);cursor:pointer}.identity-options label:has(input:checked),.check-options label:has(input:checked),.delivery-card:has(input:checked){border-color:var(--green-2);box-shadow:inset 0 0 0 1px var(--green-2);background:#f2faf6}.identity-options input,.check-options input,.delivery-card input,.consent-check input{width:20px;height:20px;accent-color:var(--green-2);flex:0 0 auto}.identity-options span,.check-options span,.delivery-card span{display:grid;gap:4px}.identity-options small,.check-options small,.delivery-card small{color:var(--muted);line-height:1.45}.identity-options em{margin-left:auto;color:var(--green-2);font-size:.72rem;font-style:normal;font-weight:750;text-align:right}.identity-fields{margin-top:14px;padding:18px;border-radius:13px;background:var(--green-soft)}
.risk-scale{margin-top:24px;padding:20px;border:1px solid var(--line);border-radius:13px;background:var(--paper)}.risk-scale input{padding:0;accent-color:var(--coral)}.risk-scale output{font-size:.84rem;color:var(--muted)}.urgent-note{margin-top:14px;padding:17px;border-radius:12px;background:var(--red-soft);border-left:4px solid var(--coral)}.urgent-note p{margin:5px 0 0;font-size:.86rem}
.review-card{padding:24px;border-radius:15px;background:var(--paper);border:1px solid var(--line)}.review-section+ .review-section{margin-top:20px;padding-top:20px;border-top:1px solid var(--line)}.review-section small{display:block;margin-bottom:5px;color:var(--muted);font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.1em}.review-section p{margin:0;white-space:pre-wrap;line-height:1.55}.delivery-choice{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:16px}.recipient-fields{margin-top:14px;padding:20px;display:grid;gap:14px;border-radius:13px;background:var(--blue-soft)}#serviceRouteFields[hidden],#directRouteFields[hidden]{display:none}.consent-check{display:flex;align-items:flex-start;gap:10px;line-height:1.45;font-size:.85rem}.form-message{min-height:1.4em;margin-top:12px;text-align:center;color:var(--coral);font-weight:750}.form-message.success{color:var(--green-2)}
.attestation-option{padding:14px;border:1px solid rgba(44,89,139,.2);border-radius:11px;background:rgba(255,255,255,.58)}.attestation-option[hidden]{display:none}.attestation-option summary{cursor:pointer;font-weight:800}.attestation-option[open]{display:grid;gap:14px}.attestation-option label{display:grid;gap:8px}.attestation-option textarea{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:.75rem}.verification-success{padding:12px;border-radius:10px;background:var(--green-soft);color:var(--green);font-weight:750}
.delivery-card.disabled{cursor:not-allowed;opacity:.52}.delivery-privacy{margin:12px 0 0;padding:12px 14px;border-left:3px solid var(--blue);border-radius:0 10px 10px 0;background:#edf4fb;color:var(--muted);font-size:.9rem;line-height:1.5}.notice[hidden]{display:none}
.wizard-footer{min-height:82px;padding:14px clamp(18px,4vw,54px);display:flex;align-items:center;justify-content:space-between;gap:16px;border-top:1px solid var(--line);background:rgba(255,253,248,.9);position:sticky;bottom:0}.draft-state{color:var(--muted);font-size:.75rem}

.panel-dialog{padding:24px;display:none;place-items:center}.panel-dialog[open]{display:grid}.panel-shell{width:min(600px,100%);max-height:calc(100vh - 48px);overflow:auto;padding:clamp(28px,5vw,52px);border-radius:22px;background:var(--cream);position:relative;box-shadow:var(--shadow)}.wide-panel .panel-shell{width:min(820px,100%)}.panel-shell>.close-button{position:absolute;right:18px;top:18px}.panel-shell>.eyebrow{margin-top:16px}.panel-shell h2{font-size:clamp(2.1rem,4vw,3.7rem)}.panel-shell .form-grid{margin-top:28px}.tracking-result{margin-top:18px}.tracking-card{padding:20px;border-radius:13px;background:var(--paper);border:1px solid var(--line)}.tracking-card h3{margin:0 0 12px}.tracking-meta{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:15px}.tracking-meta div{padding:12px;background:var(--green-soft);border-radius:9px}.tracking-meta small{display:block;color:var(--muted);margin-bottom:3px}
.timeline{display:grid;margin:32px 0}.timeline article{display:grid;grid-template-columns:90px 1fr;gap:20px;padding:20px 0;border-bottom:1px solid var(--line)}.timeline article>span{color:var(--coral);font-size:.75rem;font-weight:850;text-transform:uppercase}.timeline h3{margin:0 0 6px}.timeline p{margin:0;color:var(--muted);line-height:1.55}
.amiq-logo{display:flex;gap:5px;margin-bottom:22px}.amiq-logo i{width:14px;height:28px;border-radius:8px;transform:rotate(35deg)}.amiq-logo i:nth-child(1){background:var(--coral)}.amiq-logo i:nth-child(2){background:var(--blue)}.amiq-logo i:nth-child(3){background:var(--green-2)}.amiq-logo i:nth-child(4){background:var(--yellow)}.amiq-step{display:none;margin-top:28px}.amiq-step.active{display:block}.check-options.compact legend{margin-bottom:12px;font-weight:850}.amiq-footer{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:24px}.amiq-footer>span{color:var(--muted);font-size:.78rem}
.success-panel{text-align:center}.success-mark{width:64px;height:64px;margin:0 auto 20px;display:grid;place-items:center;border-radius:50%;background:var(--green-2);color:white;font-size:1.7rem}.success-panel .eyebrow{justify-content:center}.success-panel h2{margin:0;font-size:clamp(2rem,4vw,3.5rem)}.success-panel>p:not(.eyebrow){color:var(--muted);line-height:1.6}.code-pair{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:24px 0}.code-pair>div{padding:16px;border-radius:12px;background:var(--paper);border:1px solid var(--line)}.code-pair small{display:block;color:var(--muted);margin-bottom:5px}.code-pair strong{font-family:ui-monospace,monospace}.success-panel>.button{width:100%;margin-top:10px}

@media (max-width: 980px){
  .site-header{position:relative;top:0}.menu-button{display:block}.main-nav{display:none;position:absolute;left:0;right:0;top:calc(100% + 8px);padding:12px;flex-direction:column;align-items:stretch;border:1px solid var(--line);border-radius:14px;background:var(--paper);box-shadow:var(--shadow)}.main-nav.open{display:flex}.main-nav a,.main-nav .text-button{text-align:left}.hero{grid-template-columns:1fr;min-height:0;padding-top:70px}.hero-copy{text-align:center}.hero .eyebrow,.hero-actions,.trust-row{justify-content:center}.lead{margin-inline:auto}.hero-visual{min-height:520px;width:min(640px,100%);margin:auto}.step-grid{grid-template-columns:1fr 1fr}.protection{grid-template-columns:1fr}.protection-visual{min-height:460px}.protection-copy{padding:60px}.business-paths{grid-template-columns:1fr}.path-connector{min-height:70px}.path-connector::before{left:24%;right:24%;top:50%;bottom:auto;border-left:0;border-top:1px dashed #b7b0a3}.path-connector span{writing-mode:horizontal-tb}.anonymity-heading{grid-template-columns:1fr;gap:22px}.anonymity-heading .eyebrow{grid-column:1}.anonymity-grid{grid-template-columns:1fr}.principles{grid-template-columns:1fr;gap:35px}.dialog-header{grid-template-columns:1fr auto}.dialog-progress{grid-column:1/3;grid-row:2}.dialog-header>.close-button{grid-column:2;grid-row:1}.wizard-footer{flex-wrap:wrap}.draft-state{order:3;width:100%;text-align:center}
}

@media (max-width: 640px){
  .section-shell{width:min(100% - 28px,1180px)}.site-header{width:calc(100% - 20px);margin-top:10px;min-height:66px}.brand img{width:40px;height:40px}.hero{padding:50px 0}.hero h1{font-size:clamp(3rem,15vw,4.6rem)}.hero-visual{min-height:390px}.visual-label{min-width:140px;padding:10px}.visual-label-top{right:0}.visual-label-bottom{left:0}.trust-row{display:grid;justify-content:start;text-align:left;margin-left:auto;margin-right:auto;width:max-content}.statement{padding:65px 8px}.steps,.business{padding-block:80px}.section-heading{grid-template-columns:1fr;gap:18px}.step-grid{grid-template-columns:1fr}.step-card{min-height:250px}.step-icon{margin:28px 0 20px}.protection{width:100%;border-radius:0}.protection-visual{min-height:380px;overflow:hidden}.orbit-one{width:300px;height:300px}.orbit-two{width:430px;height:430px}.protection-copy{padding:45px 24px}.path-card{padding:24px}.anonymity-promise{width:100%;margin-bottom:70px;padding:55px 22px;border-radius:0}.anonymity-boundary{grid-template-columns:1fr;gap:8px}.flow-explainer{padding-bottom:78px}.flow-explainer-heading{margin-bottom:30px}.flow-explainer-heading h2{font-size:clamp(2.35rem,11vw,3.35rem)}.route-map{grid-template-columns:1fr}.route-card{min-height:330px;padding:24px}.route-path{min-height:96px}.flow-privacy-note{grid-template-columns:1fr;gap:7px;margin-top:18px;padding:18px}.principles{padding:70px 0}.cta{width:100%;border-radius:0;padding:70px 24px}.cta img{width:80px;opacity:.45}.site-footer{grid-template-columns:1fr}.site-footer nav{grid-column:1;grid-row:auto;flex-wrap:wrap}.site-footer>small{grid-column:1}.dialog-header{padding:10px 14px}.brand-dialog>span{display:none}.wizard-step{width:calc(100% - 28px);padding:40px 0 24px}.wizard-intro{grid-template-columns:1fr;gap:18px}.wizard-step-visual{min-height:150px}.wizard-copy{text-align:left}.wizard-copy .eyebrow{justify-content:flex-start}.choice-grid-two,.delivery-choice,.form-row{grid-template-columns:1fr}.choice-card{min-height:140px}.identity-options label{align-items:flex-start}.identity-options em{display:none}.wizard-footer{padding:12px 14px}.wizard-footer .button{flex:1}.panel-dialog{padding:10px}.panel-shell{max-height:calc(100vh - 20px);padding:28px 20px}.panel-shell>.close-button{right:12px;top:12px}.code-pair,.tracking-meta{grid-template-columns:1fr}.panel-illustration{grid-template-columns:92px 1fr}.panel-illustration img{width:92px;height:82px}.timeline article{grid-template-columns:1fr;gap:6px}.amiq-footer{flex-wrap:wrap}.amiq-footer .button{flex:1}
}

.qr-access-options{display:grid;gap:10px;margin:4px 0 0;padding:0;border:0}.qr-access-options legend{margin-bottom:8px;font-weight:800}.qr-access-options label{display:flex;align-items:center;gap:14px;padding:16px;border:1px solid var(--line);border-radius:13px;background:var(--paper);cursor:pointer}.qr-access-options label:has(input:checked){border-color:var(--green-2);box-shadow:inset 0 0 0 1px var(--green-2);background:#f2faf6}.qr-access-options input{width:20px;height:20px;flex:0 0 auto;accent-color:var(--green-2)}.qr-access-options span{display:grid;gap:4px}.qr-access-options small{color:var(--muted);line-height:1.45}.qr-access-options em{margin-left:auto;color:var(--green-2);font-size:.72rem;font-style:normal;font-weight:800}.qr-pin-field{padding:16px;border-radius:13px;background:var(--green-soft)}.qr-pin-field label{display:grid;gap:8px}.qr-resume{display:grid;grid-template-columns:52px 1fr;gap:14px;align-items:center;margin:18px 0;padding:16px;border-radius:14px;background:var(--green-soft)}.qr-resume h3,.qr-resume p{margin:0}.qr-resume p{margin-top:4px;color:var(--muted)}.qr-resume-mark{display:grid;place-items:center;width:52px;height:52px;border-radius:13px;background:var(--green-2);color:white;font-size:1.8rem}.qr-success{display:grid;justify-items:center;gap:16px;margin:22px 0;padding:22px;border:1px solid var(--line);border-radius:18px;background:#f7fbf8}.qr-success-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;width:100%}.qr-success-heading h3{margin:3px 0 0}.qr-success img{display:block;width:min(100%,320px);height:auto;border:12px solid white;border-radius:15px;box-shadow:0 12px 34px rgba(24,42,42,.12);image-rendering:pixelated}.privacy-chip{padding:7px 10px;border-radius:999px;background:var(--green-soft);color:var(--green-2);font-size:.72rem;font-weight:800;white-space:nowrap}.qr-success>p{margin:0;text-align:center}.qr-success .notice{width:100%;text-align:left}.qr-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:10px}.tracking-card-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:15px}

@media (max-width:640px){.qr-access-options label{align-items:flex-start}.qr-access-options em{display:none}.qr-success{padding:16px}.qr-success-heading{display:grid}.qr-actions{display:grid;width:100%}.qr-actions .button{width:100%}}

.case-guidance{margin-top:20px;padding:20px;border:1px solid rgba(44,89,139,.2);border-radius:15px;background:linear-gradient(145deg,#f3f8fc,#fffdf8)}.case-guidance-reporter{border-color:rgba(29,124,89,.24);background:linear-gradient(145deg,#f1faf5,#fffdf8)}.case-guidance .guidance-role{display:block;margin-bottom:7px;color:var(--blue);font-size:.68rem;font-weight:850;letter-spacing:.11em;text-transform:uppercase}.case-guidance-reporter .guidance-role{color:var(--green-2)}.case-guidance h3,.case-guidance h4{margin:0 0 8px;font-size:1.15rem}.case-guidance>p{margin:0;color:var(--muted);line-height:1.55}.case-guidance ul{margin:14px 0;padding-left:20px;display:grid;gap:7px;line-height:1.45}.case-guidance .guidance-avoid{margin:14px 0;padding:12px;border-left:3px solid var(--yellow);border-radius:0 9px 9px 0;background:#fff8e7;color:var(--ink);font-size:.82rem}.guidance-risk{margin:14px 0;padding:12px;border-left:3px solid var(--coral);border-radius:0 9px 9px 0;background:var(--red-soft);font-size:.82rem;line-height:1.5}.guidance-copy-state{display:block;min-height:1.2em;margin-top:8px;color:var(--green-2);font-weight:750}
.illustration-feature{display:grid;grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);gap:clamp(28px,5vw,68px);align-items:center;margin:42px 0 50px}.illustration-feature>img{display:block;width:100%;aspect-ratio:1;object-fit:cover;border-radius:26px;box-shadow:0 22px 55px rgba(23,42,42,.13)}.illustration-feature-reverse>img{grid-column:2}.illustration-feature-reverse>.illustration-copy{grid-column:1;grid-row:1}.illustration-copy{display:grid;gap:14px}.illustration-copy>span{color:var(--coral);font-size:.72rem;font-weight:850;letter-spacing:.12em;text-transform:uppercase}.illustration-copy>strong{font-family:var(--serif);font-size:clamp(1.65rem,3vw,2.6rem);line-height:1.08;letter-spacing:-.035em}.illustration-copy>p{margin:0;color:var(--muted);line-height:1.65}.illustration-feature-dark{margin:44px 0;padding:28px;border:1px solid rgba(255,255,255,.13);border-radius:26px;background:rgba(255,255,255,.055)}.illustration-feature-dark>img{box-shadow:0 24px 64px rgba(0,0,0,.24)}.illustration-feature-dark .illustration-copy>span{color:#f1cc6d}.illustration-feature-dark .illustration-copy>strong{color:white}.illustration-feature-dark .illustration-copy>p{color:#c9d7d3}.protection-visual{margin:0;min-width:0;overflow:hidden;background:#d9e9df}.protection-visual>img{display:block;width:100%;height:100%;min-height:620px;object-fit:cover}
@media (max-width:980px){.illustration-feature{grid-template-columns:1fr;gap:24px}.illustration-feature>img{width:min(620px,100%);margin-inline:auto}.illustration-feature-reverse>img,.illustration-feature-reverse>.illustration-copy{grid-column:1;grid-row:auto}.protection-visual>img{min-height:460px}}
@media (max-width:640px){.illustration-feature{margin:30px 0 38px}.illustration-feature-dark{margin-inline:-4px;padding:14px;border-radius:20px}.illustration-feature>img{border-radius:19px}.illustration-copy>strong{font-size:1.7rem}.protection-visual{min-height:0}.protection-visual>img{min-height:0;aspect-ratio:1;object-fit:cover}.case-guidance{padding:17px}}
.illustration-feature>img{height:auto}

.service-privacy-options{margin-bottom:8px}.service-privacy-options legend{margin-bottom:12px;font-weight:800}.e2e-panel{margin-top:20px;padding:20px;border:1px solid rgba(29,124,89,.24);border-radius:16px;background:#f4faf7}.e2e-status{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:16px}.e2e-status p{margin:0}.e2e-message-list{display:grid;gap:12px;margin:16px 0}.e2e-message{max-width:88%;padding:14px 16px;border:1px solid var(--line);border-radius:15px 15px 15px 4px;background:#fff}.e2e-message.is-own{justify-self:end;border-radius:15px 15px 4px 15px;background:var(--green-soft)}.e2e-message small{color:var(--muted);font-weight:700}.e2e-message p{white-space:pre-wrap}.e2e-message .button{margin-top:8px}.e2e-panel code{overflow-wrap:anywhere;font-size:.8rem}.button-danger{border-color:#a63c32;color:#8b2d25}.button-danger:hover{background:#fff0ed}
@media (max-width:640px){.e2e-panel{padding:15px}.e2e-message{max-width:100%}}

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