/* v20260409 */
/* ════════════════════════════════════════════
   AVIAGENTICS — style.css
   Luxury marble · Navy · Gold · Clean
════════════════════════════════════════════ */

:root {
  --navy:    #1a2744;
  --navy2:   #243257;
  --gold:    #b8922a;
  --gold2:   #d4aa50;
  --gold3:   #8b6914;
  --gold-lt: #f0d890;
  --white:   #ffffff;
  --off:     #faf9f7;
  --marble:  #f5f3ef;
  --light:   #ede9e1;
  --text:    #1a2744;
  --text2:   #4a5568;
  --text3:   #8a9ab5;
  --green:   #059669;
  --r:  14px;
  --r2: 22px;
  --r3: 32px;
  --sh:  0 4px 24px rgba(26,39,68,0.08);
  --sh2: 0 12px 48px rgba(26,39,68,0.13);
  --sh3: 0 24px 80px rgba(26,39,68,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--marble);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── MARBLE TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(212,170,80,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(26,39,68,0.04) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: cover, cover, 400px 400px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: rgba(250,249,247,0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(184,146,42,0.15);
  box-shadow: 0 2px 20px rgba(26,39,68,0.06);
}
.nav-in {
  max-width: 1240px; margin: 0 auto;
  padding: 0 36px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 24px; font-weight: 600;
  color: var(--navy); letter-spacing: 0.3px;
  text-decoration: none;
}
.nav-logo img { height: 32px; width: auto; object-fit: contain; }
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: var(--text2); text-decoration: none;
  font-size: 13px; font-weight: 400; letter-spacing: 0.2px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-btn {
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  color: white; border: none; border-radius: 50px;
  padding: 10px 26px; font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  cursor: pointer; text-decoration: none; display: inline-block;
  box-shadow: 0 4px 16px rgba(184,146,42,0.35);
  transition: transform .2s, box-shadow .2s;
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,146,42,0.45); }

.ham {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer; padding: 4px;
}
.ham span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }
.mob {
  display: none; flex-direction: column;
  border-top: 1px solid rgba(184,146,42,0.12);
  padding: 12px 36px 20px;
  background: rgba(250,249,247,0.99);
}
.mob a {
  color: var(--text2); text-decoration: none;
  padding: 12px 0; font-size: 15px;
  border-bottom: 1px solid rgba(184,146,42,0.08);
}
.mob.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 72px;
  overflow: hidden;
  display: flex; flex-direction: column;
}

/* BG image layers */
.bg-layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}
.bg-layer::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(250,249,247,0.12) 0%,
    rgba(250,249,247,0.06) 40%,
    rgba(250,249,247,0.62) 100%
  );
}

/* Floating glass elements */
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes floatC { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-11px)} }
@keyframes glowDot { 0%,100%{opacity:0.7} 50%{opacity:1} }
@keyframes pulsRing {
  0%  { box-shadow: 0 0 0 0 rgba(184,146,42,0.55), 0 8px 32px rgba(184,146,42,0.3); }
  70% { box-shadow: 0 0 0 16px rgba(184,146,42,0), 0 8px 32px rgba(184,146,42,0.3); }
  100%{ box-shadow: 0 0 0 0 rgba(184,146,42,0), 0 8px 32px rgba(184,146,42,0.3); }
}
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.fl { position: absolute; z-index: 15; pointer-events: none; }
/* Desktop: floats tight to the phone */
@media(min-width: 1025px) {
  .fl[style*="left:1%"] { left: 26% !important; }
  .fl[style*="right:1%"] { right: 26% !important; }
}
@media(min-width: 1200px) {
  .fl[style*="left:1%"] { left: 28% !important; }
  .fl[style*="right:1%"] { right: 28% !important; }
}
.fa { animation: floatA 4s ease-in-out infinite; }
.fb { animation: floatB 5.5s ease-in-out infinite 0.9s; }
.fc { animation: floatC 4.3s ease-in-out infinite 1.7s; }
.fd { animation: floatA 5.1s ease-in-out infinite 0.5s; }
.fe { animation: floatB 4.7s ease-in-out infinite 2.1s; }
.ff { animation: floatC 3.9s ease-in-out infinite 1.3s; }

