/* ============================================================
   DRONNY — Premium Light Theme · 3D Dynamic
   Snow White #F8FAFF · Navy #0A1628 · Teal #00C2B8 · Blue #2E7CF6
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #F4F7FF;
  --bg-2:      #EEF3FF;
  --bg-3:      #E6EEFF;
  --navy:      #0A1628;
  --navy-2:    #162240;
  --teal:      #00B8AD;
  --teal-lt:   #00D4C8;
  --teal-dim:  rgba(0,184,173,.1);
  --blue:      #2E7CF6;
  --blue-dim:  rgba(46,124,246,.08);
  --white:     #FFFFFF;
  --grey:      #6B7A99;
  --grey-lt:   #A8B4CC;
  --border:    rgba(10,22,40,.08);
  --border-md: rgba(10,22,40,.12);
  --shadow-sm: 0 2px 12px rgba(10,22,40,.06);
  --shadow-md: 0 8px 40px rgba(10,22,40,.1);
  --shadow-lg: 0 20px 80px rgba(10,22,40,.14);
  --sans:      'Syne', sans-serif;
  --body:      'Inter', sans-serif;
  --ease:      cubic-bezier(.25,.46,.45,.94);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--navy);
  font-family: var(--body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
em { font-style: normal; color: var(--teal); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--navy); color: var(--white);
  font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .06em;
  padding: .9rem 2rem; border-radius: 6px; border: none; cursor: pointer;
  transition: all .28s var(--ease);
  box-shadow: 0 4px 24px rgba(10,22,40,.18), 0 1px 3px rgba(10,22,40,.1);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent);
  opacity: 0; transition: opacity .28s ease;
}
.btn-primary:hover {
  background: var(--navy-2);
  box-shadow: 0 8px 40px rgba(10,22,40,.28), 0 2px 8px rgba(10,22,40,.15);
  transform: translateY(-2px);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary.btn-lg { padding: 1.05rem 2.6rem; font-size: .9rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .45rem;
  background: transparent; color: var(--navy);
  font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  padding: .9rem 1.8rem; border-radius: 6px;
  border: 1.5px solid var(--border-md);
  transition: all .25s var(--ease);
}
.btn-ghost:hover {
  background: var(--white);
  border-color: rgba(10,22,40,.2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.btn-cta {
  display: inline-flex; align-items: center;
  background: var(--teal); color: var(--white);
  font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  padding: .6rem 1.4rem; border-radius: 5px;
  transition: all .22s var(--ease);
  box-shadow: 0 2px 12px rgba(0,184,173,.25);
}
.btn-cta:hover {
  background: var(--teal-lt);
  box-shadow: 0 4px 20px rgba(0,184,173,.4);
  transform: translateY(-1px);
}

/* ── NAV ──────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s ease, box-shadow .4s ease;
}
#nav.scrolled {
  background: rgba(244,247,255,.92);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(10,22,40,.06);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 2.5rem;
  height: 68px;
}

/* LOGO — full colour on light bg, inverted only in dark sections */
.logo-img {
  height: 34px; width: auto; object-fit: contain;
  /* Keep original colours — no filter */
}

.nav-links { display: flex; gap: 2rem; list-style: none; margin-left: auto; }
.nav-links a {
  font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  color: rgba(10,22,40,.55); transition: color .2s;
}
.nav-links a:hover { color: var(--teal); }

.burger {
  display: none; background: none; border: 1.5px solid var(--border-md);
  border-radius: 5px; padding: .4rem .5rem; cursor: pointer; flex-direction: column; gap: 4px;
}
.burger span { display: block; width: 18px; height: 1.5px; background: var(--navy); border-radius: 2px; }
.mobile-menu {
  display: none; flex-direction: column;
  background: rgba(244,247,255,.97); border-top: 1px solid var(--border);
  backdrop-filter: blur(24px);
  box-shadow: 0 8px 24px rgba(10,22,40,.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 1rem 1.5rem; font-family: var(--sans); font-size: .9rem; font-weight: 500;
  color: var(--navy); border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover { color: var(--teal); background: var(--teal-dim); }
.mobile-cta {
  margin: .8rem 1.5rem 1.2rem;
  padding: .8rem 1.5rem; border: none; display: inline-flex;
  border-radius: 6px; text-align: center; justify-content: center;
}

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

/* Animated gradient orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,184,173,.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46,124,246,.08) 0%, transparent 70%);
  bottom: 0; left: 10%;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,184,173,.06) 0%, transparent 70%);
  top: 30%; left: 35%;
  animation-delay: -7s;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  33%      { transform: translateY(-30px) scale(1.05); }
  66%      { transform: translateY(20px) scale(.97); }
}

/* Subtle grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,22,40,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,22,40,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Canvas */
#bgCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .7; pointer-events: none;
}

/* Ireland map */
.map-wrap {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: min(50%, 560px);
  pointer-events: none;
}
.map-svg { width: 100%; height: auto; }
.ire-shape {
  fill: rgba(0,184,173,.04);
  stroke: rgba(0,184,173,.18);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 20px rgba(0,184,173,.1));
}
.corridor {
  stroke: var(--teal); stroke-width: 1.2; fill: none;
  opacity: .4; stroke-linecap: round;
  animation: dashFlow 3s linear infinite;
}
.corridor:nth-child(2) { animation-duration: 4s; opacity:.3; }
.corridor:nth-child(3) { animation-duration: 3.5s; opacity:.35; }
.corridor:nth-child(4) { animation-duration: 5s; opacity:.25; }
.corridor:nth-child(5) { animation-duration: 4.5s; opacity:.3; }
@keyframes dashFlow { to { stroke-dashoffset: -26; } }

