@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=JetBrains+Mono:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* ─────────────────────────────────────
   EXACT LOGO PALETTE
   near-black  #141414 — portal frame + wordmark
   amber       #f8a834 — glowing portal inner panel
───────────────────────────────────── */
:root {
  --amber:       #f8a834;
  --amber-dark:  #d4841a;
  --amber-deep:  #a06010;
  --amber-light: #fcc060;
  --amber-pale:  #fff8ee;
  --amber-glow:  rgba(248,168,52,.18);
  --amber-edge:  rgba(248,168,52,.35);

  --ink:         #141414;
  --ink-mid:     #1c1c1c;
  --ink-deep:    #0c0c0c;
  --ink-panel:   #181818;
  --ink-card:    #1e1e1e;
  --ink-raised:  #242424;
  --ink-border:  #2a2a2a;
  --ink-border2: #333333;

  --white:       #ffffff;
  --off-white:   #f5f5f5;
  --text-on-dark:rgba(255,255,255,.82);
  --text-dim:    rgba(255,255,255,.52);
  --text-xdim:   rgba(255,255,255,.28);
  --text-xxdim:  rgba(255,255,255,.12);
  --border-dark: rgba(255,255,255,.07);
  --border-amber:rgba(248,168,52,.22);

  /* Light-mode greys for inner light sections */
  --grey-50:     #f9fafb;
  --grey-100:    #f3f4f6;
  --grey-200:    #e5e7eb;
  --grey-300:    #d1d5db;
  --text-body:   #111827;
  --text-light:  #374151;
  --text-muted:  #6b7280;
  --border-light:#e5e7eb;

  --grad-amber:  linear-gradient(135deg, #f8a834 0%, #d4841a 100%);
  --grad-dark:   linear-gradient(160deg, #0c0c0c 0%, #141414 50%, #1c1c1c 100%);
  --grad-hero:   linear-gradient(160deg, #0c0c0c 0%, #141414 60%, #1a1810 100%);
  --grad-stripe: linear-gradient(90deg, #f8a834, #fcc060, #d4841a);
  --grad-glow:   radial-gradient(ellipse at center, rgba(248,168,52,.15) 0%, transparent 65%);

  --shadow-sm:   0 2px 8px rgba(0,0,0,.4);
  --shadow-md:   0 6px 24px rgba(0,0,0,.5);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.6);
  --shadow-amber:0 8px 40px rgba(248,168,52,.25);
  --shadow-amber-lg:0 16px 60px rgba(248,168,52,.35);

  --font-display:'Manrope', sans-serif;
  --font-mono:   'JetBrains Mono', monospace;

  --radius:      6px;
  --radius-sm:   4px;
  --radius-lg:   12px;
  --radius-xl:   20px;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body { font-family:var(--font-display); background:var(--ink); color:var(--white); overflow-x:hidden; }
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

/* ── BUTTONS ── */
.btn { display:inline-flex; align-items:center; gap:.55rem; font-family:var(--font-display); font-weight:700; font-size:.88rem; letter-spacing:.02em; padding:.78rem 2rem; border-radius:var(--radius); border:none; cursor:pointer; transition:all .22s; }
.btn-amber { background:var(--grad-amber); color:var(--ink); box-shadow:var(--shadow-amber); }
.btn-amber:hover { filter:brightness(1.1); transform:translateY(-2px); box-shadow:var(--shadow-amber-lg); }
.btn-outline-amber { background:transparent; color:var(--amber); border:1.5px solid var(--amber-edge); }
.btn-outline-amber:hover { background:var(--amber-glow); border-color:var(--amber); transform:translateY(-2px); }
.btn-outline-white { background:transparent; color:rgba(255,255,255,.8); border:1.5px solid rgba(255,255,255,.18); }
.btn-outline-white:hover { background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.4); transform:translateY(-2px); }
.btn-dark-solid { background:var(--ink-raised); color:#fff; border:1px solid var(--ink-border2); }
.btn-dark-solid:hover { background:var(--ink-card); border-color:var(--amber-edge); color:var(--amber); transform:translateY(-2px); }
.arr::after { content:' →'; font-family:var(--font-display); }

/* ── NAV ── */
.nav { position:fixed; top:0; left:0; right:0; z-index:1000; height:66px; display:flex; align-items:center; padding:0 2.5rem; justify-content:space-between; background:rgba(12,12,12,.92); backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px); border-bottom:1px solid var(--ink-border); transition:all .3s; }
.nav::after { content:''; position:absolute; bottom:0; left:0; right:0; height:1px; background:var(--grad-stripe); opacity:.45; }
.nav.scrolled { background:rgba(12,12,12,.98); box-shadow:0 4px 32px rgba(0,0,0,.7); }
.nav-logo img { height:32px; filter:brightness(0) invert(1); }
.nav-links { display:flex; align-items:center; gap:2rem; }
.nav-links a { font-family:var(--font-display); font-weight:600; font-size:.85rem; color:rgba(255,255,255,.48); letter-spacing:.01em; transition:color .2s; position:relative; }
.nav-links a::after { content:''; position:absolute; bottom:-5px; left:0; width:0; height:1.5px; background:var(--amber); border-radius:2px; transition:width .28s; }
.nav-links a:hover, .nav-links a.active { color:#fff; }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-cta { background:var(--amber) !important; color:var(--ink) !important; padding:.4rem 1.3rem; border-radius:var(--radius); font-weight:700; }
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--amber-light) !important; transform:translateY(-1px); box-shadow:var(--shadow-amber); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:24px; height:1.5px; background:rgba(255,255,255,.7); border-radius:1px; transition:all .3s; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(4.5px,4.5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(4.5px,-4.5px); }
.mobile-menu { display:none; flex-direction:column; background:var(--ink-panel); border-bottom:1px solid var(--ink-border); padding:1.5rem 2.5rem; gap:.5rem; }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-family:var(--font-display); font-weight:600; font-size:.9rem; color:rgba(255,255,255,.55); padding:.65rem 0; border-bottom:1px solid var(--ink-border); transition:color .2s; }
.mobile-menu a:hover { color:var(--amber); }

/* ── HERO ── */
.hero { min-height:100vh; background:var(--grad-hero); display:flex; align-items:center; position:relative; overflow:hidden; padding-top:66px; }

/* Subtle grid texture */
.hero-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(248,168,52,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(248,168,52,.04) 1px, transparent 1px); background-size:60px 60px; pointer-events:none; }

/* Ambient glow behind portal */
.hero-halo { position:absolute; right:10%; top:50%; transform:translateY(-50%); width:520px; height:520px; background:var(--grad-glow); border-radius:50%; pointer-events:none; filter:blur(40px); }

.hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; padding:4rem 5rem 6rem; max-width:1400px; margin:0 auto; width:100%; position:relative; z-index:1; }