.glass-pill {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(184,146,42,0.22);
  border-radius: 50px; padding: 8px 18px;
  font-size: 11px; font-weight: 500; color: var(--text2);
  box-shadow: 0 4px 20px rgba(26,39,68,0.1);
  backdrop-filter: blur(14px);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.gp-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.gp-dot.g { background: var(--green); box-shadow: 0 0 8px var(--green); animation: glowDot 2s ease-in-out infinite; }
.gp-dot.au { background: var(--gold2); box-shadow: 0 0 8px var(--gold2); animation: glowDot 2.5s ease-in-out infinite 0.5s; }

.glass-note {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(184,146,42,0.18);
  border-radius: 14px; padding: 12px 16px;
  font-size: 11px; color: var(--text2); line-height: 1.5;
  box-shadow: 0 6px 24px rgba(26,39,68,0.09);
  backdrop-filter: blur(14px); max-width: 190px;
}
.glass-note strong {
  display: block; font-size: 9.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold3); margin-bottom: 4px;
}
.code-note {
  background: rgba(20,24,40,0.84);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 11px 15px;
  font-family: 'Courier New', monospace;
  font-size: 9.5px; line-height: 1.9; color: #94a3b8;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px); white-space: nowrap;
}
.cp{color:#f472b6} .cb{color:#60a5fa} .cg{color:#34d399} .cy{color:#fbbf24}

/* ── HERO CONTENT ── */
.hero-body {
  position: relative; z-index: 20;
  flex: 1; display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px; max-width: 1240px; width: 100%; margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold3);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(184,146,42,0.28);
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 16px; width: fit-content;
  backdrop-filter: blur(10px);
}
.ey-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold2); animation: glowDot 2s infinite; }

.hero-h1 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 600; line-height: 1.0;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(255,255,255,0.9);
  transition: all 0.5s ease;
}
.hero-h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: 18px; color: var(--text2); line-height: 1.7;
  max-width: 520px;
  background: rgba(255,255,255,0.78);
  padding: 10px 16px; border-radius: 12px;
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
  transition: all 0.5s ease;
}

/* ── TRY DEMO BTN ── */
.hero-demo-wrap {
  position: absolute;
  bottom: 12%;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

/* ── POWERED BY AI ── */
.hero-powered {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #c9a84c;
  font-size: clamp(32px, 4.8vw, 56px);
  margin-top: 6px;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.5px;
}
.hero-demo-btn {
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  color: white; border: none; border-radius: 50px;
  padding: 17px 48px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 600; letter-spacing: 0.3px;
  cursor: pointer;
  animation: pulsRing 2.5s ease-in-out infinite;
  transition: transform .2s;
  display: inline-flex; align-items: center; gap: 10px;
  pointer-events: auto;
}
.hero-demo-btn:hover { transform: scale(1.04); }
.hero-demo-btn:active { transform: scale(0.97); }

/* ── HERO SMALL TRY DEMO BTN ── */
.hero-small-demo-wrap {
  text-align: center;
  margin-bottom: 20px;
}
.hero-small-demo-btn {
  background: #c9a84c;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.hero-small-demo-btn:hover { transform: scale(1.04); }
.hero-small-demo-btn:active { transform: scale(0.97); }

/* ── POWERED BY AI OVERLAY ── */
.hero-ai-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  transform: none;
  z-index: 18;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(14px, 2vw, 22px);
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  white-space: nowrap;
  pointer-events: none;
  text-align: left;
}
@media(max-width: 640px) {
  .hero-ai-overlay { display: none; }
}

/* ── INDUSTRY CARDS ── */
.cards-strip {
  position: relative; z-index: 30;
  background: white;
  border-top: none;
  padding-top: 0;
  box-shadow: 0 -6px 40px rgba(26,39,68,0.08);
  margin-top: -60px; /* Pull strip up into hero */
  overflow: visible;
}

.cards-in {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.ind-card {
  padding: 0 0 24px;
  border-right: 1px solid rgba(184,146,42,0.1);
  cursor: pointer; position: relative;
  transition: background .25s;
  user-select: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  min-height: 100%;
}
.ind-card .ic-div { margin-top: auto; }
/* Force all card images same height so cards align */
.ind-card img.card-thumb {
  width: 100%;
  height: 240px !important;
  min-height: 240px !important;
  max-height: 240px !important;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0 !important;
  display: block;
  align-self: flex-start;
}
/* All cards same height — stretch fills the row */
#ic-rest, #ic-real, #ic-med, #ic-corp {
  vertical-align: top;
}
.ind-card .ic-top,
.ind-card .ic-title,
.ind-card .ic-desc,
.ind-card .ic-div,
.ind-card .ic-demo-btn,
.ind-card .ic-soon-link {
  padding-left: 18px;
  padding-right: 18px;
}
.ind-card .ic-top { padding-top: 14px; }
.ind-card .ic-title { margin-top: 12px; }
.ind-card:last-child { border-right: none; }
.ind-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold2), var(--gold3));
  transform: scaleX(0); transition: transform .32s cubic-bezier(0.4,0,0.2,1);
  transform-origin: left;
}
.ind-card:hover::after, .ind-card.on::after { transform: scaleX(1); }
.ind-card:hover, .ind-card.on { background: #fdfcf9; }

.ic-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.ic-top.has-thumb { display: none; }
.ic-icon { font-size: 26px; }
.ic-badge {
  font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
}
.b-live {
  background: var(--navy);
  color: var(--gold2);
  border: none;
  letter-spacing: 2.5px;
}
.b-soon {
  background: transparent;
  color: var(--text3);
  border: 1px solid var(--light);
  letter-spacing: 2px;
}

.ic-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 17px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
  transition: color .2s;
}
.ind-card:hover .ic-title, .ind-card.on .ic-title { color: var(--gold3); }
.ic-desc { font-size: 14px; color: var(--text3); line-height: 1.55; margin-bottom: 16px; }