.hub-ring { fill: none; }
.hub-ring.r3 { stroke: rgba(0,184,173,.08); stroke-width:1; animation: ringPulse 3s ease-out infinite; }
.hub-ring.r2 { stroke: rgba(0,184,173,.15); stroke-width:1; animation: ringPulse 3s ease-out .6s infinite; }
.hub-ring.r1 { stroke: rgba(0,184,173,.3);  stroke-width:1.5; }
.hub-core { fill: var(--teal); filter: drop-shadow(0 0 6px rgba(0,184,173,.8)); }
.hub-text { fill: rgba(10,22,40,.5); font-family: var(--sans); font-size:11px; font-weight:600; text-anchor:middle; letter-spacing:.08em; }
@keyframes ringPulse { 0%{opacity:.8} 100%{opacity:0;r:52} }

.dest-node { fill: var(--blue); opacity:.65; filter: drop-shadow(0 0 4px rgba(46,124,246,.5)); }
.dest-node.dn-teal { fill: var(--teal); }
.dest-node.dn-pulse { animation: nodePulse 2s ease infinite; }
@keyframes nodePulse { 0%,100%{opacity:.65} 50%{opacity:1} }

.dot-move { fill: var(--teal); filter: drop-shadow(0 0 5px rgba(0,184,173,.9)); }
.dot-move.dot-blue { fill: var(--blue); }

.grid-line { stroke: rgba(10,22,40,.04); stroke-width:.5; }

/* Hero text */
.hero-content {
  position: relative; z-index: 10;
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  padding-top: 68px;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--teal-dim); border: 1px solid rgba(0,184,173,.25);
  border-radius: 20px; padding: .32rem 1rem;
  font-family: var(--sans); font-size: .7rem; font-weight: 600; letter-spacing: .1em;
  color: var(--teal); margin-bottom: 2rem;
  animation: fadeUp .7s var(--ease) both;
  box-shadow: 0 2px 10px rgba(0,184,173,.1);
}
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: blink 2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero-h1 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(2.8rem, 5.2vw, 5rem); line-height: 1.06;
  color: var(--navy); margin-bottom: 1.4rem; max-width: 620px;
  animation: fadeUp .7s var(--ease) .15s both;
  letter-spacing: -.025em;
}
/* 3D text effect on hover */
.hero-h1 { transform-style: preserve-3d; transition: transform .4s var(--ease); }
.hero-h1:hover { transform: perspective(600px) rotateX(2deg) rotateY(-1deg); }

.hero-sub {
  font-size: clamp(.95rem, 1.4vw, 1.08rem); color: var(--grey);
  line-height: 1.8; max-width: 500px; margin-bottom: .8rem;
  animation: fadeUp .7s var(--ease) .3s both;
}
.hero-micro {
  font-size: .78rem; color: var(--grey-lt); font-style: italic; margin-bottom: 2.5rem;
  animation: fadeUp .7s var(--ease) .4s both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .7s var(--ease) .5s both;
}

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  opacity: .4; animation: fadeUp 1s .9s both;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--teal), transparent); animation: scrollAnim 1.6s ease infinite; }
.scroll-hint span { font-size: .6rem; font-family: var(--sans); letter-spacing: .2em; color: var(--grey); }
@keyframes scrollAnim { 0%{height:0;opacity:1} 100%{height:40px;opacity:0} }
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* ── TRUST STRIP ──────────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  padding: 1.25rem 0;
}
.trust-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .8rem 2rem;
}
.trust-tag {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .07em;
  color: rgba(10,22,40,.45);
}
.tt-icon { color: var(--teal); font-size: .85rem; }
.trust-sep { width: 1px; height: 14px; background: var(--border); flex-shrink: 0; }

