/* ============================================================
   OREENA TECHNOLOGIES — aurora / border-beam / glass-device theme
   Built from brand reference media.
   ============================================================ */
:root {
  --bg: #050507;
  --ink: #f4f5fa;
  --mut: #8e93a8;
  --glass: rgba(255, 255, 255, 0.045);
  --glass-2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.08);
  --pink: #ff6ec4;
  --violet: #8b6dff;
  --cyan: #4cc9f0;
  --mint: #57e6b4;
  --amber: #ffb86b;
  --r-card: 26px;
  --r-device: 34px;
  --f-display: "Sora", sans-serif;
  --f-body: "Manrope", sans-serif;
  --f-dot: "Doto", monospace;
}

@property --beam { syntax: "<angle>"; initial-value: 0deg; inherits: true; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  line-height: 1.65;
  overflow-x: hidden;
}
::selection { background: var(--violet); color: #fff; }

h1, h2, h3 { font-family: var(--f-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); }
h2 em, h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--pink), var(--violet) 45%, var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
a { color: inherit; text-decoration: none; }
img { display: block; }
.wrap { width: min(1150px, 92%); margin: 0 auto; }
.doto { font-family: var(--f-dot); font-weight: 800; letter-spacing: 1px; }

.section { padding: 120px 0; position: relative; }
.section--tight { padding: 70px 0; position: relative; }