/* Nudge corporate card thumbnail down 2% — subject was sitting too high vs siblings */
#card-thumb-corp { transform: translateY(2%); }
.ic-div { height: 1px; background: rgba(184,146,42,0.1); margin-bottom: 14px; }

.ic-demo-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  color: white; text-decoration: none; border: none;
  border-radius: 50px; padding: 9px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600; cursor: pointer;
  box-shadow: 0 4px 14px rgba(184,146,42,0.3);
  transition: transform .2s, box-shadow .2s;
}
.ic-demo-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(184,146,42,0.42); }

.ic-soon-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--gold);
  text-decoration: none; opacity: 0; transform: translateX(-4px);
  transition: opacity .25s, transform .25s;
}
.ind-card:hover .ic-soon-link, .ind-card.on .ic-soon-link { opacity: 1; transform: translateX(0); }
.ic-arr { transition: transform .2s; }
.ind-card:hover .ic-arr { transform: translateX(4px); }

/* ── ABOUT ── */
.about { padding: 96px 0; }
.sec-in { max-width: 1100px; margin: 0 auto; padding: 0 36px; }
.sec-eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.sec-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px); font-weight: 600;
  line-height: 1.1; letter-spacing: -1px; color: var(--navy);
  margin-bottom: 16px;
}
.sec-sub { font-size: 17px; color: var(--text2); line-height: 1.7; max-width: 640px; margin-bottom: 44px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; max-width: 100%; }
.about-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(184,146,42,0.18);
  border-radius: var(--r2); padding: 28px 26px;
  backdrop-filter: blur(10px);
  box-shadow: var(--sh);
  transition: transform .2s, box-shadow .2s;
}
.about-card:hover { transform: translateY(-3px); box-shadow: var(--sh2); }
.ac-icon { font-size: 28px; margin-bottom: 14px; }
.ac-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 8px;
}
.ac-text { font-size: 15px; color: var(--text2); line-height: 1.7; }