/* ── SECTION BASE ─────────────────────────────────────────── */
.brand-section,
.cards-section,
.roadmap-section,
.closing-section,
.contact-section { width: 100%; }

.brand-eyebrow {
  font-family: var(--sans); font-size: .65rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1.2rem; display: block;
}
.brand-eyebrow.dim { opacity: .6; }

/* ── BRAND STATEMENT ──────────────────────────────────────── */
.brand-section { background: var(--bg-2); }
.brand-inner {
  max-width: 860px; margin: 0 auto; padding: 9rem 2rem; text-align: center;
}
.brand-h2 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.1;
  letter-spacing: -.025em; color: var(--navy); margin-bottom: 1.6rem;
}
.brand-h2 em { color: var(--teal); }
.brand-body {
  font-size: 1.05rem; color: var(--grey); line-height: 1.9; max-width: 560px; margin: 0 auto 2.5rem;
}
.brand-line {
  width: 48px; height: 2px; background: linear-gradient(90deg, var(--teal), var(--blue));
  margin: 0 auto; border-radius: 2px;
  box-shadow: 0 0 12px rgba(0,184,173,.4);
}

/* ── CARDS ─────────────────────────────────────────────────── */
.cards-section { background: var(--bg); padding: 8rem 2rem; }
.cards-eyebrow {
  font-family: var(--sans); font-size: .65rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: var(--teal); opacity: .7;
  text-align: center; margin-bottom: 3rem;
}
.cards-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  perspective: 1600px;
}

.tease-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 3rem 2.4rem 2.8rem;
  position: relative; overflow: hidden;
  transition: all .35s var(--ease);
  transform-style: preserve-3d;
  cursor: default;
  box-shadow: var(--shadow-sm);
}
/* Top accent bar */
.tease-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
/* Soft glow layer */
.tease-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,184,173,.04), transparent 60%);
  opacity: 0; transition: opacity .35s ease;
}
.tease-card:hover {
  border-color: rgba(0,184,173,.25);
  box-shadow: 0 20px 60px rgba(10,22,40,.1), 0 2px 8px rgba(0,184,173,.08);
}
.tease-card:hover::before { transform: scaleX(1); }
.tease-card:hover::after  { opacity: 1; }

.tc-num {
  font-family: var(--sans); font-size: .6rem; font-weight: 700; letter-spacing: .22em;
  color: rgba(10,22,40,.15); margin-bottom: 1.8rem;
}
.tc-icon-wrap { margin-bottom: 1.5rem; transform: translateZ(20px); }
.tc-title {
  font-family: var(--sans); font-weight: 700;
  font-size: 1.18rem; color: var(--navy); margin-bottom: .75rem; letter-spacing: -.01em;
}
.tc-body { font-size: .85rem; color: var(--grey); line-height: 1.75; }
.tc-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.tease-card:hover .tc-bar { transform: scaleX(1); }

/* ── ROADMAP ──────────────────────────────────────────────── */
.roadmap-section {
  background: var(--navy); padding: 9rem 2rem;
  /* 3D perspective on whole section */
  perspective: 1200px;
}
.rm-header { text-align: center; margin-bottom: 5rem; }
.rm-h2 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; letter-spacing: -.025em;
  color: var(--white);
}
.rm-h2 em { color: var(--teal-lt); }

.rm-track { max-width: 900px; margin: 0 auto; position: relative; }
.rm-line {
  position: absolute; top: 9px; left: 9px; right: 9px; height: 1px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--blue) 30%, rgba(255,255,255,.08) 100%);
}
.rm-stages { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }

.rm-stage {
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
  animation: fadeUp .6s var(--ease) both;
}
.rm-stage:nth-child(1) { animation-delay: .1s; }
.rm-stage:nth-child(2) { animation-delay: .2s; }
.rm-stage:nth-child(3) { animation-delay: .3s; }
.rm-stage:nth-child(4) { animation-delay: .4s; }

.rm-node { position: relative; display: flex; align-items: center; justify-content: center; }
.rm-pulse {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(0,210,200,.35);
  animation: rmPulse 2.5s ease infinite;
}
@keyframes rmPulse { 0%,100%{transform:scale(1);opacity:.7} 50%{transform:scale(1.5);opacity:0} }

