:root {
  --ink: #10110f;
  --ink-soft: #23251f;
  --paper: #f2f0e7;
  --paper-bright: #fbfaf5;
  --muted: #72746c;
  --line: rgba(16, 17, 15, 0.16);
  --acid: #d8ff43;
  --acid-strong: #c8f221;
  --blue: #4f6cff;
  --coral: #ff6b4a;
  --sand: #dfc9a5;
  --radius: 28px;
  --display: 'Syne', sans-serif;
  --body: 'Manrope', sans-serif;
  --shadow: 0 36px 80px rgba(16, 17, 15, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); line-height: 1.02; letter-spacing: -0.045em; }
em { color: var(--acid); font-style: normal; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 10px 14px; background: var(--acid); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.section-shell { width: min(1380px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, calc(100% - 28px));
  min-height: 76px;
  margin: 14px auto;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 18px;
  background: rgba(248, 247, 241, .82);
  box-shadow: 0 14px 38px rgba(16,17,15,.08);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 175px; }
.brand-image-wrap { display: grid; place-items: center; max-width: 180px; height: 42px; overflow: hidden; }
.brand-image-wrap img { max-height: 38px; width: auto; }
.brand-wordmark { display: none; font: 700 17px/1 var(--display); letter-spacing: .02em; }
.brand-wordmark small { display: block; margin-top: 4px; font-size: 8px; letter-spacing: .28em; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav > a { padding: 12px 14px; border-radius: 10px; font-size: 13px; font-weight: 700; }
.site-nav > a:not(.nav-cta):hover, .site-nav > a.active { background: rgba(16,17,15,.07); }
.site-nav .nav-cta { display: flex; gap: 18px; margin-left: 8px; color: #fff; background: var(--ink); }
.site-nav .nav-cta:hover { background: var(--blue); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--ink); }
.menu-toggle > span:not(.sr-only) { display: block; width: 19px; height: 1px; margin: 5px auto; background: #fff; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr);
  min-height: 760px;
  padding: 92px 7vw 52px;
  overflow: hidden;
  color: #fff;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 18%, rgba(79,108,255,.32), transparent 24%),
    radial-gradient(circle at 68% 85%, rgba(216,255,67,.13), transparent 28%),
    var(--ink);
}
.hero-compact {
  min-height: 0;
  padding: 56px 6vw 40px;
  align-items: center;
}
.hero-eyebrow {
  margin: 0 0 16px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-compact h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 72px);
}
.hero-compact .hero-lead { margin-bottom: 26px; }
.hero-compact .hero-visual { min-height: 460px; }
.hero-gallery {
  align-items: stretch;
  justify-content: center;
  min-height: 520px;
  padding: 12px 0 36px;
}
.hero-scene {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  height: min(52vh, 520px);
  overflow: hidden;
  border-radius: 28px;
  box-shadow:
    0 40px 90px rgba(0,0,0,.48),
    0 0 0 1px rgba(255,255,255,.08);
}
.hero-scene img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 46%;
}
.hero-screen {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 8px;
  width: min(42%, 210px);
  margin: 0;
  padding: 7px;
  border-radius: 20px;
  background: linear-gradient(160deg, #2c2f2a, #090a09);
  box-shadow:
    0 28px 64px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.14);
  transform: rotate(3.5deg);
}
.hero-screen img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 13px;
}
.kiosk-still { transform: none; animation: none; }
.kiosk-still:hover { transform: none; }
.hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, transparent, #000); pointer-events: none; }
.hero-copy { align-self: center; position: relative; z-index: 2; max-width: 780px; padding-bottom: 50px; }
.hero h1, .sector-hero h1 { max-width: 820px; margin-bottom: 28px; font-size: clamp(58px, 6.6vw, 112px); font-weight: 600; }
.hero h1 em, .sector-hero h1 em { display: block; }
.hero-lead { max-width: 640px; margin-bottom: 34px; color: rgba(255,255,255,.7); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-height: 56px; gap: 32px; padding: 0 20px; border-radius: 12px; font-size: 13px; font-weight: 700; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { min-width: 230px; color: var(--ink); background: var(--acid); }
.button-primary:hover { background: #fff; }
.button-ghost { color: #fff; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: rgba(255,255,255,.6); }
.button-dark-ghost { color: #fff; border: 1px solid rgba(255,255,255,.2); }

.hero-visual, .sector-visual { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 570px; perspective: 1600px; }
.kiosk { position: relative; z-index: 3; width: min(460px, 86%); padding: 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 28px; background: linear-gradient(135deg,#2e312c,#090a09); box-shadow: 0 55px 100px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.18); transform: rotateY(-8deg) rotateX(2deg) rotateZ(1.5deg); animation: kiosk-float 6s ease-in-out infinite; }
.kiosk-camera { position: absolute; top: 6px; left: 50%; z-index: 2; width: 4px; height: 4px; border-radius: 50%; background: #080908; box-shadow: 0 0 0 1px #40423d; }
.demo-screen { display: flex; flex-direction: column; aspect-ratio: 9 / 15.5; overflow: hidden; color: var(--ink); border-radius: 17px; background: #f6f4ed; }
.demo-screen-live { aspect-ratio: 16 / 10; position: relative; background: #111; }
.demo-screen-live .portal-still { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block; opacity: 0; transition: opacity .7s ease; background: #0b0c0a; }
.demo-screen-live .portal-still.is-active { opacity: 1; z-index: 1; }
.portal-still-overlay { position: absolute; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; gap: 2px; padding: 28px 14px 12px; color: #fff; background: linear-gradient(to top, rgba(10,12,10,.82), transparent); }
.portal-still-overlay .screen-kicker { color: var(--acid); }
.portal-still-overlay strong { font-size: 15px; letter-spacing: .02em; }
.portal-still-overlay small { color: rgba(255,255,255,.78); font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.editor-canvas-live { position: relative; overflow: hidden; color: #fff; }
.editor-canvas-live img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.editor-canvas-live span, .editor-canvas-live strong { position: relative; z-index: 1; }
.screen-topbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 17px 0; font-size: 8px; font-weight: 700; }
.screen-logo { letter-spacing: .08em; }
.screen-time { color: var(--muted); }
.screen-intro { padding: 42px 18px 22px; }
.screen-kicker { color: var(--blue); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.screen-intro h2 { margin: 8px 0 12px; font-size: clamp(25px, 2.3vw, 38px); }
.screen-intro p { color: var(--muted); font-size: 10px; line-height: 1.5; }
.screen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding: 0 12px; }
.screen-tile { display: flex; flex-direction: column; min-height: 92px; padding: 12px; text-align: left; border: 1px solid rgba(16,17,15,.09); border-radius: 13px; background: #fff; font-size: 10px; font-weight: 700; }
.screen-tile:nth-child(2) { background: var(--acid); }
.screen-tile > span { display: block; margin-bottom: auto; font-size: 19px; }
.screen-tile strong { display: block; font-size: 9px; }
.screen-tile small { margin-top: 2px; color: var(--muted); font-size: 7px; font-weight: 600; }
.screen-footer { display: flex; justify-content: space-between; margin: auto 12px 12px; padding: 12px 13px; color: #fff; border-radius: 11px; background: var(--ink); font-size: 8px; font-weight: 700; text-transform: uppercase; }
.kiosk-stand { position: relative; z-index: 2; width: 150px; height: 28px; margin-top: -6px; border-radius: 50%; background: linear-gradient(to bottom,#32352f,#0b0c0a); box-shadow: 0 25px 48px rgba(0,0,0,.35); }
.kiosk-stand::before { content: ''; position: absolute; left: 50%; bottom: 17px; width: 26px; height: 70px; background: #181a16; transform: translateX(-50%); }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.orbit-one { width: 470px; height: 470px; }
.orbit-two { width: 580px; height: 300px; transform: rotate(-24deg); }
@keyframes kiosk-float { 0%, 100% { transform: rotateY(-8deg) rotateX(2deg) rotateZ(1.5deg) translateY(0); } 50% { transform: rotateY(-5deg) rotateX(1deg) rotateZ(.5deg) translateY(-12px); } }

.audience-strip { display: flex; align-items: center; gap: 32px; padding: 26px max(24px, calc((100vw - 1380px)/2)); overflow: hidden; border-bottom: 1px solid var(--line); }
.audience-strip > p { flex: 0 0 auto; margin: 0; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.audience-marquee { display: flex; align-items: center; min-width: max-content; gap: 22px; font: 600 16px var(--display); }
.audience-marquee i { color: var(--blue); font-style: normal; font-size: 10px; }

.statement { display: block; padding-block: 140px; border-bottom: 1px solid var(--line); }
.statement h2 { max-width: 1050px; margin: 0; font-size: clamp(40px, 5.2vw, 80px); }
.statement h2 em { color: var(--blue); }

.benefits, .verticals, .faq { padding-block: 130px; }
.section-heading { margin-bottom: 64px; }
.section-heading h2 { margin: 0; font-size: clamp(44px, 5.5vw, 78px); }
.section-heading-inline { display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.section-heading-inline > p { max-width: 390px; margin-bottom: 6px; color: var(--muted); }
.bento-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 18px; }
.benefit-card { position: relative; display: flex; flex-direction: column; min-height: 500px; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-bright); }
.benefit-number { position: absolute; top: 24px; right: 24px; z-index: 2; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid currentColor; border-radius: 50%; font-size: 10px; font-weight: 700; }
.benefit-copy { position: relative; z-index: 2; max-width: 520px; margin-top: auto; }
.benefit-copy h3 { margin-bottom: 10px; font-size: clamp(27px, 3vw, 44px); }
.benefit-copy p { max-width: 460px; margin: 0; color: var(--muted); }
.benefit-large { min-height: 670px; }
.benefit-accent { color: var(--ink); background: var(--acid); }
.benefit-accent .benefit-copy p { color: rgba(16,17,15,.67); }
.benefit-dark { color: #fff; background: var(--ink); }
.benefit-dark .benefit-copy p { color: rgba(255,255,255,.56); }
.mini-editor { width: 76%; margin: 34px auto 60px; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: #e8e4d8; box-shadow: var(--shadow); transform: rotate(-2deg); }
.editor-bar { display: flex; align-items: center; gap: 5px; height: 34px; padding: 0 12px; border-bottom: 1px solid var(--line); }
.editor-bar i { width: 7px; height: 7px; border-radius: 50%; background: #c2bfb5; }
.editor-bar span { margin-left: auto; color: var(--muted); font-size: 8px; }
.editor-body { display: grid; grid-template-columns: 50px 1fr; min-height: 320px; }
.editor-sidebar { display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 22px; border-right: 1px solid var(--line); }
.editor-sidebar b { width: 17px; height: 17px; border: 1px solid #9d9b93; border-radius: 4px; }
.editor-canvas { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 42px; color: #fff; background: var(--blue); }
.editor-canvas span { font-size: 8px; letter-spacing: .16em; }
.editor-canvas strong { margin: 18px 0 30px; font: 600 clamp(24px, 3vw, 42px)/1 var(--display); letter-spacing: -.04em; }
.editor-button { padding: 10px 13px; border-radius: 7px; color: var(--ink); background: var(--acid); font-size: 9px; font-weight: 700; }
.signal-graphic { position: relative; display: grid; place-items: center; height: 290px; }
.signal-graphic span { position: absolute; width: 80px; height: 80px; border: 1px solid rgba(16,17,15,.35); border-radius: 50%; animation: signal 2.4s ease-out infinite; }
.signal-graphic span:nth-child(2) { animation-delay: .7s; }.signal-graphic span:nth-child(3) { animation-delay: 1.4s; }
.signal-graphic div { z-index: 2; padding: 13px 18px; color: var(--acid); border-radius: 8px; background: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
@keyframes signal { from { transform: scale(.8); opacity: 1; } to { transform: scale(3.1); opacity: 0; } }
.tap-graphic { position: relative; display: grid; gap: 9px; width: 72%; margin: 55px auto; }
.tap-card { padding: 16px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.05); font-size: 12px; }
.tap-card:nth-child(2) { color: var(--ink); background: var(--acid); transform: translateX(15px); }
.broadcast-icon { position: absolute; right: 15%; top: 47%; color: var(--blue); font-size: 35px; text-shadow: 0 2px 0 #fff; animation: broadcast-pulse 2s ease-in-out infinite; }
@keyframes broadcast-pulse { 0%,100% { transform:scale(.85); opacity:.65; } 50% { transform:scale(1.12); opacity:1; } }
.scale-graphic { display: flex; align-items: center; justify-content: center; height: 250px; }
.scale-graphic span { display: grid; place-items: center; width: 90px; height: 125px; margin-left: -18px; border: 1px solid var(--line); border-radius: 13px; background: #fff; box-shadow: 0 14px 34px rgba(16,17,15,.09); font: 600 26px var(--display); transform: rotate(-6deg); }
.scale-graphic span:nth-child(2) { transform: translateY(-12px) rotate(1deg); }.scale-graphic span:nth-child(3) { transform: rotate(7deg); }
.scale-graphic i { margin-left: 18px; color: var(--blue); font: 600 44px var(--display); }

.how { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; padding: 120px 7vw; color: #fff; border-radius: 32px; background: var(--blue); }
.how-intro h2 { margin: 0 0 30px; font-size: clamp(50px, 6vw, 86px); }
.how-intro h2 em { color: var(--acid); }
.how-intro > p { max-width: 440px; color: rgba(255,255,255,.67); }
.text-link { display: inline-flex; gap: 25px; margin-top: 28px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 12px; font-weight: 700; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 52px 1fr auto; gap: 24px; align-items: start; padding: 34px 0; border-top: 1px solid rgba(255,255,255,.2); }
.steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.step-number { display: grid; place-items: center; width: 42px; height: 42px; color: var(--ink); border-radius: 50%; background: var(--acid); font-size: 10px; font-weight: 700; }
.steps h3 { margin: 0 0 9px; font-size: 31px; }
.steps p { margin: 0; color: rgba(255,255,255,.62); }
.steps i { font-style: normal; font-size: 28px; }
.how-compact { gap: 5vw; margin-top: 28px; padding: 64px 6vw; }
.how-compact .how-intro h2 { margin-bottom: 16px; font-size: clamp(36px, 4vw, 52px); }
.how-compact .steps li { padding: 22px 0; grid-template-columns: 52px 1fr; }
.how-compact .steps h3 { font-size: 24px; }

.builder-section { padding-block: 88px; }
.builder-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #111;
  box-shadow: var(--shadow);
}
.builder-frame img { width: 100%; height: auto; }
.verticals-compact { padding-block: 80px; }
.verticals-compact .vertical-card { min-height: 0; }
.verticals-compact .vertical-art {
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 16px -26px;
}
.verticals-compact .vertical-copy h3 { font-size: clamp(24px, 2.2vw, 34px); margin-bottom: 10px; }
.faq-compact { padding-block: 72px; }
.contact-compact { padding: 72px 6vw; margin-bottom: 8px; }
.how-intro h2 { margin: 0 0 30px; font-size: clamp(50px, 6vw, 86px); }.how-intro h2 em { color: var(--acid); }
.how-intro > p { max-width: 440px; color: rgba(255,255,255,.67); }
.text-link { display: inline-flex; gap: 25px; margin-top: 28px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 12px; font-weight: 700; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 52px 1fr auto; gap: 24px; align-items: start; padding: 34px 0; border-top: 1px solid rgba(255,255,255,.2); }
.steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.step-number { display: grid; place-items: center; width: 42px; height: 42px; color: var(--ink); border-radius: 50%; background: var(--acid); font-size: 10px; font-weight: 700; }
.steps h3 { margin: 0 0 9px; font-size: 31px; }.steps p { margin: 0; color: rgba(255,255,255,.62); }.steps i { font-style: normal; font-size: 28px; }

.vertical-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.vertical-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vertical-card { position: relative; min-height: 760px; padding: 26px; overflow: hidden; border-radius: var(--radius); transition: transform .35s ease; }
.vertical-grid-three .vertical-card { min-height: 680px; }
.vertical-card:hover { transform: translateY(-7px); }
.vertical-tag { position: relative; z-index: 3; padding: 8px 10px; border: 1px solid currentColor; border-radius: 20px; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.vertical-art { position: relative; height: 390px; margin: 18px -26px; overflow: hidden; }
.layout-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.restaurant-card .layout-art img { object-position: right center; }
.hotel-card { background: var(--sand); }
.restaurant-card { background: #e7efe4; }
.hotel-art { background: linear-gradient(140deg,#a05e36,#e1c7a0 56%,#6b7f68); }
.arch { position: absolute; bottom: -25%; width: 48%; height: 110%; border: 17px solid rgba(244,238,219,.8); border-bottom: 0; border-radius: 150px 150px 0 0; }
.arch-one { left: 10%; }.arch-two { right: -5%; transform: scale(.78); }
.room-key { position: absolute; top: 25%; right: 15%; padding: 22px; color: #e9e3d7; border-radius: 4px; background: #172019; box-shadow: 0 20px 30px rgba(0,0,0,.22); font-size: 9px; letter-spacing: .14em; transform: rotate(7deg); }
.room-key strong { font: 600 30px var(--display); }
.travel-card { color: #fff; background: #233453; }
.travel-art { background: linear-gradient(to bottom,#ff7759 0 48%,#272441 48% 100%); }
.sun { position: absolute; top: 16%; left: 50%; width: 190px; height: 190px; border-radius: 50%; background: var(--acid); transform: translateX(-50%); }
.route { position: absolute; top: 35%; left: 12%; width: 75%; height: 35%; border: 2px dashed rgba(255,255,255,.5); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; transform: rotate(-12deg); }
.plane { position: absolute; top: 30%; right: 15%; font-size: 35px; transform: rotate(18deg); }
.destination-stamp { position: absolute; bottom: 15%; left: 12%; font: 600 45px/1 var(--display); }.destination-stamp small { font: 500 9px var(--body); letter-spacing: .12em; }
.vertical-copy { position: relative; z-index: 2; padding-top: 22px; }
.vertical-copy h3 { max-width: 570px; margin-bottom: 18px; font-size: clamp(38px, 4vw, 58px); }
.vertical-grid-three .vertical-copy h3 { font-size: clamp(28px, 2.5vw, 42px); }
.vertical-copy p { max-width: 520px; opacity: .65; }
.card-link { display: flex; justify-content: space-between; gap: 20px; margin-top: 36px; padding-top: 18px; border-top: 1px solid currentColor; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

.comparison { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; padding: 80px 6vw; border: 1px solid var(--line); border-radius: 30px; background: var(--paper-bright); }
.comparison-copy h2 { margin: 0; font-size: clamp(42px, 4.4vw, 65px); }.comparison-copy h2 em { color: var(--blue); }
.comparison-row { display: grid; grid-template-columns: .8fr 1fr 1fr; gap: 15px; padding: 22px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.comparison-row span:last-child { font-weight: 700; }.comparison-head { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.faq-list details { border-top: 1px solid var(--line); }.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; list-style: none; font: 600 19px var(--display); }
.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { color: var(--blue); font: 400 28px var(--body); }
.faq-list details p { max-width: 650px; padding: 0 40px 24px 0; color: var(--muted); }

.contact-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 8vw;
  align-items: start;
  margin-bottom: 20px;
  padding: 100px 7vw;
  color: #fff;
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 86%, rgba(216,255,67,.12), transparent 27%),
    var(--blue);
}
.contact-intro h2 { margin: 0 0 26px; font-size: clamp(48px, 5.5vw, 76px); }
.contact-intro h2 em { color: var(--acid); }
.contact-intro > p { max-width: 520px; color: rgba(255,255,255,.68); }
.contact-form { padding: 30px; color: var(--ink); border-radius: 22px; background: var(--paper-bright); box-shadow: 0 28px 60px rgba(22,25,61,.28); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; margin-bottom: 18px; }
.contact-form label > span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; padding: 15px 14px; color: var(--ink); border: 1px solid var(--line); border-radius: 10px; outline: none; background: #fff; font: 500 13px var(--body); transition: border-color .2s, box-shadow .2s; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(79,108,255,.12); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #a4a69e; }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 6px; }
.form-submit-row > p { max-width: 170px; margin: 0; color: var(--muted); font-size: 9px; }
.form-submit-row .button { width: auto; border: 0; cursor: pointer; }
.form-status { min-height: 20px; margin: 14px 0 0; color: var(--blue); font-size: 11px; font-weight: 700; }

/* Pricing */
.pricing-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  min-height: 690px;
  padding: 80px 7vw;
  overflow: hidden;
  color: #fff;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 40%, rgba(216,255,67,.13), transparent 26%),
    radial-gradient(circle at 16% 84%, rgba(79,108,255,.33), transparent 30%),
    var(--ink);
}
.pricing-hero-copy h1 { margin: 0 0 26px; font-size: clamp(62px, 7.2vw, 108px); }
.pricing-hero-copy > p:last-child { max-width: 590px; color: rgba(255,255,255,.66); font-size: 18px; }
.price-stamp { position: relative; display: flex; align-items: center; justify-content: center; flex-direction: column; justify-self: center; width: min(390px, 72vw); aspect-ratio: 1; color: var(--ink); border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 34px rgba(216,255,67,.06), 0 0 0 68px rgba(216,255,67,.025); transform: rotate(4deg); }
.price-stamp::before { content: ''; position: absolute; inset: 20px; border: 1px dashed rgba(16,17,15,.3); border-radius: 50%; }
.price-stamp > span { font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.price-stamp strong { font: 600 clamp(55px, 7vw, 90px)/1 var(--display); letter-spacing: -.07em; }
.price-stamp small { margin-top: 8px; text-align: center; font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.pricing-options { padding-block: 130px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 1120px; margin: 0 auto; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 590px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-bright); }
.price-card-featured { color: #fff; border-color: var(--ink); background: var(--ink); box-shadow: var(--shadow); }
.save-badge { position: absolute; top: 20px; right: 20px; padding: 9px 12px; color: var(--ink); border-radius: 20px; background: var(--acid); font-size: 8px; font-weight: 700; letter-spacing: .08em; }
.price-card-head { min-height: 90px; }
.price-label { font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.price-card-head p { margin-top: 12px; color: var(--muted); }
.price-card-featured .price-card-head p { color: rgba(255,255,255,.55); }
.price { display: flex; align-items: baseline; gap: 10px; margin: 36px 0 6px; }
.price strong { font: 600 clamp(64px, 7vw, 96px)/.9 var(--display); letter-spacing: -.07em; }
.price span { color: var(--muted); font-size: 13px; font-weight: 700; }
.price-card-featured .price span { color: rgba(255,255,255,.5); }
.billing-note { min-height: 28px; color: var(--muted); font-size: 11px; }
.price-card-featured .billing-note { color: rgba(255,255,255,.55); }
.price-card > .button { margin: 28px 0 30px; }
.pi-counter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  max-width: 1120px;
  margin: 0 auto 28px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-bright);
}
.pi-counter > p { margin: 0; font: 700 13px var(--body); letter-spacing: .08em; text-transform: uppercase; }
.pi-counter small { margin-left: auto; color: var(--muted); font-size: 12px; }
.pi-stepper { display: flex; align-items: center; gap: 8px; }
.pi-stepper button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
}
.pi-stepper button:hover { background: var(--acid); }
.pi-stepper input {
  width: 72px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  font: 700 20px var(--display);
}
.button-price-outline { color: var(--ink); border: 1px solid var(--ink); }
.button-price-outline:hover { color: #fff; background: var(--ink); }
.price-highlights { display: grid; gap: 11px; margin: auto 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card-featured .price-highlights { border-color: rgba(255,255,255,.16); }
.price-highlights li { display: flex; gap: 10px; align-items: center; font-size: 12px; }
.price-highlights i { color: var(--blue); font-style: normal; }
.price-card-featured .price-highlights i { color: var(--acid); }
.included-features { display: grid; grid-template-columns: .78fr 1.22fr; gap: 8vw; padding: 110px 7vw; color: #fff; border-radius: 32px; background: var(--blue); }
.features-title { position: sticky; top: 120px; align-self: start; }
.features-title h2 { margin: 0 0 28px; font-size: clamp(48px, 5.2vw, 72px); }
.features-title h2 em { color: var(--acid); }
.features-title > p:last-child { max-width: 430px; color: rgba(255,255,255,.64); }
.feature-list article { display: grid; grid-template-columns: 48px 1fr auto; gap: 20px; align-items: start; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.2); }
.feature-list article:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.feature-list article > span { display: grid; place-items: center; width: 38px; height: 38px; color: var(--ink); border-radius: 50%; background: var(--acid); font-size: 8px; font-weight: 700; }
.feature-list h3 { margin: 0 0 7px; font-size: 27px; }
.feature-list p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }
.feature-list article > i { font-style: normal; font-size: 22px; }
.pricing-faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; padding-block: 130px; }
.pricing-cta { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; min-height: 380px; margin-bottom: 20px; padding: 70px 7vw; color: #fff; border-radius: 30px; background: var(--ink); }
.pricing-cta h2 { margin: 0; font-size: clamp(60px, 7vw, 96px); }

.final-cta { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 580px; padding: 90px 24px; overflow: hidden; color: #fff; text-align: center; border-radius: 32px; background: var(--ink); }
.final-cta h2 { position: relative; z-index: 2; margin: 0 0 38px; font-size: clamp(48px, 6vw, 88px); }.button-row-center { position: relative; z-index: 2; justify-content: center; }
.cta-orbit { position: absolute; width: 720px; height: 720px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.02), 0 0 0 180px rgba(255,255,255,.018); }
.site-footer { display: grid; grid-template-columns: 1fr 1.5fr auto; align-items: center; gap: 35px; min-height: 180px; padding-block: 48px; font-size: 11px; }
.footer-brand { font: 700 20px/1 var(--display); }.footer-brand small { display: block; margin-top: 5px; font-size: 8px; letter-spacing: .28em; }
.site-footer > p { margin: 0; color: var(--muted); }.site-footer nav { display: flex; gap: 22px; }.site-footer > span { grid-column: 2; color: var(--muted); }

/* Sector pages */
.sector-hero { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; min-height: 800px; padding: 80px 7vw 45px; overflow: hidden; color: #fff; border-radius: 34px; background: var(--ink); }
.sector-copy { position: relative; z-index: 4; align-self: center; padding-bottom: 60px; }
.back-link { display: inline-block; margin-bottom: 72px; color: rgba(255,255,255,.48); font-size: 11px; font-weight: 700; }
.sector-hero h1 { font-size: clamp(58px, 6vw, 98px); }.sector-hero h1 em { color: var(--acid); }
.sector-hero-hotel { background: radial-gradient(circle at 78% 30%,rgba(180,131,85,.32),transparent 28%),#142018; }
.sector-hero-hotel::after { content:''; position:absolute; inset:0 0 0 54%; opacity:.18; background: repeating-linear-gradient(90deg,transparent 0 43px,rgba(255,255,255,.16) 44px); transform: skewX(-12deg); }
.sector-hero-travel { background: radial-gradient(circle at 84% 20%,rgba(255,107,74,.5),transparent 24%), radial-gradient(circle at 68% 80%,rgba(79,108,255,.4),transparent 30%), #171528; }
.kiosk-sector { width: min(390px,72%); }.sector-caption { position:absolute; z-index:5; display:flex; align-items:center; gap:9px; padding:10px 13px; border:1px solid rgba(255,255,255,.2); border-radius:18px; background:rgba(14,18,15,.66); backdrop-filter:blur(10px); font-size:9px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; }
.sector-caption span { color:var(--acid); }.caption-a { top:21%; left:-1%; }.caption-b { right:-2%; bottom:24%; }
.hotel-screen, .travel-screen { background:#0b0c0a; padding:0; }
.layout-still { width:100%; height:100%; object-fit:contain; display:block; background:#0b0c0a; }
.hotel-screen-nav { display:flex; justify-content:space-between; font-size:8px; }.hotel-screen-photo > div:last-child > span { font-size:8px; text-transform:uppercase; letter-spacing:.12em; }.hotel-screen-photo h2 { margin:8px 0 0; font-size:30px; }
.hotel-actions { display:grid; gap:6px; padding:8px; }.hotel-info { display:grid; padding:12px; text-align:left; border-radius:8px; background:#fff; }.hotel-info span { color:#937559; font-size:6px; letter-spacing:.1em; }.hotel-info strong { font-size:10px; }.hotel-info:nth-child(2) { color:#fff; background:#314334; }.hotel-info:nth-child(2) span { color:var(--acid); }
.travel-screen-head { display:flex; justify-content:space-between; font-size:8px; }.travel-screen-title { padding:32px 2px 18px; }.travel-screen-title span { color:#ff8a6f; font-size:8px; letter-spacing:.12em; text-transform:uppercase; }.travel-screen-title h2 { margin:8px 0 0; font-size:34px; }
.destination-grid { display:grid; flex:1; gap:7px; }.destination { display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-end; min-height:105px; padding:13px; overflow:hidden; color:#fff; text-align:left; border-radius:10px; }.destination span { font-size:6px; letter-spacing:.14em; }.destination strong { font:600 20px var(--display); }.destination i { margin-top:3px; font-size:6px; font-style:normal; letter-spacing:.1em; }
.destination-a { grid-row:span 2; background:linear-gradient(to bottom,rgba(0,0,0,.05),rgba(0,0,0,.55)),url(images/byzantium.jpg) center/cover no-repeat; }.destination-b { background:linear-gradient(135deg,rgba(0,0,0,.15),rgba(0,0,0,.45)),url(images/travel-a.jpg) center/cover no-repeat; }.destination-c { background:linear-gradient(135deg,rgba(0,0,0,.1),rgba(0,0,0,.5)),url(images/travel-b.jpg) center/cover no-repeat; }
.travel-route { position:absolute; border:1px dashed rgba(255,255,255,.2); border-radius:50%; }.route-a { width:480px;height:260px;transform:rotate(15deg); }.route-b { width:610px;height:360px;transform:rotate(-22deg); }
.sector-promise { display:block; padding-block:140px; border-bottom:1px solid var(--line); }.sector-promise h2 { max-width:1100px; margin:0; font-size:clamp(42px,5.4vw,78px); }.sector-promise h2 em { color:#315c42; }.travel-promise h2 em { color:var(--coral); }
.use-cases { padding-block:130px; }.use-case-grid { display:grid; grid-template-columns:1.25fr .75fr; gap:17px; }.use-card { display:flex; flex-direction:column; min-height:430px; padding:26px; border:1px solid var(--line); border-radius:var(--radius); background:var(--paper-bright); }.use-feature { min-height:560px; color:#fff; background:#315c42; }.use-card:nth-child(3) { background:var(--sand); }.use-card h3 { max-width:560px; margin:auto 0 18px; font-size:clamp(33px,3.4vw,50px); }.use-card p { max-width:600px; margin:0; opacity:.65; }.use-index { font-size:9px; font-weight:700; letter-spacing:.1em; }.use-icon { display:grid; place-items:center; align-self:flex-end; width:56px; height:56px; margin-top:24px; border:1px solid currentColor; border-radius:50%; font-size:23px; }.use-contrast { color:#fff; background:var(--ink); }
.travel-feature { background:var(--coral); }.travel-contrast { background:#233453!important; }
.guest-journey { padding:110px 7vw; color:#fff; border-radius:32px; background:#315c42; }.journey-title { display:flex; align-items:end; justify-content:space-between; gap:30px; margin-bottom:90px; }.journey-title h2 { max-width:700px; margin:0; font-size:clamp(43px,5vw,70px); }.journey-line { position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }.journey-line::before { content:''; position:absolute; top:47px; left:0; right:0; height:1px; background:rgba(255,255,255,.25); }.journey-line article { position:relative; }.journey-line article > span { color:rgba(255,255,255,.55); font-size:9px; }.journey-dot { position:relative; z-index:2; width:13px; height:13px; margin:20px 0 38px; border:4px solid #315c42; border-radius:50%; background:var(--acid); box-shadow:0 0 0 1px rgba(255,255,255,.3); }.journey-line p { max-width:230px; color:rgba(255,255,255,.7); font-size:13px; }
.sector-benefits { display:grid; grid-template-columns:.85fr 1.15fr; gap:8vw; padding-block:140px; }.sector-benefit-intro h2 { font-size:clamp(43px,4.8vw,68px); }.sector-benefit-list article { display:grid; grid-template-columns:60px 1fr; gap:20px; padding:30px 0; border-top:1px solid var(--line); }.sector-benefit-list article:last-child { border-bottom:1px solid var(--line); }.sector-benefit-list article > span { display:grid; place-items:center; width:42px; height:42px; border:1px solid var(--ink); border-radius:50%; font-size:9px; }.sector-benefit-list h3 { margin:0 0 7px; font-size:28px; }.sector-benefit-list p { margin:0; color:var(--muted); }
.live-example { display:flex; align-items:center; justify-content:space-between; gap:50px; min-height:380px; padding:65px 7vw; color:#fff; border-radius:30px; background:#315c42; }.live-example h2 { max-width:720px; margin:0; font-size:clamp(42px,5vw,68px); }.round-link { display:flex; flex:0 0 auto; flex-direction:column; justify-content:space-between; width:170px; height:170px; padding:25px; color:var(--ink); border-radius:50%; background:var(--acid); font:600 18px/1.15 var(--display); transition:transform .25s; }.round-link:hover { transform:rotate(7deg) scale(1.04); }.round-link i { align-self:flex-end; font-style:normal; }.live-travel { background:var(--coral); }
.sector-final { margin-top:20px; }.travel-final { background:#171528; }
.travel-catalog { display:grid; grid-template-columns:.9fr 1.1fr; gap:8vw; align-items:center; min-height:720px; padding:100px 7vw; overflow:hidden; color:#fff; border-radius:32px; background:#171528; }.catalog-copy h2 { font-size:clamp(48px,5vw,72px); }.catalog-copy h2 em { color:var(--coral); }.catalog-copy > p:last-child { max-width:520px; color:rgba(255,255,255,.62); }.catalog-stack { position:relative; height:470px; }.catalog-card { position:absolute; display:flex; flex-direction:column; justify-content:space-between; width:330px; height:420px; padding:26px; border-radius:20px; box-shadow:0 25px 60px rgba(0,0,0,.3); }.catalog-card span { font-size:9px; letter-spacing:.12em; }.catalog-card strong { font:600 45px/1 var(--display); letter-spacing:-.05em; }.catalog-card i { align-self:flex-end; font-size:28px; font-style:normal; }.card-one { left:4%; background:var(--blue); transform:rotate(-9deg); }.card-two { left:26%; color:var(--ink); background:var(--acid); transform:rotate(1deg); }.card-three { left:47%; background:var(--coral); transform:rotate(10deg); }

.reveal { opacity:0; transform:translateY(26px); transition:opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }.reveal.is-visible { opacity:1; transform:translateY(0); }.reveal-delay,.reveal-delay-1 { transition-delay:.12s; }.reveal-delay-2 { transition-delay:.22s; }.reveal-delay-3 { transition-delay:.32s; }
@media (max-width: 1100px) {
  .vertical-grid-three { grid-template-columns: 1fr; }
  .pi-counter small { margin-left: 0; width: 100%; }
}

@media (max-width: 1180px) {
  .site-header { background:rgba(248,247,241,.97); backdrop-filter:none; }
  .brand { position:relative; z-index:4; }
  .menu-toggle { display:block; position:relative; z-index:4; flex:0 0 auto; cursor:pointer; }
  .menu-toggle > span:not(.sr-only) { transition:transform .22s ease, opacity .22s ease; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform:translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform:translateY(-3px) rotate(-45deg); }
  .site-nav { position:fixed; inset:14px; z-index:3; display:flex; align-items:stretch; flex-direction:column; justify-content:flex-start; gap:4px; max-height:calc(100dvh - 28px); padding:94px 28px 28px; overflow-y:auto; border:1px solid rgba(16,17,15,.08); border-radius:20px; background:var(--paper-bright); box-shadow:0 24px 80px rgba(16,17,15,.22); opacity:0; visibility:hidden; pointer-events:none; transform:translateY(-12px) scale(.99); transition:opacity .22s ease, transform .22s ease, visibility .22s; }
  .site-nav.is-open { opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0) scale(1); }
  .site-nav > a { padding:14px 15px; font:600 clamp(22px,3.4vw,30px) var(--display); }
  .site-nav .nav-cta { margin:16px 0 0; color:var(--ink); background:var(--acid); font:700 14px var(--body); }
  body.menu-open { overflow:hidden; }
}

@media (max-width: 1050px) {
  .hero,.sector-hero { grid-template-columns:1fr; padding-top:70px; }.hero { min-height:auto; }.hero-compact { padding-top:48px; }.hero-copy,.sector-copy { max-width:850px; }.hero-visual,.sector-visual { min-height:650px; }.hero-compact .hero-visual { min-height:420px; }.hero-gallery { min-height:0; padding-bottom:20px; }.hero-scene { height: min(42vh, 380px); }.hero-screen { width: min(34%, 170px); bottom: 0; }.hero h1,.sector-hero h1 { font-size:clamp(56px,10vw,94px); }.hero-compact h1 { font-size:clamp(40px,9vw,64px); }.back-link { margin-bottom:45px; }
  .sector-caption.caption-a { left:14%; }.sector-caption.caption-b { right:12%; }
  .faq,.comparison,.sector-benefits,.travel-catalog,.contact-section,.pricing-faq { grid-template-columns:1fr; }.section-heading-inline { align-items:start; flex-direction:column; }.comparison { gap:50px; }.faq { gap:20px; }.section-heading { margin-bottom:44px; }
  .pricing-hero { grid-template-columns:1fr; gap:60px; padding-block:90px; }.price-stamp { width:330px; }.included-features { grid-template-columns:1fr; }.features-title { position:static; }.pricing-cta { align-items:flex-start; flex-direction:column; }
  .how { grid-template-columns:1fr; gap:60px; }.how-intro { max-width:690px; }
  .site-footer { grid-template-columns:1fr auto; }.site-footer > p { display:none; }.site-footer > span { grid-column:1; }
  .travel-catalog { gap:50px; }.catalog-stack { max-width:680px; width:100%; margin:auto; }
}

@media (max-width: 760px) {
  .section-shell { width:min(100% - 24px,1380px); }.site-header { width:calc(100% - 16px); min-height:64px; margin:8px auto; padding:8px 8px 8px 12px; }.brand-image-wrap { max-width:145px; height:36px; }
  .menu-toggle { display:block; }.site-nav { inset:8px; max-height:calc(100dvh - 16px); padding:82px 18px 22px; }.site-nav > a { padding:12px 14px; font-size:23px; }.site-nav .nav-cta { margin-top:12px; }
  .hero,.sector-hero { padding:64px 22px 30px; border-radius:24px; }.hero-copy,.sector-copy { padding-bottom:20px; }.hero h1,.sector-hero h1 { font-size:clamp(48px,14.5vw,75px); }.hero-lead { font-size:16px; }.button { width:100%; }.hero-visual,.sector-visual { min-height:590px; }.hero-gallery { min-height:0; }.hero-scene { height: 280px; border-radius: 20px; }.hero-screen { width: 128px; right: 12px; bottom: -6px; }.kiosk,.kiosk-sector { width:min(315px,82%); }.orbit-one { width:360px;height:360px; }.orbit-two { width:410px;height:240px; }
  .audience-strip { align-items:flex-start; flex-direction:column; gap:12px; padding:22px 18px; }.audience-marquee { gap:15px; }
  .statement,.benefits,.verticals,.faq,.use-cases,.sector-benefits,.pricing-options,.pricing-faq { padding-block:90px; }.statement h2,.sector-promise h2 { font-size:40px; }.section-heading h2 { font-size:43px; }.bento-grid,.vertical-grid,.use-case-grid,.pricing-grid { grid-template-columns:1fr; }.benefit-card,.benefit-large { min-height:520px; }.mini-editor { width:94%; }.editor-body { min-height:270px; }.editor-canvas { padding:24px; }.editor-canvas strong { font-size:27px; }
  .how { width:100%; padding:85px 24px; border-radius:0; }.steps li { grid-template-columns:45px 1fr; }.steps li > i { display:none; }.vertical-card { min-height:680px; }.vertical-art { height:330px; }
  .verticals-compact .vertical-art { height: auto; aspect-ratio: 16 / 9; }
  .comparison { padding:58px 22px; }.comparison-row { grid-template-columns:.8fr 1fr 1fr; font-size:11px; }.comparison-head { font-size:7px; }
  .faq-list summary { font-size:17px; }.contact-section { width:100%; padding:85px 24px; border-radius:0; }.contact-form { padding:22px; }.form-row { grid-template-columns:1fr; gap:0; }.form-submit-row { align-items:stretch; flex-direction:column; }.form-submit-row .button { width:100%; }.final-cta { width:100%; min-height:520px; border-radius:0; }.final-cta h2 { font-size:45px; }
  .site-footer { display:flex; align-items:flex-start; flex-direction:column; }.site-footer nav { flex-wrap:wrap; }
  .back-link { margin-bottom:44px; }.sector-caption { display:none; }.sector-promise { padding-block:90px; }.use-card,.use-feature { min-height:430px; }
  .guest-journey { width:100%; padding:85px 24px; border-radius:0; }.journey-title { align-items:start; flex-direction:column; margin-bottom:55px; }.journey-line { grid-template-columns:1fr; gap:0; }.journey-line::before { top:0; bottom:0; left:6px; width:1px; height:auto; }.journey-line article { display:grid; grid-template-columns:40px 1fr; padding-left:0; }.journey-line article > span { grid-column:2; }.journey-dot { grid-row:1/3; grid-column:1; margin:0; }.journey-line p { grid-column:2; margin-bottom:38px; }
  .live-example { align-items:flex-start; flex-direction:column; padding:60px 24px; }.round-link { width:145px;height:145px; }.travel-catalog { width:100%; padding:85px 24px; border-radius:0; }.catalog-stack { height:390px; transform:scale(.8); transform-origin:left top; }.catalog-card { width:270px;height:360px; }.card-one { left:0; }.card-two { left:18%; }.card-three { left:34%; }
  .pricing-hero { width:100%; padding:80px 24px; border-radius:0; }.pricing-hero-copy h1 { font-size:clamp(55px,16vw,78px); }.pricing-hero-copy > p:last-child { font-size:16px; }.price-stamp { width:250px; }.price-card { min-height:540px; padding:25px; }.price-card-featured { padding-top:72px; }.save-badge { top:18px; right:18px; }.included-features { width:100%; padding:85px 24px; border-radius:0; }.feature-list article { grid-template-columns:42px 1fr; }.feature-list article > i { display:none; }.feature-list h3 { font-size:23px; }.pricing-cta { width:100%; border-radius:0; }.pricing-cta .button { width:100%; }
}

@media (max-width: 430px) {
  .hero h1,.sector-hero h1 { font-size:clamp(43px,12.7vw,53px); overflow-wrap:anywhere; }.hero-visual,.sector-visual { min-height:520px; }.hero-gallery { min-height:0; }.hero-scene { height: 220px; }.hero-screen { width: 110px; padding: 5px; }.kiosk,.kiosk-sector { width:278px; }.screen-intro { padding-top:30px; }.screen-tile { min-height:78px; }.benefit-card { padding:20px; }.vertical-card { padding:20px; }.vertical-art { margin-inline:-20px; }.comparison-row { gap:8px; }.comparison-row span,.comparison-row strong { overflow-wrap:anywhere; }.catalog-stack { margin-bottom:-60px; transform:scale(.7); }.price { gap:7px; }.price strong { font-size:62px; }.price span { font-size:11px; }.site-footer { min-height:260px; }
}