/* ── HOW ── */
.how {
  padding: 96px 0;
  background: white;
  border-top: 1px solid rgba(184,146,42,0.1);
  border-bottom: 1px solid rgba(184,146,42,0.1);
}
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 44px; }
.step {
  background: var(--marble);
  border: 1px solid rgba(184,146,42,0.12);
  border-radius: var(--r2); padding: 30px 26px;
  transition: transform .2s, box-shadow .2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 600; color: rgba(184,146,42,0.2);
  line-height: 1; margin-bottom: 14px;
}
.step-i { font-size: 28px; margin-bottom: 13px; }
.step h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 10px;
}
.step p { font-size: 15px; color: var(--text2); line-height: 1.7; }

/* ── CONTACT ── */
.contact { padding: 96px 0; }
.contact-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }

.cf-glass {
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(184,146,42,0.18);
  border-radius: var(--r3); padding: 44px;
  backdrop-filter: blur(20px);
  box-shadow: var(--sh2);
}
.cf-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 26px; font-weight: 600; color: var(--navy);
  margin-bottom: 28px;
}
.cf-g { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.cf-l { font-size: 11px; font-weight: 500; color: var(--text2); letter-spacing: 0.3px; }
.cf-i {
  background: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(184,146,42,0.18);
  border-radius: 12px; padding: 13px 16px;
  font-size: 14px; color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  transition: border-color .2s; width: 100%;
}
.cf-i:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,42,0.1); }
.cf-i::placeholder { color: var(--text3); }
.cf-ta { resize: vertical; min-height: 120px; }
.cf-submit {
  width: 100%; background: linear-gradient(135deg, var(--gold2), var(--gold3));
  border: none; border-radius: 50px; padding: 15px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: white;
  cursor: pointer; box-shadow: 0 8px 24px rgba(184,146,42,0.32);
  transition: transform .2s, box-shadow .2s; margin-top: 6px;
}
.cf-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(184,146,42,0.44); }
.cf-ok {
  margin-top: 16px; padding: 14px 18px;
  background: rgba(5,150,105,0.08); border: 1px solid rgba(5,150,105,0.22);
  border-radius: 12px; font-size: 14px; color: #047857; display: none;
}