.rm-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px; padding: 1.5rem 1.2rem; text-align: center;
  transition: all .3s var(--ease);
  transform-style: preserve-3d;
}
.rm-stage.active .rm-card {
  background: rgba(0,184,173,.08); border-color: rgba(0,184,173,.25);
  box-shadow: 0 0 30px rgba(0,184,173,.08);
}
.rm-card:hover { transform: translateY(-6px) rotateX(4deg); }

.rm-label {
  font-family: var(--sans); font-weight: 700; font-size: .92rem; letter-spacing: .04em;
  color: var(--white); margin-bottom: .3rem;
}
.rm-stage:not(.active) .rm-label { opacity: .3; }
.rm-sublabel { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.2); }
.rm-stage.active .rm-sublabel { color: var(--teal-lt); opacity: .8; }
.rm-desc { font-size: .75rem; color: rgba(255,255,255,.35); line-height: 1.6; margin-top: .5rem; }
.rm-stage.active .rm-desc { color: rgba(255,255,255,.5); }

.rm-note {
  text-align: center; margin-top: 4rem;
  font-size: .72rem; color: rgba(255,255,255,.18); font-style: italic;
}

/* ── CLOSING ──────────────────────────────────────────────── */
.closing-section {
  position: relative; text-align: center;
  background: var(--bg-3); overflow: hidden; padding: 9rem 2rem;
}
.closing-inner { position: relative; z-index: 2; }
.closing-h2 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1.08;
  letter-spacing: -.025em; color: var(--navy); margin-bottom: 1.2rem;
}
.closing-body {
  font-size: 1rem; color: var(--grey); line-height: 1.85;
  max-width: 500px; margin: 0 auto 2.8rem;
}
/* Animated glow orb */
.closing-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,184,173,.06) 0%, transparent 70%);
  pointer-events: none; animation: orbFloat 8s ease-in-out infinite;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section {
  background: var(--white); border-top: 1px solid var(--border); padding: 9rem 2rem;
}
.contact-wrap {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 5rem; align-items: start;
}
.contact-h2 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem); line-height: 1.12;
  letter-spacing: -.022em; color: var(--navy); margin-bottom: 1.2rem;
}
.contact-body { font-size: .9rem; color: var(--grey); line-height: 1.8; margin-bottom: 2.5rem; }
.contact-meta { display: flex; flex-direction: column; gap: .8rem; }
.cm-row { display: flex; gap: 1rem; align-items: baseline; }
.cm-label {
  font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal); min-width: 72px;
}
.cm-val { font-size: .88rem; color: var(--grey); }
a.cm-row:hover .cm-val { color: var(--teal); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.fg { display: flex; flex-direction: column; gap: .4rem; }
.fg label {
  font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(10,22,40,.4);
}
.fg input, .fg select, .fg textarea {
  background: var(--bg); border: 1.5px solid var(--border-md); border-radius: 7px;
  padding: .85rem 1.1rem; font-family: var(--body); font-size: .9rem;
  color: var(--navy); transition: all .2s; width: 100%; resize: vertical;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--grey-lt); }
.fg select { color: var(--grey); }
.fg select option { background: var(--bg); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: rgba(0,184,173,.4);
  box-shadow: 0 0 0 3px rgba(0,184,173,.08); background: var(--white);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form .btn-primary[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.form-status {
  display: none;
  border-radius: 7px;
  padding: .9rem 1.1rem;
  font-size: .85rem;
  line-height: 1.5;
}
.form-status.visible { display: block; }
.form-status.error {
  background: rgba(190,45,45,.06);
  border: 1px solid rgba(190,45,45,.22);
  color: #a33a3a;
}
.form-status.loading {
  background: rgba(10,22,40,.04);
  border: 1px solid var(--border-md);
  color: var(--grey);
}
.form-success {
  background: rgba(0,184,173,.06); border: 1px solid rgba(0,184,173,.25);
  border-radius: 7px; padding: .9rem 1.1rem;
  font-size: .85rem; color: var(--teal); display: flex; gap: .5rem; align-items: center;
}
.form-success[hidden] { display: none; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-2); border-top: 1px solid var(--border);
  padding: 4.5rem 2rem 0;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; flex-direction: column; gap: .7rem; }
.footer-logo {
  height: 30px; width: auto; object-fit: contain;
  /* original brand colours — no filter needed */
}
.footer-tagline { font-size: .78rem; color: var(--grey); font-family: var(--sans); letter-spacing: .05em; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .5rem 2rem; }
.footer-nav a { font-family: var(--sans); font-size: .76rem; color: var(--grey); letter-spacing: .04em; transition: color .2s; }
.footer-nav a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  padding: 1.4rem 0; font-size: .72rem; color: var(--grey-lt);
}