/* Terminal eyebrow */
.h-term { display:inline-flex; align-items:center; gap:.65rem; font-family:var(--font-mono); font-size:.75rem; font-weight:400; color:var(--amber); margin-bottom:1.5rem; animation:fadeUp .5s both; letter-spacing:.02em; }
.h-term-cursor { display:inline-block; width:8px; height:14px; background:var(--amber); border-radius:1px; animation:blink 1.2s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes fadeUp { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeRight { from{opacity:0;transform:translateX(16px)} to{opacity:1;transform:translateX(0)} }

.hero-h1 { font-family:var(--font-display); font-weight:800; font-size:clamp(2.6rem,4vw,4.8rem); line-height:1.06; color:#fff; margin-bottom:1.4rem; letter-spacing:-.04em; animation:fadeUp .5s .1s both; }
.hero-h1 .amber { color:var(--amber); }
.hero-h1 em { font-style:normal; background:linear-gradient(90deg, #f8a834, #fcc060); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

.hero-sub { font-size:1rem; line-height:1.8; color:var(--text-on-dark); max-width:440px; margin-bottom:2.5rem; animation:fadeUp .5s .2s both; font-weight:400; }
.hero-actions { display:flex; gap:.85rem; flex-wrap:wrap; margin-bottom:3rem; animation:fadeUp .5s .3s both; }

/* Tech stack pills */
.stack-row { display:flex; flex-wrap:wrap; gap:.5rem; animation:fadeUp .5s .4s both; }
.stack-pill { font-family:var(--font-mono); font-size:.65rem; font-weight:500; color:var(--text-dim); background:var(--ink-raised); border:1px solid var(--ink-border2); border-radius:3px; padding:.22rem .65rem; letter-spacing:.04em; transition:all .22s; }
.stack-pill:hover { color:var(--amber); border-color:var(--amber-edge); background:var(--amber-glow); }

/* ── LAYOUT ── */
.container { max-width:1280px; margin:0 auto; padding:0 2.5rem; }
.container-narrow { max-width:1060px; margin:0 auto; padding:0 2.5rem; }
.section-pad { padding:7rem 0; }

/* Terminal eyebrow for sections */
.s-term { display:inline-flex; align-items:center; gap:.5rem; font-family:var(--font-mono); font-size:.68rem; font-weight:400; color:var(--amber); margin-bottom:.9rem; letter-spacing:.04em; }
.s-term::before { content:'//'; opacity:.5; }

.s-title { font-family:var(--font-display); font-weight:800; font-size:clamp(1.9rem,3.2vw,2.9rem); line-height:1.08; color:var(--white); margin-bottom:1rem; letter-spacing:-.04em; }
.s-title .amber { color:var(--amber); }
.s-title .grad { background:linear-gradient(90deg, #f8a834, #fcc060); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.s-title.dark { color:var(--text-body); }
.s-title.dark .amber { color:var(--amber-dark); }
.s-sub { font-size:1rem; line-height:1.8; color:var(--text-dim); max-width:520px; font-weight:400; }
.s-sub.light { color:var(--text-light); }

/* ── GLASS SERVICE CARDS ── */
.glass-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--ink-border); border:1px solid var(--ink-border); border-radius:var(--radius-lg); overflow:hidden; margin-top:3rem; }
.glass-card { background:var(--ink-panel); padding:2.5rem; transition:all .32s; position:relative; overflow:hidden; }
.glass-card::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at top left, rgba(248,168,52,.06) 0%, transparent 60%); opacity:0; transition:opacity .3s; }
.glass-card:hover { background:var(--ink-card); }
.glass-card:hover::before { opacity:1; }
.glass-card:hover .gc-ico-wrap { border-color:var(--amber-edge); box-shadow:var(--shadow-amber); }
.gc-ico-wrap { width:48px; height:48px; background:var(--ink-raised); border:1px solid var(--ink-border2); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin-bottom:1.25rem; transition:all .3s; }
.gc-num { font-family:var(--font-mono); font-size:.65rem; color:var(--text-xdim); margin-bottom:.5rem; letter-spacing:.06em; }
.gc-name { font-family:var(--font-display); font-weight:700; font-size:1rem; color:#fff; margin-bottom:.5rem; letter-spacing:-.02em; }
.gc-desc { font-size:.87rem; line-height:1.7; color:var(--text-dim); }
.gc-link { display:inline-flex; align-items:center; gap:.35rem; font-family:var(--font-mono); font-size:.7rem; color:var(--amber); margin-top:1rem; transition:gap .2s; letter-spacing:.02em; }
.glass-card:hover .gc-link { gap:.6rem; }

/* ── ABOUT: LIGHT SECTION ── */
.about-section { background:var(--grey-50); padding:7rem 0; position:relative; overflow:hidden; }
.about-section::before { content:''; position:absolute; bottom:-1px; left:0; right:0; height:70px; background:var(--ink); clip-path:polygon(0 100%,100% 18%,100% 100%); }
.about-inner { display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; }

/* Code snippet card */
.code-card { background:var(--ink); border:1px solid var(--ink-border2); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); }
.code-header { display:flex; align-items:center; gap:.6rem; padding:.75rem 1rem; background:var(--ink-panel); border-bottom:1px solid var(--ink-border); }
.code-dot { width:10px; height:10px; border-radius:50%; }
.code-dot.red { background:#ff5f57; }
.code-dot.yellow { background:#febc2e; }
.code-dot.green { background:#28c840; }
.code-filename { font-family:var(--font-mono); font-size:.72rem; color:var(--text-xdim); margin-left:.25rem; }
.code-body { padding:1.5rem; font-family:var(--font-mono); font-size:.8rem; line-height:1.9; overflow:hidden; }
.code-ln { display:flex; gap:1.5rem; }
.ln-num { color:rgba(255,255,255,.12); user-select:none; width:18px; text-align:right; flex-shrink:0; }
.ln-code { color:rgba(255,255,255,.72); }
.c-kw { color:#f8a834; }
.c-fn { color:#88d4f8; }
.c-str { color:#a8e890; }
.c-cm { color:rgba(255,255,255,.25); font-style:italic; }
.c-var { color:#e8c4ff; }
.c-num { color:#fcc060; }
.c-op { color:rgba(255,255,255,.45); }

/* Capability badges */
.cap-badges { display:flex; flex-direction:column; gap:.6rem; margin-top:2rem; }
.cap-badge { display:flex; align-items:center; justify-content:space-between; padding:.85rem 1.2rem; border:1px solid var(--border-light); border-radius:var(--radius); background:var(--white); transition:all .25s; }
.cap-badge:hover { border-color:var(--amber-dark); box-shadow:0 4px 16px rgba(248,168,52,.12); transform:translateX(4px); }
.cb-left { display:flex; align-items:center; gap:.8rem; }
.cb-ico { font-size:1.1rem; }
.cb-name { font-family:var(--font-display); font-weight:700; font-size:.9rem; color:var(--text-body); }
.cb-tag { font-family:var(--font-mono); font-size:.65rem; color:var(--amber-deep); background:var(--amber-pale); padding:.18rem .6rem; border-radius:3px; font-weight:500; }

/* ── AMBER STAT BAND ── */
.amber-band { background:var(--amber); padding:4rem 0; position:relative; overflow:hidden; }
.amber-band::before { content:''; position:absolute; inset:0; background-image:repeating-linear-gradient(90deg, rgba(0,0,0,.04) 0, rgba(0,0,0,.04) 1px, transparent 1px, transparent 60px); pointer-events:none; }
.ab-inner { display:grid; grid-template-columns:repeat(4,1fr); position:relative; z-index:1; }
.ab-cell { text-align:center; padding:1.5rem 1rem; border-right:1px solid rgba(0,0,0,.1); }
.ab-cell:last-child { border-right:none; }
.ab-num { font-family:var(--font-mono); font-weight:700; font-size:2.8rem; color:var(--ink); line-height:1; letter-spacing:-.05em; }
.ab-lbl { font-family:var(--font-display); font-size:.64rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:rgba(0,0,0,.55); margin-top:.3rem; }

/* ── SERVICE DETAIL ROWS (DARK) ── */
.svc-dark-rows { background:var(--ink); }
.svc-dark-row { display:grid; grid-template-columns:1fr 1fr; border-bottom:1px solid var(--ink-border); }
.svc-dark-row:last-child { border-bottom:none; }
.sdr-text { padding:4.5rem; }
.sdr-visual { background:var(--ink-panel); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:.75rem; position:relative; overflow:hidden; min-height:300px; border-left:1px solid var(--ink-border); }
.sdr-vis-ico { font-size:5rem; position:relative; z-index:1; }
.sdr-vis-ghost { position:absolute; font-family:var(--font-mono); font-weight:700; font-size:5.5rem; color:rgba(248,168,52,.04); bottom:.5rem; right:1rem; line-height:1; letter-spacing:-.02em; }
.sdr-vis-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(248,168,52,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(248,168,52,.03) 1px, transparent 1px); background-size:40px 40px; }
.sdr-eyebrow { font-family:var(--font-mono); font-size:.66rem; font-weight:500; color:var(--amber); margin-bottom:.7rem; letter-spacing:.06em; }
.sdr-eyebrow::before { content:'> '; opacity:.5; }
.sdr-title { font-family:var(--font-display); font-weight:800; font-size:clamp(1.7rem,2.8vw,2.3rem); color:#fff; margin-bottom:1rem; line-height:1.08; letter-spacing:-.04em; }
.sdr-desc { font-size:.97rem; line-height:1.8; color:var(--text-dim); margin-bottom:1.5rem; }
.sdr-list { display:flex; flex-direction:column; gap:.4rem; margin-bottom:1.75rem; }
.sdr-list li { display:flex; align-items:flex-start; gap:.7rem; font-size:.9rem; color:var(--text-on-dark); }
.sdr-list li::before { content:'→'; font-family:var(--font-mono); font-size:.8rem; color:var(--amber); flex-shrink:0; opacity:.7; margin-top:.05rem; }
.tag-row { display:flex; flex-wrap:wrap; gap:.4rem; }
.stag { background:var(--ink-raised); border:1px solid var(--ink-border2); color:var(--text-dim); padding:.2rem .7rem; border-radius:3px; font-family:var(--font-mono); font-size:.65rem; font-weight:400; letter-spacing:.04em; }
.svc-dark-row:nth-child(even) .sdr-text { order:2; }
.svc-dark-row:nth-child(even) .sdr-visual { order:1; border-left:none; border-right:1px solid var(--ink-border); }

/* ── IND GRID ── */
.ind-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--ink-border); border:1px solid var(--ink-border); border-radius:var(--radius-lg); overflow:hidden; margin-top:3rem; }
.ind-card { background:var(--ink-panel); padding:2rem; transition:all .3s; }
.ind-card:hover { background:var(--ink-card); }
.ind-card:hover .ii-name { color:var(--amber); }
.ii-ico { font-size:1.6rem; margin-bottom:.65rem; }
.ii-name { font-family:var(--font-display); font-weight:700; font-size:.95rem; color:#fff; margin-bottom:.3rem; letter-spacing:-.01em; transition:color .2s; }
.ii-desc { font-size:.83rem; color:var(--text-dim); line-height:1.65; }

/* ── CERT GRID ── */
.cert-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--ink-border); border:1px solid var(--ink-border); border-radius:var(--radius-lg); overflow:hidden; margin-top:3rem; }
.cert-card { background:var(--ink-panel); padding:2rem; position:relative; overflow:hidden; transition:all .28s; }
.cert-card:hover { background:var(--ink-card); }
.cert-top { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:.6rem; }
.cert-name { font-family:var(--font-mono); font-weight:700; font-size:1.2rem; color:var(--amber); letter-spacing:-.01em; }
.cert-badge { font-family:var(--font-mono); font-size:.6rem; color:rgba(248,168,52,.6); background:var(--amber-glow); border:1px solid var(--amber-edge); padding:.15rem .5rem; border-radius:3px; }
.cert-full { font-size:.68rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--text-xdim); margin-bottom:.65rem; }
.cert-desc { font-size:.86rem; color:var(--text-dim); line-height:1.65; }

/* ── CTA ── */
.cta-section { background:var(--ink); padding:7rem 2.5rem; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:600px; background:var(--grad-glow); border-radius:50%; pointer-events:none; filter:blur(60px); }
.cta-section::after { content:''; position:absolute; top:-1px; left:0; right:0; height:60px; background:var(--grey-50); clip-path:polygon(0 0,100% 60%,100% 0); }
.cta-section.after-dark::after { background:var(--ink); }
.cta-section.after-white::after { background:var(--off-white); }
.cta-inner { text-align:center; position:relative; z-index:1; max-width:660px; margin:0 auto; }
.cta-title { font-family:var(--font-display); font-weight:800; font-size:clamp(2rem,4vw,3.5rem); line-height:1.08; color:#fff; margin-bottom:.8rem; letter-spacing:-.05em; }
.cta-title .amber { color:var(--amber); }
.cta-title .grad { background:linear-gradient(90deg, #f8a834, #fcc060); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.cta-sub { font-size:1rem; color:var(--text-dim); margin-bottom:2.25rem; }

/* ── PAGE HERO ── */
.page-hero { background:var(--grad-hero); padding:9rem 2.5rem 5.5rem; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(248,168,52,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(248,168,52,.03) 1px, transparent 1px); background-size:60px 60px; pointer-events:none; }
.page-hero::after { content:''; position:absolute; bottom:-1px; left:0; right:0; height:60px; background:var(--grey-50); clip-path:polygon(0 100%,100% 0,100% 100%); }
.page-hero.after-ink::after { background:var(--ink); }
.page-hero.after-white::after { background:var(--off-white); }
.ph-stripe { position:absolute; top:0; left:0; right:0; height:2px; background:var(--grad-stripe); opacity:.7; }
.ph-inner { max-width:1280px; margin:0 auto; position:relative; z-index:1; }
.breadcrumb { display:flex; gap:.4rem; font-family:var(--font-mono); font-size:.66rem; color:var(--text-xdim); margin-bottom:1.5rem; font-weight:400; letter-spacing:.06em; }
.breadcrumb a { color:var(--text-xdim); transition:color .2s; }
.breadcrumb a:hover { color:var(--amber); }
.breadcrumb .sep { color:rgba(255,255,255,.08); }
.page-hero h1 { font-family:var(--font-display); font-weight:800; font-size:clamp(2.8rem,5.5vw,5rem); line-height:1.05; color:#fff; margin-bottom:1rem; letter-spacing:-.05em; }
.page-hero h1 .amber { color:var(--amber); }
.page-hero h1 .grad { background:linear-gradient(90deg,#f8a834,#fcc060); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.page-hero .ph-sub { font-size:1.05rem; color:var(--text-dim); max-width:520px; line-height:1.75; }

/* ── CONTACT ── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.ci-block { display:flex; gap:1.1rem; align-items:flex-start; padding:1.2rem; border-radius:var(--radius); border:1px solid var(--ink-border2); background:var(--ink-panel); transition:all .25s; margin-bottom:.85rem; }
.ci-block:hover { border-color:var(--amber-edge); background:var(--ink-card); }
.ci-ico { width:38px; height:38px; background:var(--amber-glow); border:1px solid var(--amber-edge); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ci-lbl { font-family:var(--font-mono); font-size:.62rem; font-weight:500; color:var(--amber); margin-bottom:.28rem; letter-spacing:.1em; text-transform:uppercase; }
.ci-val { font-size:.94rem; color:var(--text-on-dark); line-height:1.55; }
.ci-val a { color:var(--amber-light); transition:color .2s; }
.ci-val a:hover { color:var(--amber); }

/* FAQ */
.faq-item { border-bottom:1px solid var(--ink-border2); }
.faq-q { display:flex; justify-content:space-between; align-items:center; gap:1rem; padding:1.3rem 0; cursor:pointer; font-family:var(--font-display); font-weight:700; font-size:.93rem; color:rgba(255,255,255,.75); transition:color .2s; }
.faq-q:hover { color:var(--amber); }
.faq-tog { width:26px; height:26px; border-radius:var(--radius-sm); border:1px solid var(--ink-border2); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--amber); font-family:var(--font-mono); font-size:.9rem; font-weight:700; transition:all .25s; }
.faq-item.open .faq-tog { background:var(--amber); border-color:var(--amber); color:var(--ink); transform:rotate(45deg); }
.faq-ans { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-item.open .faq-ans { max-height:200px; }
.faq-ans p { font-size:.92rem; color:var(--text-dim); line-height:1.7; padding-bottom:1.2rem; }

/* ── POLICY ── */
.pol-layout { display:grid; grid-template-columns:200px 1fr; gap:5rem; }
.pol-sidebar { position:sticky; top:88px; }
.pol-nav-ttl { font-family:var(--font-mono); font-size:.64rem; font-weight:500; letter-spacing:.2em; text-transform:uppercase; color:var(--text-xdim); margin-bottom:1rem; }
.pol-nav a { display:block; font-size:.84rem; color:var(--text-dim); padding:.3rem 0 .3rem .8rem; border-left:1px solid var(--ink-border2); transition:all .2s; margin-bottom:.2rem; }
.pol-nav a:hover { color:var(--amber); border-left-color:var(--amber); }
.pol-body h2 { font-family:var(--font-display); font-weight:700; font-size:1.2rem; color:#fff; margin:3rem 0 .8rem; padding-bottom:.5rem; border-bottom:1px solid var(--ink-border2); letter-spacing:-.02em; }
.pol-body p,.pol-body li { font-size:.93rem; line-height:1.8; color:var(--text-dim); margin-bottom:.85rem; }
.pol-body ul { margin:.6rem 0 .85rem 1.2rem; }
.pol-body strong { color:rgba(255,255,255,.8); }
.pol-body a { color:var(--amber-light); }

/* ── FOOTER ── */
footer { background:var(--ink-deep); }
.foot-amber-bar { height:2px; background:var(--grad-stripe); opacity:.6; }
.foot-grid { display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr; gap:4rem; padding:5rem 0 3.5rem; border-bottom:1px solid var(--ink-border); margin-bottom:2rem; }
.foot-brand img { height:30px; margin-bottom:1.2rem; filter:brightness(0) invert(1); }
.foot-brand p { font-size:.86rem; line-height:1.7; color:rgba(255,255,255,.5); margin-bottom:1rem; }
.foot-brand address { font-style:normal; font-size:.82rem; color:rgba(255,255,255,.35); line-height:1.8; }
.foot-col-ttl { font-family:var(--font-mono); font-size:.62rem; font-weight:500; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.25); margin-bottom:1.2rem; }
.foot-links { display:flex; flex-direction:column; gap:.55rem; }
.foot-links a { font-size:.86rem; color:rgba(255,255,255,.5); transition:color .2s; }
.foot-links a:hover { color:var(--amber); }
.foot-btm { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; padding-bottom:2.5rem; }
.foot-btm p,.foot-btm a { font-size:.78rem; color:rgba(255,255,255,.28); }
.foot-btm a:hover { color:var(--amber); }
.foot-btm-links { display:flex; gap:2rem; }
.foot-accent { color:var(--amber); }

/* ── BACK TO TOP ── */
.back-to-top { position:fixed; bottom:2rem; right:2rem; width:44px; height:44px; background:var(--amber); border:none; border-radius:var(--radius); cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-amber); opacity:0; transform:translateY(12px); transition:opacity .3s,transform .3s; z-index:999; pointer-events:none; }
.back-to-top.visible { opacity:1; transform:translateY(0); pointer-events:auto; }
.back-to-top:hover { background:var(--amber-light); transform:translateY(-3px) !important; box-shadow:var(--shadow-amber-lg); }
.back-to-top svg { width:18px; height:18px; stroke:var(--ink); stroke-width:2.5; fill:none; stroke-linecap:round; stroke-linejoin:round; }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .6s ease,transform .6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}

/* ── RESPONSIVE ── */
@media(max-width:1100px){
  .hero-inner{grid-template-columns:1fr;gap:3rem;padding:4rem 3rem 5rem;}.about-inner{grid-template-columns:1fr;gap:3rem;}.contact-grid{grid-template-columns:1fr;gap:2.5rem;}.pol-layout{grid-template-columns:1fr;}.pol-sidebar{display:none;}.foot-grid{grid-template-columns:1fr 1fr;gap:3rem;}.svc-dark-row{grid-template-columns:1fr;}.sdr-visual{min-height:160px;border-left:none !important;border-right:none !important;border-top:1px solid var(--ink-border);}.svc-dark-row:nth-child(even) .sdr-text,.svc-dark-row:nth-child(even) .sdr-visual{order:unset;}.sdr-text{padding:3rem 2rem;}.glass-grid{grid-template-columns:1fr 1fr;}.cert-grid{grid-template-columns:1fr 1fr;}.ind-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:768px){
  .nav-links{display:none;}.hamburger{display:flex;}.ab-inner{grid-template-columns:1fr 1fr;}.ab-cell{border-right:none;border-bottom:1px solid rgba(0,0,0,.1);}.ab-cell:nth-child(odd){border-right:1px solid rgba(0,0,0,.1);}.glass-grid{grid-template-columns:1fr;}.ind-grid{grid-template-columns:1fr 1fr;}.cert-grid{grid-template-columns:1fr;}.foot-grid{grid-template-columns:1fr;}.foot-btm{flex-direction:column;text-align:center;}.section-pad{padding:4.5rem 0;}.cta-section{padding:5rem 1.5rem;}
}
@media(max-width:480px){
  .ind-grid{grid-template-columns:1fr;}.ab-inner{grid-template-columns:1fr;}
}