.contact-side h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 30px; font-weight: 600; letter-spacing: -0.5px;
  color: var(--navy); margin-bottom: 14px;
}
.contact-side p { font-size: 16px; color: var(--text2); line-height: 1.7; margin-bottom: 30px; }
.ci-list { display: flex; flex-direction: column; gap: 12px; }
.ci {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 15px; background: rgba(255,255,255,0.82);
  border: 1px solid rgba(184,146,42,0.12); border-radius: var(--r);
  backdrop-filter: blur(8px);
}
.ci-ic { font-size: 20px; flex-shrink: 0; }
.ci-lb { font-size: 10px; color: var(--text3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.ci-vl { font-size: 13px; color: var(--navy); font-weight: 500; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid rgba(184,146,42,0.12);
  padding: 36px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
}
.footer-in {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.f-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--navy);
}
.f-logo span { color: var(--gold); }
.f-links { display: flex; gap: 22px; }
.f-links a { color: var(--text3); text-decoration: none; font-size: 12px; transition: color .2s; }
.f-links a:hover { color: var(--navy); }
.f-copy { font-size: 11px; color: var(--text3); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  color: white; padding: 13px 28px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 8px 24px rgba(184,146,42,0.4);
  z-index: 999; transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
  .cards-in { grid-template-columns: repeat(2,1fr); }
  .ind-card:nth-child(2) { border-right: none; }
  .ind-card:nth-child(1), .ind-card:nth-child(2) { border-bottom: 1px solid rgba(184,146,42,0.1); }
  .steps { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .fl { display: none; }
  .hero-body { padding: 0 28px 0; }
  .about-grid { grid-template-columns: 1fr; }
}
@media(max-width: 640px) {
  /* Mobile hero — keep CTA visible and avoid clipping */
  .hero {
    min-height: 100svh;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }
  /* Remove negative margin that hides the Try Demo button behind cards-strip */
  .cards-strip { margin-top: 0; }
  .hero-body {
    position: relative;
    z-index: 20;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: visible;
    padding: 0 20px 24px;
  }
  .hero-eyebrow { font-size: 9px; padding: 4px 12px; margin-bottom: 8px; }
  .hero-h1 { font-size: 30px; letter-spacing: -1px; margin-bottom: 6px; line-height: 1.0; }
  .hero-powered { font-size: 28px; margin-bottom: 8px; }
  .hero-sub { font-size: 12px; padding: 7px 10px; margin-bottom: 10px; }
  .hero-demo-wrap {
    position: relative;
    bottom: auto;
    width: 100%;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    pointer-events: auto;
  }
  .hero-demo-btn {
    width: auto;
    justify-content: center;
    padding: 11px 28px;
    font-size: 14px;
    animation: none;
    box-shadow: 0 4px 16px rgba(184,146,42,0.4);
    pointer-events: auto;
  }

  .nav-links { display: none; }
  .ham { display: flex; }
  .cards { overflow: visible; }
  .cards-in {
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .ind-card {
    min-height: auto;
    overflow: visible;
    padding: 0 0 16px;
    border-right: none;
    border-bottom: 1px solid rgba(184,146,42,0.1);
  }
  .ind-card:last-child { border-bottom: none; }

  .ind-card img.card-thumb {
    height: 180px;
    min-height: 180px !important;
    max-height: 180px !important;
  }
  .sec-in { padding: 0 20px; }
  .footer-in { flex-direction: column; text-align: center; }
  .f-links { justify-content: center; }
  .cf-glass { padding: 28px 22px; }
}

/* ── BUBBLE SUCK-IN ANIMATION ── */
@keyframes suckToBtn {
  0%   {
    opacity: 1;
    transform: translate(0,0) scale(1) rotate(0deg);
    filter: blur(0px);
  }
  50%  {
    opacity: 0.75;
    transform: translate(calc(var(--tx) * 0.6), calc(var(--ty) * 0.6)) scale(0.55) rotate(4deg);
    filter: blur(1px);
  }
  85%  {
    opacity: 0.3;
    transform: translate(calc(var(--tx) * 0.92), calc(var(--ty) * 0.92)) scale(0.2) rotate(8deg);
    filter: blur(3px);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(0) rotate(12deg);
    filter: blur(6px);
  }
}
.fl.sucking {
  animation: suckToBtn 0.7s cubic-bezier(0.55, 0, 1, 0.8) forwards !important;
  pointer-events: none;
  z-index: 50;
}
.fl.hidden-after-suck {
  opacity: 0 !important;
  pointer-events: none;
  animation: none !important;
  transform: translate(0,0) scale(1) !important;
}


/* ════════════════════════════════════════════
   PHONE DEMO OVERLAY
════════════════════════════════════════════ */
.phone-demo-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(248,244,239,0.97) !important;
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 16px;
}
.phone-demo-overlay.open {
  opacity: 1; pointer-events: all;
}

.phone-demo-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; width: 100%; max-width: 860px;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34,1.4,0.64,1);
  max-height: 100vh; overflow-y: auto;
}
.phone-demo-overlay.open .phone-demo-inner {
  transform: scale(1) translateY(0);
}

/* Side-by-side layout: phone left, info right */
.phone-demo-layout {
  display: flex; flex-direction: row; align-items: center; gap: 48px;
}
.demo-phone-col {
  flex-shrink: 0; width: 390px; display: flex; flex-direction: column; align-items: center;
}
.demo-info-col {
  flex: 1; min-width: 0; display: flex; align-items: center;
}

/* Close button */
.phone-demo-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(44,24,16,0.07);
  border: 1px solid rgba(44,24,16,0.18);
  color: #2c1810; border-radius: 50%;
  width: 42px; height: 42px; font-size: 16px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s; z-index: 10;
}
.phone-demo-close:hover { background: rgba(44,24,16,0.14); transform: scale(1.1); }

/* Label */
.phone-demo-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold2);
  background: rgba(212,170,80,0.1);
  border: 1px solid rgba(212,170,80,0.25);
  padding: 6px 18px; border-radius: 20px;
}
.pdl-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold2); box-shadow: 0 0 8px var(--gold2);
  animation: glowDot 2s ease-in-out infinite;
}

/* "Order with Anna" label above phone */
.demo-order-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold2);
  text-align: center;
  margin-bottom: 8px;
}

