/* Klivy v3.2.29 - branded sales homepage and DB-backed pricing. */
:root {
  --home-bg: #f7f9ff;
  --home-bg-2: #eef5ff;
  --home-ink: #0d1024;
  --home-muted: #66718b;
  --home-soft: #8b95ae;
  --home-line: rgba(25, 35, 78, .11);
  --home-violet: #2563eb;
  --home-indigo: #1d4ed8;
  --home-cyan: #06b6d4;
  --home-mint: #22d3ee;
  --home-amber: #f59e0b;
  --home-card: rgba(255, 255, 255, .72);
  --home-glass: rgba(255, 255, 255, .56);
  --home-shadow: 0 30px 90px rgba(29, 78, 216, .16);
  --home-shadow-soft: 0 18px 60px rgba(37, 99, 235, .11);
}

html { background: var(--home-bg); }
body.apple-home {
  min-height: 100%;
  color: var(--home-ink);
  background: var(--home-bg);
  overflow-x: hidden;
}

.apple-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(rgba(37, 99, 235, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .045) 1px, transparent 1px),
    radial-gradient(circle at 58% -8%, rgba(255, 255, 255, .95), transparent 34%),
    linear-gradient(180deg, #fbfdff 0%, #f6f9ff 48%, #eef5ff 100%);
  background-size: 72px 72px, 72px 72px, auto, auto;
}
.apple-bg__mesh {
  position: absolute;
  inset: -14% -8% auto;
  height: 76vh;
  background:
    linear-gradient(112deg, transparent 0 18%, rgba(37,99,235,.18) 18% 19%, transparent 19% 100%),
    linear-gradient(148deg, transparent 0 28%, rgba(6,182,212,.16) 28% 29%, transparent 29% 100%),
    radial-gradient(ellipse at 70% 14%, rgba(37,99,235,.2), transparent 42%),
    radial-gradient(ellipse at 30% 25%, rgba(245,158,11,.16), transparent 36%);
  opacity: .95;
}
.apple-bg__scan {
  position: absolute;
  left: -18%;
  top: 22%;
  width: 136%;
  height: 180px;
  background: linear-gradient(90deg, transparent, rgba(6,182,212,.08), rgba(37,99,235,.16), rgba(255,255,255,.36), transparent);
  transform: rotate(-8deg);
  animation: appleScanSweep 10s ease-in-out infinite;
}
.apple-bg__ticket {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 86px;
  min-height: 62px;
  padding: 10px 13px;
  border: 1px solid rgba(37, 99, 235, .13);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 22px 70px rgba(37, 99, 235, .11);
  backdrop-filter: blur(18px) saturate(155%);
  transform: rotate(var(--ticket-rotate, -4deg));
}
.apple-bg__ticket strong { color: var(--home-indigo); font-size: 19px; line-height: 1; }
.apple-bg__ticket small { color: #7c8a84; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.apple-bg__ticket--one { right: 7%; top: 18%; --ticket-rotate: 5deg; animation: appleTicketFloat 8s ease-in-out infinite alternate; }
.apple-bg__ticket--two { left: 7%; top: 37%; --ticket-rotate: -8deg; animation: appleTicketFloat 10s ease-in-out infinite alternate-reverse; }
.apple-bg__ticket--three { right: 20%; bottom: 17%; --ticket-rotate: 7deg; animation: appleTicketFloat 9s ease-in-out infinite alternate; }
.apple-bg__grain { position: absolute; inset: 0; opacity: .035; mix-blend-mode: multiply; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); }
@keyframes appleScanSweep { 0%, 18% { transform: translateX(-18%) rotate(-8deg); opacity: .25; } 54% { opacity: .85; } 100% { transform: translateX(18%) rotate(-8deg); opacity: .3; } }
@keyframes appleTicketFloat { to { transform: translate3d(18px, -22px, 0) rotate(calc(var(--ticket-rotate) * -1)); } }

.apple-shell { width: min(1220px, calc(100% - 48px)); margin-inline: auto; }

.landing-cursor-glow {
  position: fixed;
  z-index: -1;
  width: 520px;
  height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(86, 114, 255, .13), rgba(66, 216, 255, .08) 28%, transparent 68%);
  transform: translate3d(var(--mouse-x, 50vw), var(--mouse-y, 28vh), 0);
  will-change: transform;
}
.has-fine-pointer .landing-cursor-glow { opacity: 1; }