/* ── REVEAL ANIMATION ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── 3D FLOATING CARD (stats) ─────────────────────────────── */
.float-card {
  transform-style: preserve-3d;
  transition: transform .4s var(--ease);
}
.float-card:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-3deg);
  box-shadow: 0 24px 80px rgba(10,22,40,.14);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile-first polish
   ══════════════════════════════════════════════════════════ */

.br-desk { display: none; }
@media (min-width: 900px) { .br-desk { display: block; } }

/* ── Tablet ─────────────────────── */
@media (max-width: 1100px) {
  .map-wrap { width: 44%; opacity: .55; }
  .hero-h1 { max-width: 480px; }
}

/* ── Mobile landscape / tablet portrait ─── */
@media (max-width: 900px) {
  /* Nav */
  .nav-links, .btn-cta { display: none !important; }
  .burger { display: flex; margin-left: auto; }

  /* Hero */
  .map-wrap { display: none; }
  .hero-content { padding-top: 68px; text-align: center; }
  .hero-pill { margin-left: auto; margin-right: auto; }
  .hero-h1 { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-sub, .hero-micro { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-orb-1 { width: 340px; height: 340px; right: -80px; top: -60px; }
  .hero-orb-2 { width: 260px; height: 260px; }

  /* Trust */
  .trust-sep { display: none; }
  .trust-inner { gap: .6rem 1.2rem; }

  /* Brand */
  .brand-inner { padding: 6rem 1.5rem; }

  /* Cards */
  .cards-section { padding: 6rem 1.5rem; }
  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px; margin: 0 auto; gap: 1.2rem;
  }
  .tease-card { padding: 2.2rem 1.8rem 2rem; }

  /* Roadmap */
  .roadmap-section { padding: 6rem 1.5rem; }
  .rm-stages { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .rm-line { display: none; }

  /* Closing */
  .closing-section { padding: 6rem 1.5rem; }

  /* Contact */
  .contact-section { padding: 6rem 1.5rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }

  /* Footer */
  .footer { padding: 3.5rem 1.5rem 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-nav { gap: .4rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .3rem; }
}

/* ── Mobile portrait ─────────────── */
@media (max-width: 480px) {
  /* Nav */
  .nav-inner { padding: 0 1.2rem; }
  .logo-img { height: 28px; }

  /* Hero */
  .hero-content { padding: 68px 1.2rem 0; }
  .hero-pill { font-size: .65rem; padding: .28rem .85rem; }
  .hero-h1 { font-size: clamp(2rem, 9vw, 2.8rem); letter-spacing: -.02em; }
  .hero-sub { font-size: .92rem; }
  .hero-micro { font-size: .74rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: .75rem; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .btn-primary.btn-lg { padding: 1rem 2rem; }

  /* Trust */
  .trust-strip { padding: .9rem 0; }
  .trust-inner { gap: .5rem 1rem; }
  .trust-tag { font-size: .68rem; }

  /* Brand */
  .brand-inner { padding: 5rem 1.2rem; }
  .brand-h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .brand-body { font-size: .95rem; }

  /* Cards */
  .cards-section { padding: 5rem 1.2rem; }
  .cards-grid { max-width: 100%; }
  .tease-card { padding: 2rem 1.5rem 1.8rem; border-radius: 12px; }
  .tc-title { font-size: 1.05rem; }

  /* Roadmap */
  .roadmap-section { padding: 5rem 1.2rem; }
  .rm-stages { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .rm-card { padding: 1.1rem .9rem; }
  .rm-label { font-size: .82rem; }
  .rm-desc { font-size: .7rem; }

  /* Closing */
  .closing-section { padding: 5rem 1.2rem; }
  .closing-h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .closing-body { font-size: .9rem; }

  /* Contact */
  .contact-section { padding: 5rem 1.2rem; }
  .contact-h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .contact-body { font-size: .88rem; }
  .fg input, .fg select, .fg textarea { font-size: .88rem; padding: .75rem .9rem; }

  /* Footer */
  .footer { padding: 3rem 1.2rem 0; }
  .footer-logo { height: 26px; }
  .footer-tagline { font-size: .74rem; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: .4rem 1rem; }
  .footer-nav a { font-size: .72rem; }
  .footer-bottom { font-size: .68rem; padding: 1rem 0; }
}

/* ── Very small phones ─────────────── */
@media (max-width: 360px) {
  .hero-h1 { font-size: 1.85rem; }
  .rm-stages { grid-template-columns: 1fr; }
}