/* ---------- full-page ambient particles ---------- */
#bg-particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* ---------- aurora background ---------- */
.aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.aurora__blob { position: absolute; border-radius: 50%; filter: blur(130px); opacity: .22; }
.aurora__blob--1 { width: 56vw; height: 56vw; background: radial-gradient(circle, #7a3cff, transparent 65%); top: -22vw; left: -14vw; animation: blobDrift 26s ease-in-out infinite alternate; }
.aurora__blob--2 { width: 44vw; height: 44vw; background: radial-gradient(circle, #ff4fa8, transparent 65%); top: 30vh; right: -18vw; animation: blobDrift 32s ease-in-out infinite alternate-reverse; }
.aurora__blob--3 { width: 50vw; height: 50vw; background: radial-gradient(circle, #1d7ea8, transparent 65%); bottom: -24vw; left: 16vw; animation: blobDrift 38s ease-in-out infinite alternate; }
@keyframes blobDrift { to { transform: translate(7vw, 5vh) scale(1.12); } }

/* ---------- prismatic light streaks (from theme image 2) ---------- */
.prism {
  position: absolute; height: 2px; width: 46%; pointer-events: none;
  background: linear-gradient(90deg, transparent, #ff8ad1, #b59cff, #6fd6ff, transparent);
  filter: blur(1px); opacity: .55;
}
.prism::after {
  content: ""; position: absolute; inset: -14px 0;
  background: inherit; filter: blur(22px); opacity: .8;
}
.prism--1 { top: 14%; right: -6%; transform: rotate(-14deg); }
.prism--2 { bottom: 12%; left: -8%; transform: rotate(-14deg); width: 38%; }
.prism--3 { top: 8%; left: 20%; transform: rotate(-10deg); width: 34%; opacity: .4; }

/* ---------- border beam (from theme video 2) ---------- */
.beam { position: relative; background: var(--glass); border-radius: var(--r-card); }
.beam::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background:
    conic-gradient(from var(--beam),
      rgba(255,255,255,.07) 0deg,
      rgba(255,255,255,.07) 285deg,
      var(--pink) 315deg,
      var(--violet) 335deg,
      var(--cyan) 352deg,
      rgba(255,255,255,.07) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  pointer-events: none;
}
/* beam rotation is driven by js/site.js for smooth motion in all browsers */

/* ---------- buttons ---------- */
.pill-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 600; font-size: .92rem;
  padding: 12px 26px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line); background: var(--glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform .25s, background .25s, box-shadow .25s;
  position: relative;
}
.pill-btn:hover { transform: translateY(-2px); background: var(--glass-2); }
.pill-btn--beam { border: none; }
.pill-btn--beam::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: conic-gradient(from var(--beam),
    rgba(255,255,255,.18) 0deg, rgba(255,255,255,.18) 260deg,
    var(--pink) 300deg, var(--violet) 330deg, var(--cyan) 350deg, rgba(255,255,255,.18) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
}
.pill-btn--beam:hover { box-shadow: 0 6px 34px rgba(139, 109, 255, .35); }
.pill-btn--lg { padding: 15px 32px; font-size: 1rem; }
.pill-btn--full { width: 100%; }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 0 0 auto; z-index: 50; padding: 16px 0; transition: padding .3s; }
/* blur lives on a pseudo-element: backdrop-filter on .nav itself would make it the
   containing block for the fixed full-screen mobile menu, clipping it to the bar */
.nav::before { content: ''; position: absolute; inset: 0; background: rgba(5, 5, 7, .7); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); opacity: 0; transition: opacity .3s; pointer-events: none; }
.nav.is-scrolled { padding: 10px 0; }
.nav.is-scrolled::before { opacity: 1; }
.nav__inner { position: relative; display: flex; align-items: center; gap: 28px; }
.nav__brand img { height: 30px; width: auto; }
.nav__menu { display: flex; gap: 26px; margin-left: auto; }
.nav__menu a { font-size: .9rem; color: var(--mut); font-weight: 600; transition: color .2s; }
.nav__menu a:hover { color: var(--ink); }
.nav__cta { flex: 0 0 auto; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.nav__burger span { display: block; width: 23px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 130px 0 60px; overflow: hidden; }
#galaxy { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__beam { position: absolute; height: 1.5px; width: 60%; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(255,138,209,.8), rgba(111,214,255,.8), transparent); filter: blur(.5px); }
.hero__beam--a { top: 22%; left: -10%; transform: rotate(-16deg); opacity: .35; }
.hero__beam--b { bottom: 24%; right: -12%; transform: rotate(-16deg); opacity: .25; }

.hero__inner { position: relative; z-index: 2; text-align: center; }
.hero__eyebrow {
  font-family: var(--f-dot); font-weight: 600; font-size: .8rem; letter-spacing: 3px;
  color: var(--mut); display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px;
  background: rgba(5,5,7,.45); backdrop-filter: blur(10px); margin-bottom: 30px;
}
.led-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); animation: led 1.6s infinite; }
@keyframes led { 50% { opacity: .35; } }

.hero__h1 { font-size: clamp(2.5rem, 6.4vw, 4.8rem); }
.hero__sub { color: var(--mut); max-width: 620px; margin: 26px auto 38px; font-size: clamp(1rem, 1.5vw, 1.13rem); }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero__ticker { margin-top: 80px; overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); mask: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); }
.hero__ticker-track {
  display: flex; gap: 26px; width: max-content; align-items: center;
  animation: ticker 30s linear infinite;
  font-family: var(--f-dot); font-weight: 600; font-size: .82rem; letter-spacing: 4px; color: var(--mut);
}
.hero__ticker-track b { color: var(--violet); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- section heads ---------- */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 70px; }
.sec-head p { color: var(--mut); margin-top: 16px; }
.sec-tag {
  display: inline-block; font-family: var(--f-dot); font-weight: 600; font-size: .78rem;
  letter-spacing: 4px; color: var(--cyan); margin-bottom: 16px;
}

/* ---------- voice: glass device cards (theme image 1) ---------- */
.voice { overflow: hidden; }
.devices {
  display: flex; justify-content: center; align-items: center; gap: clamp(14px, 3vw, 34px);
  perspective: 1300px; margin-bottom: 70px;
}
.device {
  width: clamp(190px, 22vw, 250px); aspect-ratio: 0.86;
  border-radius: var(--r-device);
  background: linear-gradient(150deg, rgba(150, 170, 220, .14), rgba(80, 90, 130, .07) 55%, rgba(180, 140, 220, .1));
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -18px 38px rgba(120, 150, 255, .07),
    0 30px 70px rgba(0, 0, 0, .55);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 26px 20px; text-align: center;
  position: relative; transform-style: preserve-3d;
}
.device--left  { transform: rotateY(16deg) rotateX(4deg) scale(.92); opacity: .92; }
.device--right { transform: rotateY(-16deg) rotateX(4deg) scale(.92); opacity: .92; }
.device--main  { width: clamp(220px, 25vw, 285px); z-index: 2; }

.float-a { animation: floaty 7s ease-in-out infinite; }
.float-b { animation: floaty 6s ease-in-out .8s infinite; }
.float-c { animation: floaty 8s ease-in-out .4s infinite; }
@keyframes floaty { 50% { translate: 0 -14px; } }

.device__top { font-size: .85rem; color: rgba(244, 245, 250, .75); font-weight: 600; letter-spacing: 1px; }
.device__clock { font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 900; text-shadow: 0 0 26px rgba(160, 190, 255, .45); }
.device__hold { font-size: .72rem; color: rgba(244,245,250,.55); display: grid; gap: 10px; justify-items: center; letter-spacing: .4px; }
.device__holdbtn { width: 30px; height: 30px; border-radius: 11px; border: 2px solid rgba(255,255,255,.55); display: block; }
.device__pill {
  font-family: var(--f-dot); font-size: .68rem; font-weight: 600; letter-spacing: 2px;
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1);
  padding: 5px 14px; border-radius: 999px; color: rgba(244,245,250,.85);
}
.device__say { font-family: var(--f-display); font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 500; color: #fff; }
.device__hint { font-size: .72rem; color: rgba(244,245,250,.55); letter-spacing: .4px; }
.device__timer { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 900; text-shadow: 0 0 18px rgba(160,190,255,.4); }
.device__pause {
  border: 0; cursor: pointer; color: #1c2030; font-size: .7rem; font-weight: 700;
  background: rgba(255,255,255,.85); border-radius: 999px; padding: 8px 26px;
}

/* animated equalizer */
.eq { display: flex; align-items: flex-end; gap: 5px; height: 34px; }
.eq span { width: 6px; border-radius: 4px; background: #fff; animation: eq 1.1s ease-in-out infinite; box-shadow: 0 0 14px rgba(255,255,255,.5); }
.eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.eq span:nth-child(2) { height: 85%; animation-delay: .15s; }
.eq span:nth-child(3) { height: 60%; animation-delay: .3s; }
.eq span:nth-child(4) { height: 95%; animation-delay: .45s; }
.eq span:nth-child(5) { height: 50%; animation-delay: .6s; }
@keyframes eq { 50% { transform: scaleY(.35); } }
.eq--small { height: 26px; margin-bottom: 18px; }
.eq--small span { background: linear-gradient(var(--pink), var(--violet)); box-shadow: none; }

/* recording waveform */
.wave { display: flex; align-items: center; gap: 3px; height: 36px; }
.wave i { width: 3px; border-radius: 2px; background: rgba(255,255,255,.8); }
.wave i:nth-child(odd) { height: 30%; }
.wave i:nth-child(even) { height: 65%; }
.wave i:nth-child(3n) { height: 95%; }
.wave i:nth-child(5n) { height: 45%; }

.voice__feats { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 900px; margin: 0 auto; }
.voice__feats--four { grid-template-columns: repeat(4, 1fr); max-width: 1050px; }
.voice__feats li { border-top: 1px solid var(--line); padding-top: 18px; }
.voice__feats b { display: block; font-family: var(--f-display); font-size: 1rem; margin-bottom: 4px; }
.voice__feats span { color: var(--mut); font-size: .88rem; }

/* ---------- bento services ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento__cell { padding: 34px 30px; overflow: hidden; backdrop-filter: blur(10px); }
.bento__cell--wide { grid-column: span 2; }
.bento__cell h3 { font-size: 1.25rem; margin-bottom: 10px; }
.cell-num {
  position: absolute; top: 24px; right: 26px;
  font-size: 1rem; color: rgba(255, 255, 255, .35);
  text-shadow: 0 0 12px rgba(76, 201, 240, .35);
}
.bento__cell p { color: var(--mut); font-size: .94rem; max-width: 52ch; }
.cell-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.cell-tags span {
  font-family: var(--f-dot); font-size: .7rem; font-weight: 600; letter-spacing: 1.5px;
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 13px; color: var(--mut);
}

/* node-graph illustration */
.cell-graph { position: relative; height: 110px; margin-bottom: 18px; }
.cell-graph svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.cell-graph svg path { fill: none; stroke: rgba(139,109,255,.5); stroke-width: 1.4; stroke-dasharray: 6 7; animation: dashFlow 1.6s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -13; } }
.node { position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 16px var(--violet); }
.node.n1 { left: 10%; top: 14%; background: var(--pink); box-shadow: 0 0 16px var(--pink); }
.node.n2 { left: 10%; bottom: 14%; }
.node.n3 { left: 48%; top: 44%; background: #fff; box-shadow: 0 0 18px #fff; }
.node.n4 { right: 12%; top: 12%; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.node.n5 { right: 12%; bottom: 12%; background: var(--mint); box-shadow: 0 0 16px var(--mint); }

/* mini phone */
.cell-phone { width: 44px; height: 74px; border: 2px solid rgba(255,255,255,.4); border-radius: 12px; margin-bottom: 18px; position: relative; }
.cell-phone i { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 14px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.4); }
.cell-phone::after { content: ""; position: absolute; inset: 14px 6px 8px; border-radius: 6px; background: linear-gradient(140deg, rgba(255,110,196,.35), rgba(76,201,240,.3)); }

/* workflow steps icon */
.cell-flow { display: flex; align-items: center; gap: 0; margin-bottom: 18px; height: 26px; }
.cell-flow i { width: 13px; height: 13px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 14px var(--violet); position: relative; }
.cell-flow i:nth-child(2) { background: var(--pink); box-shadow: 0 0 14px var(--pink); }
.cell-flow i:nth-child(3) { background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.cell-flow i + i { margin-left: 26px; }
.cell-flow i + i::before {
  content: ""; position: absolute; right: 100%; top: 50%; width: 26px; height: 1.5px;
  background: rgba(255, 255, 255, .25);
}

/* enterprise grid */
.cell-grid { display: grid; grid-template-columns: repeat(3, 14px); gap: 5px; margin-bottom: 18px; }
.cell-grid i { width: 14px; height: 14px; border-radius: 4px; background: rgba(255,255,255,.16); }
.cell-grid i:nth-child(1) { background: var(--pink); }
.cell-grid i:nth-child(5) { background: var(--violet); }
.cell-grid i:nth-child(9) { background: var(--cyan); }

/* chip marquee inside SaaS cell */
.chip-marquee { overflow: hidden; margin-top: 22px; -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.chip-marquee__track { display: flex; gap: 10px; width: max-content; animation: ticker 22s linear infinite; }
.chip-marquee__track span {
  font-size: .78rem; font-weight: 600; color: var(--mut);
  border: 1px solid var(--line); background: var(--glass); border-radius: 999px; padding: 6px 16px; white-space: nowrap;
}

/* ---------- stats (dot-matrix LED) ---------- */
.stats__row { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 36px; border-block: 1px solid var(--line); padding: 46px 20px; }
.stat { text-align: center; }
.stat__num {
  display: block; font-size: clamp(2.2rem, 4.4vw, 3.4rem); font-weight: 900;
  color: #fff; text-shadow: 0 0 24px rgba(139, 109, 255, .65);
}
.stat__lbl { font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--mut); }

/* ---------- steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.steps__item { border-left: 1px solid var(--line); padding: 6px 0 6px 22px; transition: border-color .3s; }
.steps__item:hover { border-image: linear-gradient(var(--pink), var(--cyan)) 1; }
.steps__n { font-size: 2rem; color: rgba(255,255,255,.9); text-shadow: 0 0 18px rgba(76,201,240,.5); display: block; margin-bottom: 12px; }
.steps__item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.steps__item p { color: var(--mut); font-size: .9rem; }

/* ---------- quotes ---------- */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.quote { padding: 34px 32px; backdrop-filter: blur(10px); }
.quote blockquote { font-family: var(--f-display); font-size: 1.12rem; font-weight: 400; line-height: 1.5; margin-bottom: 18px; }
.quote figcaption { color: var(--mut); font-size: .86rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; padding: clamp(50px, 7vw, 90px) clamp(24px, 6vw, 80px); backdrop-filter: blur(10px); }
.cta-band p { color: var(--mut); max-width: 56ch; margin: 16px auto 32px; }

/* ---------- contact ---------- */
.contact { overflow: hidden; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__info h2 { margin: 0 0 18px; }
.contact__info > p { color: var(--mut); max-width: 46ch; margin-bottom: 36px; }
.contact__cards { display: grid; gap: 14px; }
.ccard {
  display: flex; align-items: baseline; gap: 20px;
  border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px;
  background: var(--glass); backdrop-filter: blur(8px);
  transition: border-color .25s, transform .25s;
}
.ccard:hover { border-color: rgba(139, 109, 255, .6); transform: translateX(6px); }
.ccard__k { font-family: var(--f-dot); font-size: .7rem; font-weight: 600; letter-spacing: 3px; color: var(--cyan); min-width: 76px; }
.ccard__v { font-weight: 600; font-size: 1.02rem; }

.cform { padding: 36px; display: grid; gap: 16px; backdrop-filter: blur(12px); }
.cform label { display: grid; gap: 7px; font-family: var(--f-dot); font-size: .74rem; font-weight: 600; letter-spacing: 2.5px; color: var(--mut); text-transform: uppercase; }
.cform__opt { display: inline; text-transform: none; letter-spacing: .5px; opacity: .65; }
.cform input, .cform select, .cform textarea {
  font-family: var(--f-body); font-size: .95rem; color: var(--ink);
  background: rgba(5, 5, 7, .55); border: 1px solid var(--line); border-radius: 13px;
  padding: 13px 16px; outline: none; resize: vertical; width: 100%;
  transition: border-color .25s, box-shadow .25s;
}
.cform select { appearance: none; cursor: pointer; }
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(139, 109, 255, .16); }
.cform__note { font-size: .86rem; color: var(--mint); text-align: center; min-height: 1.2em; }
/* utility classes toggled by js/form_script.js */
.gone { display: none !important; }
.invisible { visibility: hidden; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: rgba(255,255,255,.02); }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; padding: 54px 0 34px; flex-wrap: wrap; }
.footer__brand img { height: 30px; width: auto; margin-bottom: 16px; }
.footer__brand p { color: var(--mut); font-size: .88rem; max-width: 300px; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { color: var(--mut); font-size: .9rem; font-weight: 600; transition: color .2s; }
.footer__links a:hover { color: var(--ink); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--line); padding: 20px 0; color: var(--mut); font-size: .82rem; }
.footer__clock { font-size: 1rem; color: rgba(255,255,255,.8); text-shadow: 0 0 14px rgba(76,201,240,.6); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.65,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .voice__feats--four { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__cell--wide { grid-column: span 2; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .contact__grid { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 760px) {
  .section { padding: 84px 0; }
  .nav__menu {
    position: fixed; inset: 0; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
    background: rgba(5, 5, 7, .96); backdrop-filter: blur(20px);
    opacity: 0; visibility: hidden; transition: opacity .3s; margin: 0;
  }
  .nav__menu.is-open { opacity: 1; visibility: visible; }
  body.menu-open { overflow: hidden; }
  .nav__menu a { font-size: 1.25rem; color: var(--ink); }
  .nav__cta { display: none; }
  .nav__burger { display: block; position: relative; z-index: 60; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .devices { flex-direction: column; }
  .device--left, .device--right { display: none; }
  .device--main { width: min(300px, 80vw); }
  .voice__feats { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento__cell--wide { grid-column: span 1; }
  .quotes { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}

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