/* Header */
.apple-header.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: padding .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.apple-header.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(250, 251, 255, .74);
  border-color: rgba(24, 34, 76, .08);
  box-shadow: 0 18px 52px rgba(47, 55, 104, .08);
  backdrop-filter: blur(22px) saturate(170%);
}
.apple-header__inner.site-header__inner {
  width: min(1240px, calc(100% - 42px));
  min-height: 54px;
  padding: 0 4px;
}
.apple-brand { gap: 11px; }
.apple-brand__mark.brand__mark {
  width: 42px;
  height: 42px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 14px;
  background: linear-gradient(135deg, #0b1220, #2563eb 52%, #06b6d4);
  box-shadow: 0 18px 42px rgba(37, 99, 235, .28), inset 0 1px 0 rgba(255,255,255,.38);
}
.apple-brand__text.brand__text { color: #101426; font-weight: 900; letter-spacing: -.045em; }
.apple-brand__text.brand__text span { color: var(--home-indigo); }
.apple-nav.site-nav { gap: 30px; }
.apple-nav.site-nav a {
  position: relative;
  color: rgba(20, 27, 58, .66);
  font-size: 13px;
  font-weight: 760;
}
.apple-nav.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--home-violet), var(--home-cyan));
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .18s ease, transform .18s ease;
}
.apple-nav.site-nav a:hover { color: #121734; }
.apple-nav.site-nav a:hover::after { opacity: 1; transform: scaleX(1); }
.apple-cart.header-cart {
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(30, 40, 86, .1);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: #222947;
  box-shadow: 0 12px 36px rgba(50, 57, 104, .08);
  backdrop-filter: blur(16px);
}
.apple-cart.header-cart span { background: linear-gradient(135deg, var(--home-violet), var(--home-cyan)); color: #fff; }
.apple-header-cta.header-cta,
.apple-home .primary-cta,
.apple-home .hero-prompt__button {
  color: #fff;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #06b6d4 100%);
  box-shadow: 0 18px 44px rgba(37, 99, 235, .24), inset 0 1px 0 rgba(255,255,255,.32);
}
.apple-header-cta.header-cta { min-height: 42px; padding: 0 19px; border-radius: 999px; font-size: 13px; font-weight: 850; }
.apple-header-cta.header-cta:hover,
.apple-home .primary-cta:hover,
.apple-home .hero-prompt__button:hover { transform: translateY(-2px); filter: saturate(112%) brightness(1.03); }
.apple-menu.menu-toggle { border-radius: 999px; background: rgba(255,255,255,.78); }

/* Hero */
.apple-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(820px, 96vh, 1020px);
  padding: 154px 0 88px;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255,255,255,.9) 0 24%, rgba(244, 255, 249, .42) 24% 68%, rgba(232, 252, 244, .72) 68%),
    radial-gradient(ellipse at 76% 18%, rgba(24,200,255,.26), transparent 32%),
    radial-gradient(ellipse at 34% 12%, rgba(255,184,77,.18), transparent 34%);
}
.apple-hero::before {
  content: "";
  position: absolute;
  left: 47%;
  top: 74px;
  width: min(1040px, 78vw);
  height: min(760px, 58vw);
  border-radius: 46px;
  transform: translateX(-50%) rotate(-7deg);
  background:
    repeating-linear-gradient(90deg, rgba(15,122,72,.12) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(15,122,72,.09) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, rgba(255,255,255,.5), rgba(34,213,139,.14));
  mask-image: linear-gradient(110deg, transparent 0, black 16% 84%, transparent 100%);
  filter: blur(.1px);
  opacity: .62;
  z-index: -1;
}
.apple-hero::after {
  content: "";
  position: absolute;
  inset: 108px max(-90px, -4vw) auto auto;
  width: min(880px, 64vw);
  height: min(560px, 42vw);
  border-radius: 38px;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(24,200,255,.16) 12% 14%, transparent 14% 28%, rgba(34,213,139,.22) 28% 30%, transparent 30%),
    linear-gradient(140deg, rgba(255,184,77,.2), rgba(255,255,255,.04), rgba(24,200,255,.16));
  mask-image: linear-gradient(90deg, transparent 0, black 20% 78%, transparent 100%);
  opacity: .74;
  transform: rotate(-11deg);
  animation: heroSignalDrift 13s ease-in-out infinite alternate;
  z-index: -1;
}
@keyframes heroSignalDrift {
  to { transform: translate3d(-46px, 32px, 0) rotate(-5deg) scale(1.03); opacity: .94; }
}
.hero-market-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-market-scene__route {
  position: absolute;
  right: min(6vw, 92px);
  top: 188px;
  width: min(640px, 52vw);
  height: 420px;
  border: 2px dashed rgba(15, 122, 72, .28);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 52% 48% 46% 54%;
  transform: rotate(-10deg);
  animation: heroRoutePulse 5.8s ease-in-out infinite;
}
.hero-market-scene__pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 3px solid #fff;
  border-radius: 14px 14px 14px 4px;
  background: linear-gradient(135deg, #1d4ed8, #22d3ee);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(15, 122, 72, .22);
  transform: rotate(-45deg);
}
.hero-market-scene__pin--one { right: 43%; top: 246px; }
.hero-market-scene__pin--two { right: 18%; top: 352px; background: linear-gradient(135deg, #06b6d4, #2563eb); }
.hero-market-scene__pin--three { right: 35%; top: 564px; background: linear-gradient(135deg, #ffb84d, #ff8a3d); }
.hero-market-scene__deal {
  position: absolute;
  padding: 10px 13px;
  border: 1px solid rgba(15, 122, 72, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  color: #173f31;
  font-size: 12px;
  font-weight: 880;
  box-shadow: 0 18px 54px rgba(37, 99, 235, .1);
  backdrop-filter: blur(18px);
  animation: heroDealFloat 8s ease-in-out infinite alternate;
}
.hero-market-scene__deal--one { left: 8%; top: 158px; }
.hero-market-scene__deal--two { right: 10%; top: 145px; animation-delay: -2s; }
.hero-market-scene__deal--three { left: 46%; bottom: 110px; animation-delay: -4s; }
@keyframes heroRoutePulse { 50% { border-color: rgba(24,200,255,.42); border-left-color: transparent; border-bottom-color: transparent; } }
@keyframes heroDealFloat { to { transform: translate3d(16px, -18px, 0); } }
.apple-hero__shell {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}
.apple-hero__copy { position: relative; z-index: 4; }
.apple-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 14px;
  margin-bottom: 28px;
  border: 1px solid rgba(72, 88, 151, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: #4b55a4;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .02em;
  box-shadow: 0 12px 38px rgba(65, 73, 125, .08);
  backdrop-filter: blur(16px);
}
.apple-eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--home-violet), var(--home-cyan)); box-shadow: 0 0 0 6px rgba(37, 99, 235, .12); }
.apple-hero__title {
  max-width: 760px;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(58px, 7vw, 104px);
  line-height: .91;
  letter-spacing: -.083em;
  font-weight: 900;
}
.apple-hero__title em {
  display: inline-block;
  font-style: normal;
  color: transparent;
  background: linear-gradient(100deg, #1d4ed8 0%, #2563eb 45%, #06b6d4 95%);
  -webkit-background-clip: text;
  background-clip: text;
  animation: titleGradient 8s ease-in-out infinite alternate;
}
@keyframes titleGradient { to { filter: hue-rotate(18deg) saturate(118%); } }
.apple-hero__lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--home-muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.72;
}

.hero-prompt {
  position: relative;
  z-index: 10;
  width: min(650px, 100%);
  margin-top: 36px;
  padding: 10px;
  border: 1px solid rgba(55, 70, 140, .13);
  border-radius: 30px;
  background: rgba(255,255,255,.74);
  box-shadow: var(--home-shadow);
  backdrop-filter: blur(24px) saturate(160%);
}
.hero-prompt::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(15,122,72,.28), rgba(66,214,255,.28), rgba(82,240,208,.24));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-prompt__label {
  display: block;
  padding: 4px 16px 9px;
  color: #67728d;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.hero-prompt__box {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 8px 8px 8px 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(40, 55, 112, .09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
}
.hero-prompt__spark { color: var(--home-violet); font-size: 18px; animation: sparkPulse 2.6s ease-in-out infinite; }
@keyframes sparkPulse { 50% { transform: scale(1.16) rotate(7deg); opacity: .68; } }
.hero-prompt__input {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #11162d;
  font-size: 18px;
  font-weight: 650;
  pointer-events: auto;
}
.hero-prompt__input::placeholder { color: #9aa5be; font-weight: 520; }
.hero-prompt__box:focus-within { box-shadow: 0 0 0 5px rgba(37, 99, 235, .13), inset 0 1px 0 rgba(255,255,255,.95); border-color: rgba(37, 99, 235, .3); }
.hero-prompt__button {
  min-width: 168px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 22px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}
.hero-prompt__button span { display: inline; }
.hero-prompt__chips { display: flex; flex-wrap: wrap; gap: 9px; padding: 11px 6px 2px; }
.hero-prompt__chips button {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(44, 57, 112, .11);
  border-radius: 999px;
  background: rgba(246, 248, 255, .9);
  color: #586381;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.hero-prompt__chips button:hover { transform: translateY(-1px); border-color: rgba(101,86,255,.28); background: #fff; color: var(--home-indigo); }
.apple-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.apple-proof span {
  min-width: 142px;
  padding: 13px 16px;
  border: 1px solid rgba(42, 54, 112, .1);
  border-radius: 18px;
  background: rgba(255,255,255,.54);
  box-shadow: 0 10px 35px rgba(52, 64, 119, .06);
  backdrop-filter: blur(16px);
}
.apple-proof strong,
.apple-proof small { display: block; }
.apple-proof strong { color: #151a32; font-size: 13px; }
.apple-proof small { margin-top: 3px; color: #7f8aa3; font-size: 11px; }

/* Visual mockup */
.apple-hero__visual { position: relative; z-index: 3; transform-style: preserve-3d; will-change: transform; }
.apple-hero__visual::before,
.apple-hero__visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  z-index: -1;
}
.apple-hero__visual::before {
  inset: -56px -62px -42px 42px;
  background:
    radial-gradient(circle at 72% 18%, rgba(66,216,255,.36), transparent 33%),
    radial-gradient(circle at 28% 72%, rgba(15,122,72,.22), transparent 38%),
    radial-gradient(circle at 56% 58%, rgba(82,240,208,.2), transparent 44%);
  filter: blur(12px);
  opacity: .9;
  animation: heroVisualGlow 9s ease-in-out infinite alternate;
}
.apple-hero__visual::after {
  left: 5%;
  right: -4%;
  bottom: -34px;
  height: 92px;
  background: radial-gradient(ellipse, rgba(55,78,170,.24), transparent 68%);
  filter: blur(10px);
}
@keyframes heroVisualGlow {
  to { transform: translate3d(-22px, 18px, 0) scale(1.03); filter: blur(18px) saturate(118%); }
}
.device-card {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  border: 1px solid rgba(45, 57, 113, .12);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(245,249,255,.56)),
    rgba(255,255,255,.62);
  box-shadow: 0 50px 140px rgba(49, 60, 122, .24), 0 0 0 1px rgba(255,255,255,.42), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(28px) saturate(150%);
}
.device-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 14%, rgba(66,216,255,.28), transparent 32%), radial-gradient(circle at 26% 82%, rgba(15,122,72,.15), transparent 36%);
  pointer-events: none;
}
.device-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 12%, rgba(255,255,255,.52) 42%, transparent 62%);
  transform: translateX(-120%);
  animation: deviceSheen 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes deviceSheen { 0%, 36% { transform: translateX(-120%); } 54%, 100% { transform: translateX(120%); } }