/* Gold iPhone frame */
.demo-iphone {
  position: relative;
  max-width: 390px;
  width: 100%;
  flex-shrink: 0;
  margin: 0 auto;
  padding: 3px;
  border-radius: 40px;
  background: linear-gradient(145deg, #e8c97a, #c9a84c, #f0d890, #b8942e) !important;
  box-shadow: 0 8px 32px rgba(201,168,76,0.3), 0 2px 8px rgba(0,0,0,0.1);
}

/* Gold side buttons — left (volume) */
.demo-iphone::before {
  content: '';
  position: absolute; left: -3px; top: 110px;
  width: 3px; height: 28px;
  background: linear-gradient(180deg, #e8c97a, #b8942e);
  border-radius: 2px 0 0 2px;
  box-shadow: 0 38px 0 #c9a84c, 0 70px 0 #c9a84c;
}
/* Gold side button — right (power) */
.demo-iphone::after {
  content: '';
  position: absolute; right: -3px; top: 150px;
  width: 3px; height: 52px;
  background: linear-gradient(180deg, #e8c97a, #b8942e);
  border-radius: 0 2px 2px 0;
}

/* Hide dynamic island — clean screen */
.demo-iphone-top { display: none; }
.demo-iphone-island { display: none; }

.demo-iphone-screen {
  position: relative;
  width: 100%;
  height: 780px;
  border-radius: 37px;
  overflow: hidden;
  background: #f5f0e8 !important;
}

/* Loading state */
.demo-loading {
  position: absolute; inset: 0;
  background: rgba(248,244,239,1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.demo-loading-spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(184,146,42,0.2);
  border-top-color: var(--gold2);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.demo-loading-text {
  color: var(--text2);
  font-size: 13px; font-family: 'DM Sans', sans-serif;
}

/* iframe fills phone screen naturally — no scaling */
#demoFrame,
.demo-iphone-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

.demo-iphone-bar {
  width: 110px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px; margin: 8px auto 0;
}

/* Feature highlights panel */
.demo-features {
  width: 100%;
  text-align: left;
}
.demo-feat-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; color: #2c1810;
  line-height: 1.2; margin-bottom: 8px;
}
.demo-feat-sub {
  font-size: 13px; color: rgba(44,24,16,0.6);
  margin-bottom: 24px; line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}
.demo-feat-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.demo-feat-list li {
  display: flex; align-items: flex-start; gap: 12px; text-align: left;
}
.dfl-icon {
  color: var(--gold2); font-size: 10px;
  flex-shrink: 0; margin-top: 4px;
}
.demo-feat-list strong {
  display: block; color: #2c1810;
  font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}
.demo-feat-list span {
  font-size: 12px; color: rgba(44,24,16,0.55);
  font-family: 'DM Sans', sans-serif;
}
.dfl-coming {
  color: var(--gold) !important;
  font-size: 11px !important;
  font-style: italic;
}

@media(max-width: 768px) {
  .phone-demo-overlay { background: rgba(248,244,239,0.97) !important; }
  .demo-iphone { max-width: 350px; }
  .demo-iphone-screen { height: 70vh; min-height: 550px; }
  .demo-iphone-screen iframe { width: 100%; height: 100%; transform: none; }
  .phone-demo-layout { flex-direction: column; align-items: center; gap: 28px; }
  .demo-info-col { justify-content: center; }
  .demo-features {
    max-width: 100%;
    padding: 0 8px;
    text-align: center;
  }
  .demo-feat-heading { font-size: 22px; }
  .demo-feat-sub { font-size: 13px; margin-bottom: 16px; }
  .demo-feat-list li { gap: 10px; }
  .demo-feat-list strong { font-size: 13px; }
  .demo-feat-list span { font-size: 12px; }
}
@media(max-width: 480px) {
  .demo-iphone { width: 100%; max-width: 340px; }
  .demo-iphone-screen { height: 75vh; min-height: 550px; }
  .demo-features { max-width: 280px; }
}
@media(max-height: 700px) {
  .demo-iphone-screen { height: 520px; }
}