.device-card__chrome {
  position: relative;
  z-index: 1;
  height: 58px;
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  align-items: center;
  gap: 7px;
  padding: 0 19px;
  border-bottom: 1px solid rgba(42, 55, 108, .08);
  background: rgba(255,255,255,.64);
}
.device-card__chrome span { width: 9px; height: 9px; border-radius: 50%; }
.device-card__chrome span:nth-child(1) { background: #ff8d7a; }
.device-card__chrome span:nth-child(2) { background: #ffd35b; }
.device-card__chrome span:nth-child(3) { background: #61d4ac; }
.device-card__chrome strong {
  justify-self: center;
  max-width: 72%;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(42, 55, 108, .08);
  color: #78839d;
  font-size: 11px;
  font-weight: 700;
}
.device-card__stage { position: relative; z-index: 1; min-height: 532px; padding: 26px; }
.device-panel {
  position: relative;
  z-index: 2;
  padding: 24px;
  border-radius: 28px;
  background: rgba(12, 16, 37, .88);
  color: #fff;
  box-shadow: 0 24px 70px rgba(24, 34, 83, .24);
  overflow: hidden;
}
.device-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 0%, rgba(66,216,255,.22), transparent 36%); pointer-events: none; }
.device-panel__kicker { position: relative; display: inline-flex; align-items: center; gap: 8px; color: #bfc9ff; font-size: 11px; font-weight: 860; text-transform: uppercase; letter-spacing: .1em; }
.device-panel__kicker span { width: 8px; height: 8px; border-radius: 50%; background: var(--home-cyan); box-shadow: 0 0 0 6px rgba(66,216,255,.13); }
.device-panel h2 { position: relative; margin: 20px 0 8px; font-size: 30px; line-height: 1.04; letter-spacing: -.05em; }
.device-panel p { position: relative; margin: 0; color: #b3bdd7; font-size: 14px; }
.device-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  margin-top: 20px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  color: #eef4ff;
}
.device-search span { color: var(--home-cyan); }
.device-search em { font-style: normal; color: #eef4ff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.device-results {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: 78%;
  margin: -8px 0 0 auto;
}
.device-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid rgba(52, 65, 122, .11);
  border-radius: 19px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 42px rgba(45, 56, 111, .1);
  animation: resultFloat 6s ease-in-out infinite;
}
.device-result.is-two { margin-right: 26px; animation-delay: -1.8s; }
.device-result.is-three { margin-right: 66px; animation-delay: -3.2s; }
.device-result strong { color: #171c34; font-size: 13px; }
.device-result span { color: var(--home-indigo); font-size: 12px; font-weight: 850; white-space: nowrap; }
@keyframes resultFloat { 50% { transform: translateY(-7px); } }
.device-map {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  height: 190px;
  border: 1px solid rgba(45, 57, 113, .1);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(30deg, transparent 47%, rgba(255,255,255,.74) 48%, rgba(255,255,255,.74) 51%, transparent 52%),
    linear-gradient(100deg, rgba(82,240,208,.2), rgba(255,184,77,.14)),
    #edf4ff;
  background-size: 120px 120px, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.device-map__route { position: absolute; left: 22%; right: 22%; top: 54%; height: 4px; border-radius: 99px; background: linear-gradient(90deg, var(--home-violet), var(--home-cyan)); transform: rotate(-14deg); box-shadow: 0 0 0 6px rgba(76, 121, 255, .12); }
.device-map__pin { position: absolute; display: grid; place-items: center; border-radius: 50%; font-size: 12px; font-weight: 900; box-shadow: 0 14px 35px rgba(37, 58, 126, .2); }
.device-map__pin--user { width: 18px; height: 18px; left: 22%; top: 56%; background: #fff; border: 5px solid var(--home-indigo); }
.device-map__pin--shop { width: 34px; height: 34px; color: #fff; background: linear-gradient(135deg, var(--home-indigo), var(--home-cyan)); }
.device-map__pin--a { left: 52%; top: 35%; }
.device-map__pin--b { left: 68%; top: 60%; }
.float-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 14px 16px;
  border: 1px solid rgba(35, 48, 103, .1);
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 22px 55px rgba(46, 58, 118, .16);
  backdrop-filter: blur(18px);
  animation: badgeFloat 6s ease-in-out infinite;
}
.float-badge span { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 15px; color: #fff; background: linear-gradient(135deg, var(--home-indigo), var(--home-cyan)); font-size: 11px; font-weight: 900; }
.float-badge strong { color: #171c34; font-size: 13px; }
.float-badge--pdf { left: -52px; bottom: 70px; }
.float-badge--map { right: -34px; top: 112px; animation-delay: -2.4s; }
@keyframes badgeFloat { 50% { transform: translateY(-10px); } }

.apple-marquee { overflow: hidden; border-block: 1px solid rgba(36, 48, 102, .08); background: rgba(255,255,255,.48); backdrop-filter: blur(18px); }
.apple-marquee__track { display: flex; gap: 12px; width: max-content; padding: 20px 0; animation: marquee 28s linear infinite; }
.apple-marquee span { display: inline-flex; align-items: center; min-height: 38px; padding: 0 18px; border-radius: 999px; border: 1px solid rgba(51, 64, 124, .1); background: rgba(255,255,255,.7); color: #46506f; font-size: 13px; font-weight: 830; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections */
.apple-section { position: relative; padding: 112px 0; }
.apple-section--bento { background: rgba(255,255,255,.34); }
.apple-section-head { max-width: 860px; margin: 0 auto 50px; text-align: center; }
.apple-section-head span,
.apple-kicker { display: inline-flex; margin-bottom: 15px; color: var(--home-indigo); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.apple-section-head h2,
.workflow-copy h2,
.apple-final-cta h2 { margin: 0; color: #101529; font-size: clamp(40px, 5.4vw, 72px); line-height: .99; letter-spacing: -.069em; font-weight: 900; }
.apple-section-head p,
.workflow-copy p,
.apple-final-cta p { max-width: 720px; margin: 22px auto 0; color: var(--home-muted); font-size: 17px; line-height: 1.75; }
.bento-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-auto-rows: minmax(260px, auto); gap: 18px; }
.bento-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(36, 49, 104, .1);
  border-radius: 34px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--home-shadow-soft);
  backdrop-filter: blur(22px) saturate(150%);
}
.bento-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 88% 10%, rgba(66,216,255,.18), transparent 30%), radial-gradient(circle at 12% 90%, rgba(255,184,77,.14), transparent 34%); pointer-events: none; }
.bento-card--large { grid-row: span 2; min-height: 540px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(245,248,255,.66)); }
.bento-card--wide { grid-column: span 2; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 28px; min-height: 260px; }
.bento-card--route { min-height: 320px; padding-bottom: 168px; }
.bento-card--shopping::after,
.bento-card--route::after,
.bento-card--collab::after,
.bento-card--map::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -68px;
  bottom: -82px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(66,216,255,.2), transparent 70%);
  pointer-events: none;
  animation: featureGlow 7s ease-in-out infinite alternate;
}
.bento-card--collab::after { background: radial-gradient(circle, rgba(15,122,72,.18), transparent 70%); animation-delay: -2s; }
.bento-card--map::after { background: radial-gradient(circle, rgba(82,240,208,.22), transparent 70%); animation-delay: -3.2s; }
@keyframes featureGlow { to { transform: translate3d(-18px, -16px, 0) scale(1.08); opacity: .72; } }
.bento-card__copy,
.bento-card > * { position: relative; z-index: 1; }
.bento-card__tag { display: block; margin-bottom: 11px; color: var(--home-indigo); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.bento-card h3 { max-width: 540px; margin: 0 0 12px; color: #11162c; font-size: clamp(24px, 2.4vw, 38px); line-height: 1.05; letter-spacing: -.05em; }
.bento-card p { max-width: 520px; margin: 0; color: var(--home-muted); font-size: 15px; line-height: 1.68; }
.bento-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 42px; border-radius: 18px; color: #fff; background: linear-gradient(135deg, var(--home-indigo), var(--home-cyan)); box-shadow: 0 18px 44px rgba(68, 91, 255, .22); font-size: 22px; }
.message-stack { margin-top: 30px; display: grid; gap: 12px; }
.message { width: fit-content; max-width: 92%; padding: 14px 16px; border-radius: 19px; font-size: 14px; line-height: 1.45; box-shadow: 0 16px 45px rgba(43, 56, 111, .1); }
.message--user { margin-left: auto; color: #fff; background: linear-gradient(135deg, var(--home-indigo), var(--home-violet)); border-bottom-right-radius: 7px; }
.message--ai { color: #202847; background: #fff; border-bottom-left-radius: 7px; }
.message-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 8px; }
.message-list span { min-height: 46px; display: grid; place-items: center; border: 1px solid rgba(45,58,114,.1); border-radius: 16px; background: rgba(255,255,255,.7); color: #47516f; font-size: 12px; font-weight: 820; }
.route-preview {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  height: 118px;
  border: 1px solid rgba(45,58,114,.08);
  border-radius: 25px;
  overflow: hidden;
  background:
    linear-gradient(25deg, transparent 48%, rgba(255,255,255,.82) 49%, rgba(255,255,255,.82) 51%, transparent 52%),
    linear-gradient(120deg, rgba(66,216,255,.18), rgba(255,184,77,.14)),
    #f3f7ff;
  background-size: 82px 82px, auto, auto;
}
.route-preview__line {
  position: absolute;
  left: 18%;
  right: 16%;
  top: 55%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-violet), var(--home-cyan), var(--home-mint));
  transform: rotate(-10deg);
  box-shadow: 0 0 0 7px rgba(84, 119, 255, .11);
}
.route-preview i {
  position: absolute;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--home-indigo), var(--home-cyan));
  box-shadow: 0 14px 36px rgba(59, 91, 210, .22);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  animation: routePin 4.8s ease-in-out infinite;
}
.route-preview i:nth-of-type(1) { left: 18%; top: 51%; }
.route-preview i:nth-of-type(2) { left: 48%; top: 30%; animation-delay: -.8s; }
.route-preview i:nth-of-type(3) { right: 15%; top: 57%; animation-delay: -1.6s; }
@keyframes routePin { 50% { transform: translateY(-8px); } }
.collab-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}
.collab-stack span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(45,58,114,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: #46506f;
  box-shadow: 0 12px 34px rgba(46, 58, 118, .1);
  font-size: 12px;
  font-weight: 860;
}
.collab-stack span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--home-violet), var(--home-cyan));
  box-shadow: 0 0 0 5px rgba(37, 99, 235, .1);
}
.export-dock { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.export-dock span { min-width: 78px; min-height: 52px; display: grid; place-items: center; border-radius: 17px; color: #fff; background: linear-gradient(135deg, #1d4ed8, #2563eb 55%, #06b6d4); box-shadow: 0 16px 38px rgba(37, 99, 235, .2); font-size: 12px; font-weight: 900; }
.store-map-preview {
  position: relative;
  min-height: 112px;
  margin-top: 26px;
  border: 1px solid rgba(45,58,114,.08);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(30deg, transparent 47%, rgba(255,255,255,.82) 48%, rgba(255,255,255,.82) 51%, transparent 52%),
    radial-gradient(circle at 84% 20%, rgba(66,216,255,.22), transparent 32%),
    linear-gradient(120deg, rgba(82,240,208,.18), rgba(255,184,77,.12)),
    #f3f7ff;
  background-size: 78px 78px, auto, auto, auto;
}
.store-map-preview__road {
  position: absolute;
  left: 14%;
  right: 13%;
  top: 52%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-violet), var(--home-cyan), var(--home-mint));
  transform: rotate(-13deg);
  box-shadow: 0 0 0 7px rgba(84, 119, 255, .1);
}
.store-map-preview__pin {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
  animation: routePin 4.8s ease-in-out infinite;
}
.store-map-preview__pin--home {
  width: 18px;
  height: 18px;
  left: 18%;
  top: 55%;
  border: 5px solid var(--home-indigo);
  background: #fff;
}
.store-map-preview__pin--one,
.store-map-preview__pin--two {
  width: 32px;
  height: 32px;
  color: #fff;
  background: linear-gradient(135deg, var(--home-indigo), var(--home-cyan));
  box-shadow: 0 14px 35px rgba(37, 58, 126, .2);
}
.store-map-preview__pin--one { left: 48%; top: 27%; animation-delay: -.8s; }
.store-map-preview__pin--two { right: 16%; top: 58%; animation-delay: -1.6s; }

.apple-section--workflow { padding: 120px 0; background: linear-gradient(180deg, rgba(255,255,255,.4), rgba(239,244,255,.72)); }
.workflow-shell { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: 58px; align-items: center; }
.workflow-copy p { margin-inline: 0; }
.workflow-cta { min-height: 58px; margin-top: 32px; padding: 0 24px; border-radius: 999px; font-size: 15px; font-weight: 900; }
.workflow-steps { display: grid; gap: 16px; }
.workflow-step {
  position: relative;
  min-height: 140px;
  padding: 28px 30px 28px 96px;
  border: 1px solid rgba(37, 49, 105, .1);
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--home-shadow-soft);
  backdrop-filter: blur(20px);
}
.workflow-step span { position: absolute; left: 28px; top: 29px; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 17px; color: #fff; background: linear-gradient(135deg, var(--home-indigo), var(--home-cyan)); font-size: 13px; font-weight: 900; }
.workflow-step strong { display: block; margin-bottom: 8px; color: #11162c; font-size: 23px; letter-spacing: -.04em; }
.workflow-step p { margin: 0; color: var(--home-muted); font-size: 15px; line-height: 1.6; }

.apple-section--pricing {
  padding-top: 116px;
  background: linear-gradient(180deg, rgba(255,255,255,.52), rgba(238,243,255,.88));
}
.home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.home-price-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 30px;
  border: 1px solid rgba(36, 49, 104, .1);
  border-radius: 34px;
  background: rgba(255,255,255,.74);
  box-shadow: var(--home-shadow-soft);
  backdrop-filter: blur(22px) saturate(150%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.home-price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 86% 8%, rgba(66,216,255,.18), transparent 30%);
  pointer-events: none;
}
.home-price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(88, 104, 255, .22);
  box-shadow: 0 34px 88px rgba(48, 62, 130, .16);
}
.home-price-card--featured {
  color: #fff;
  background:
    radial-gradient(circle at 80% 8%, rgba(66,216,255,.24), transparent 33%),
    radial-gradient(circle at 14% 92%, rgba(15,122,72,.22), transparent 38%),
    linear-gradient(145deg, #0b1026 0%, #111a43 58%, #16235b 100%);
  box-shadow: 0 44px 118px rgba(35, 50, 110, .28);
  transform: translateY(-12px);
}
.home-price-card--featured:hover { transform: translateY(-18px); }
.home-price-card > * { position: relative; z-index: 1; }
.home-price-card__badge {
  width: fit-content;
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--home-indigo);
  background: rgba(238,242,255,.95);
  font-size: 11px;
  font-weight: 930;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.home-price-card--featured .home-price-card__badge { color: #cdefff; background: rgba(255,255,255,.12); }
.home-price-card h3 {
  margin: 24px 0 16px;
  color: #101529;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -.052em;
}
.home-price-card--featured h3 { color: #fff; }
.home-price-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.home-price-card__price strong { color: #101529; font-size: 46px; line-height: 1; letter-spacing: -.065em; }
.home-price-card__price span { color: #74809a; font-size: 13px; font-weight: 780; }
.home-price-card--featured .home-price-card__price strong { color: #fff; }
.home-price-card--featured .home-price-card__price span { color: #aebcff; }
.home-price-card p {
  min-height: calc(15px * 1.55 * 2);
  max-height: calc(15px * 1.55 * 2);
  margin: 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.55;
  overflow: hidden;
  text-wrap: balance;
}
.home-price-card--featured p { color: #c3cbea; }
.home-price-card ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 30px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(36, 49, 104, .1);
  list-style: none;
}
.home-price-card--featured ul { border-color: rgba(255,255,255,.12); }
.home-price-card li {
  position: relative;
  padding-left: 27px;
  color: #4f5b76;
  font-size: 14px;
  line-height: 1.45;
}
.home-price-card--featured li { color: #d8def6; }
.home-price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--home-violet), var(--home-cyan));
  box-shadow: 0 0 0 5px rgba(37, 99, 235, .1);
}
.home-price-card li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(.25em + 5px);
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.home-price-card__button {
  min-height: 54px;
  margin-top: auto;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 54%, #06b6d4 100%);
  box-shadow: 0 18px 44px rgba(37, 99, 235, .24), inset 0 1px 0 rgba(255,255,255,.32);
  cursor: pointer;
  font-size: 14px;
  font-weight: 920;
  transition: transform .18s ease, filter .18s ease;
}
.home-price-card__button:hover { transform: translateY(-2px); filter: saturate(112%) brightness(1.03); }

.apple-final-cta { padding: 28px 0 112px; }
.apple-final-cta__inner {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 64px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 44px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(15,122,72,.32), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(66,216,255,.38), transparent 34%),
    linear-gradient(135deg, #090d22 0%, #111a43 56%, #101a35 100%);
  box-shadow: 0 45px 125px rgba(35, 50, 110, .24);
}
.apple-final-cta__inner::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(circle, black, transparent 78%); }
.apple-final-cta__inner > * { position: relative; z-index: 1; }
.apple-final-cta span { color: #8deeff; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; }
.apple-final-cta h2 { max-width: 860px; color: #fff; }
.apple-final-cta p { color: #b6c1df; }
.primary-cta--inverse { min-height: 58px; margin-top: 30px; padding: 0 26px; border-radius: 999px; color: #11162c !important; background: linear-gradient(135deg, #fff, #dff8ff) !important; box-shadow: 0 18px 44px rgba(74, 213, 255, .18), inset 0 1px 0 rgba(255,255,255,.8) !important; font-weight: 900; }

.apple-footer.site-footer { background: #f6f8ff; border-top: 1px solid rgba(35, 47, 101, .08); }
.apple-footer .site-footer__inner { color: #69748d; }
.apple-footer .site-footer__links a { color: #394361; }

/* Reveal animation */
.reveal-item { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal-item.is-visible { opacity: 1; transform: none; }
.apple-hero .reveal-item:nth-child(2) { transition-delay: .07s; }
.apple-hero .reveal-item:nth-child(3) { transition-delay: .13s; }
.apple-hero .reveal-item:nth-child(4) { transition-delay: .18s; }
.apple-hero .reveal-item:nth-child(5) { transition-delay: .24s; }

@media (max-width: 1080px) {
  .apple-hero { min-height: auto; padding-bottom: 72px; }
  .hero-market-scene__deal--one { left: 6%; top: 132px; }
  .hero-market-scene__route { opacity: .5; }
  .apple-hero__shell, .workflow-shell { grid-template-columns: 1fr; }
  .apple-hero__copy { text-align: center; }
  .apple-hero__lead, .hero-prompt, .apple-proof { margin-left: auto; margin-right: auto; }
  .apple-proof { justify-content: center; }
  .apple-hero__visual { max-width: 760px; margin-inline: auto; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--large { grid-column: span 2; min-height: 460px; }
  .bento-card--wide { grid-column: span 2; }
  .home-pricing-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .home-price-card,
  .home-price-card--featured { min-height: auto; transform: none; }
  .home-price-card--featured:hover { transform: translateY(-8px); }
}

@media (max-width: 820px) {
  .apple-shell { width: min(100% - 32px, 640px); }
  .apple-nav.site-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(33, 45, 98, .1);
    border-radius: 22px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 24px 70px rgba(42, 53, 108, .16);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .18s ease, transform .18s ease;
  }
  .apple-nav.site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .apple-nav.site-nav a { min-height: 44px; display: flex; align-items: center; padding: 0 14px; border-radius: 14px; }
  .apple-nav.site-nav a:hover { background: #f4f6ff; }
  .apple-nav.site-nav a::after { display: none; }
  .apple-menu.menu-toggle { display: block; }
  .apple-header-cta.header-cta { display: none; }
  .apple-hero { padding-top: 122px; }
  .apple-bg__ticket { display: none; }
  .hero-market-scene__deal,
  .hero-market-scene__pin,
  .hero-market-scene__route { display: none; }
  .apple-hero__title { font-size: clamp(52px, 14vw, 74px); letter-spacing: -.078em; }
  .hero-prompt__box { grid-template-columns: 24px 1fr; padding-right: 10px; }
  .hero-prompt__button { grid-column: 1 / -1; width: 100%; min-width: 0; }
  .device-card { min-height: 520px; border-radius: 30px; }
  .device-card__stage { min-height: 462px; padding: 18px; }
  .device-results { width: 92%; }
  .device-result.is-two, .device-result.is-three { margin-right: 0; }
  .float-badge { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--large, .bento-card--wide { grid-column: auto; }
  .bento-card--wide { grid-template-columns: 1fr; }
  .export-dock { justify-content: flex-start; }
  .apple-section { padding: 78px 0; }
  .workflow-step { padding-left: 28px; padding-top: 92px; }
  .route-preview { position: relative; left: auto; right: auto; bottom: auto; margin-top: 24px; }
  .bento-card--route { min-height: auto; padding-bottom: 30px; }
  .apple-final-cta__inner { padding: 42px 24px; border-radius: 32px; }
}

@media (max-width: 520px) {
  .apple-header__inner.site-header__inner { width: min(100% - 24px, 640px); }
  .apple-brand__text.brand__text { font-size: 18px; }
  .apple-cart.header-cart { display: none; }
  .apple-hero { padding-top: 108px; }
  .apple-eyebrow { font-size: 11px; }
  .apple-hero__lead { font-size: 16px; }
  .hero-prompt { border-radius: 24px; padding: 8px; }
  .hero-prompt__box { min-height: 64px; border-radius: 18px; }
  .hero-prompt__input { font-size: 16px; }
  .apple-proof { display: grid; grid-template-columns: 1fr; }
  .device-card__chrome strong { max-width: 100%; font-size: 9px; }
  .device-card__chrome { grid-template-columns: auto auto auto; }
  .device-card__chrome strong { grid-column: 1 / -1; justify-self: stretch; }
  .device-panel { padding: 20px; }
  .device-panel h2 { font-size: 24px; }
  .device-map { left: 18px; right: 18px; height: 160px; }
  .device-results { margin-top: 10px; width: 100%; }
  .message-list { grid-template-columns: 1fr; }
  .home-price-card { padding: 24px; border-radius: 28px; }
  .home-price-card h3 { font-size: 27px; }
  .home-price-card__price strong { font-size: 40px; }
  .apple-marquee__track { animation-duration: 22s; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal-item { opacity: 1; transform: none; transition: none; }
  .apple-hero__visual { transform: none !important; }
  .landing-cursor-glow { display: none; }
}
