:root {
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --surface: #f5f5f7;
  --line: #d2d2d7;
  --dark: #000;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(0, 113, 227, .18); }

.deck { overflow: clip; background: #fff; }
.deck-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 52px;
  padding: 0 max(22px, calc((100vw - 1280px) / 2));
  display: flex;
  align-items: center;
  gap: 36px;
  background: rgba(250, 250, 252, .82);
  border-bottom: 1px solid rgba(0, 0, 0, .055);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 142px; height: auto; }
.deck-nav nav { display: flex; gap: 28px; margin-left: auto; color: #424245; font-size: 12px; font-weight: 500; }
.deck-nav nav a { transition: color .2s ease; }
.deck-nav nav a:hover { color: var(--blue); }
.nav-cta, .plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta { padding: 8px 16px; }
.nav-cta:hover, .plan-button:hover { background: var(--blue-hover); transform: translateY(-1px); }

.scene { position: relative; min-height: max(840px, 100svh); overflow: clip; }
.scene-inner { position: relative; width: min(100%, 1600px); min-height: inherit; margin: 0 auto; padding: clamp(124px, 10vw, 164px) clamp(34px, 7vw, 112px) clamp(82px, 7vw, 112px); }
.kicker { margin: 0 0 25px; color: #06c; font-size: 11px; font-weight: 650; letter-spacing: .085em; text-transform: uppercase; }
.kicker-light { color: #7dc7ff; }
h1, h2, p { margin-top: 0; }
h1, h2 { max-width: 100%; margin-bottom: 30px; font-weight: 700; letter-spacing: -.048em; line-height: 1.1; text-wrap: balance; word-break: keep-all; overflow-wrap: normal; }
h1 { font-size: clamp(54px, 5.45vw, 86px); }
h2 { font-size: clamp(40px, 3.9vw, 62px); }
h1 em { color: var(--blue); font-style: normal; }
.lead { color: var(--muted); font-size: clamp(16px, 1.35vw, 20px); line-height: 1.65; letter-spacing: -.022em; }
.scene-caption { display: none; }

.phone-shell {
  position: relative;
  overflow: hidden;
  padding: 7px;
  border: 5px solid rgba(255, 255, 255, .96);
  border-radius: 42px;
  background: #e9ecef;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .15), 0 2px 10px rgba(0, 0, 0, .06), inset 0 0 0 1px rgba(0, 0, 0, .08);
}
.phone-shell img { width: 100%; height: 100%; border-radius: 30px; object-fit: cover; }

/* Hero */
.scene-hero { min-height: 1120px; background: radial-gradient(circle at 50% 72%, #fff 0, #f5f5f7 46%, #f1f2f4 100%); }
.hero-layout { display: grid; grid-template-rows: auto 1fr; align-content: start; text-align: center; }
.hero-copy { position: relative; z-index: 5; max-width: 1100px; min-width: 0; margin: 0 auto; }
.hero-copy h1 { margin-bottom: 28px; }
.hero-copy > p:not(.kicker) { margin-bottom: 0; color: var(--muted); font-size: 20px; line-height: 1.55; letter-spacing: -.025em; }
.text-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 22px; color: #06c; font-size: 16px; font-weight: 500; }
.text-link span { font-size: 15px; transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.hero-mockups { position: relative; width: min(860px, 72vw); height: 630px; margin: 42px auto 0; }
.hero-mockups::before {
  content: "";
  position: absolute;
  left: 50%; bottom: 4%;
  width: 86%; height: 35%;
  border-radius: 50%;
  background: rgba(0, 113, 227, .1);
  filter: blur(70px);
  transform: translateX(-50%);
}
.hero-phone { position: absolute; width: 300px; aspect-ratio: 390 / 844; }
.hero-phone-card { z-index: 2; left: calc(50% - 310px); top: 24px; transform: rotate(-5deg); }
.hero-phone-ticket { z-index: 3; right: calc(50% - 310px); top: 24px; transform: rotate(5deg); }

/* Overview */
.scene-overview { background: #fff; }
.overview-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 7vw, 110px); align-items: center; }
.overview-copy { position: relative; z-index: 3; min-width: 0; }
.feature-table { width: min(650px, 100%); margin-top: 58px; border-top: 1px solid var(--line); }
.feature-table div { display: grid; grid-template-columns: 140px 1fr; align-items: center; min-height: 70px; border-bottom: 1px solid var(--line); }
.feature-table strong { color: #06c; font-size: 11px; font-weight: 650; letter-spacing: .04em; }
.feature-table span { color: #424245; font-size: 16px; letter-spacing: -.02em; }
.circle-stage { position: relative; height: 690px; }
.circle { position: absolute; border-radius: 50%; }
.circle-one { right: -110px; top: -20px; width: 690px; height: 690px; background: #f5f5f7; }
.circle-two { right: 10px; top: 100px; width: 450px; height: 450px; background: linear-gradient(145deg, #eaf4fb, #fff); }
.overview-phone { position: absolute; z-index: 2; right: 80px; top: 18px; width: 315px; aspect-ratio: 390 / 844; }

/* Business card */
.scene-card { background: var(--surface); }
.card-layout { display: grid; grid-template-columns: .78fr 1.22fr; grid-template-rows: 1fr auto; gap: 48px 100px; align-items: center; }
.card-showcase { align-self: center; }
.phone-crop { width: min(490px, 100%); height: auto; aspect-ratio: 490 / 458; margin: auto; overflow: hidden; border-radius: 28px; background: #fff; box-shadow: 0 28px 70px rgba(0, 0, 0, .09); }
.phone-crop img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.pager { display: flex; justify-content: center; gap: 8px; margin-top: 27px; }
.pager * { width: 7px; height: 7px; border-radius: 50%; background: #c7c7cc; }
.pager b { background: #1d1d1f; }
.card-copy { min-width: 0; }
.card-copy h2 { max-width: 820px; font-size: clamp(40px, 3.65vw, 58px); }
.card-bottom { grid-column: 1 / -1; display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; align-items: center; }
.wallets img { width: min(490px, 100%); height: auto; }
.mini-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.mini-flow div { display: flex; flex-direction: column; gap: 18px; }
.mini-flow b { color: #06c; font-size: 10px; font-weight: 650; letter-spacing: .08em; }
.mini-flow span { color: #424245; font-size: 15px; line-height: 1.45; }

/* Connections */
.scene-connections { background: #000; color: #f5f5f7; }
.connection-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 9vw, 145px); align-items: center; }
.connection-phone { width: 335px; aspect-ratio: 390 / 844; margin: auto; }
.connection-copy { position: relative; z-index: 2; min-width: 0; padding-top: 60px; }
.ghost-word { position: absolute; z-index: -1; left: -10px; top: -45px; color: #0c2340; font-size: clamp(100px, 12vw, 184px); font-weight: 700; letter-spacing: -.075em; line-height: 1; }
.connection-copy .lead { color: #a1a1a6; }
.line-flow { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 82px; }
.line-flow::before { content: ""; position: absolute; left: 7px; right: 7px; top: 7px; height: 1px; background: #3a3a3c; }
.line-flow div { position: relative; display: flex; flex-direction: column; gap: 9px; }
.line-flow i { z-index: 1; width: 14px; height: 14px; margin-bottom: 14px; border: 3px solid #000; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 2px var(--blue); }
.line-flow div:nth-child(2) i { background: #7dc7ff; box-shadow: 0 0 0 2px #7dc7ff; }
.line-flow small { color: #7dc7ff; font-size: 10px; font-weight: 650; }
.line-flow strong { font-size: 16px; font-weight: 650; }
.line-flow span { color: #a1a1a6; font-size: 13px; }

/* Ticket */
.scene-ticket { min-height: 980px; background: linear-gradient(145deg, #f7f8fa, #edf3f8); }
.ticket-layout { display: grid; grid-template-columns: .83fr 1.17fr; gap: 48px; align-items: center; }
.ticket-copy { position: relative; z-index: 8; min-width: 0; }
.ticket-word { position: absolute; z-index: -1; left: -12px; top: -105px; color: rgba(29, 29, 31, .055); font-size: clamp(110px, 13vw, 205px); font-weight: 700; letter-spacing: -.08em; line-height: .85; }
.ticket-copy h2 { font-size: clamp(40px, 3.8vw, 60px); }
.ticket-copy h2 em { color: #bf5af2; font-style: normal; }
.ticket-showcase { position: relative; height: 680px; }
.ticket-card { position: absolute; z-index: 2; height: auto; }
.ticket-vela { right: 250px; top: 22px; width: 330px; }
.ticket-neon { right: 355px; top: 258px; width: 300px; }
.ticket-morrow { right: 235px; top: 360px; width: 305px; }
.ticket-phone { position: absolute; z-index: 5; right: 0; top: 5px; width: 320px; aspect-ratio: 390 / 844; }

/* Security */
.scene-security { background: #000; color: #f5f5f7; }
.security-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.security-copy { position: relative; z-index: 4; min-width: 0; }
.security-copy > p:not(.kicker) { color: #a1a1a6; font-size: 18px; line-height: 1.65; letter-spacing: -.02em; }
.security-flow { display: grid; gap: 0; max-width: 690px; margin-top: 58px; border-top: 1px solid #2c2c2e; }
.security-flow div { display: grid; grid-template-columns: 48px 130px 1fr; align-items: center; min-height: 66px; border-bottom: 1px solid #2c2c2e; }
.security-flow small { color: #7dc7ff; font-size: 10px; font-weight: 650; }
.security-flow strong { font-size: 13px; font-weight: 650; letter-spacing: .02em; }
.security-flow span { color: #a1a1a6; font-size: 14px; letter-spacing: -.02em; }
.security-orbit { position: relative; height: 690px; }
.security-orbit > i { position: absolute; border-radius: 50%; }
.security-orbit > i:first-child { right: -120px; top: -35px; width: 700px; height: 700px; background: radial-gradient(circle, #09284c 0, #031225 56%, transparent 70%); }
.security-orbit > i:nth-child(2) { right: 25px; top: 105px; width: 420px; height: 420px; border: 1px solid rgba(86, 177, 255, .17); }
.security-phone { position: absolute; z-index: 2; right: 80px; top: 20px; width: 320px; aspect-ratio: 390 / 844; box-shadow: 0 35px 100px rgba(0, 113, 227, .18); }

/* Rollout */
.scene-rollout { background: #fff; }
.rollout-layout { display: grid; grid-template-rows: auto 1fr; align-content: center; }
.rollout-head { max-width: 900px; min-width: 0; }
.rollout-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 76px; }
.rollout-steps article { min-height: 250px; padding: 34px 34px 38px; border-radius: 28px; background: var(--surface); }
.rollout-steps small { display: block; margin-bottom: 46px; color: #06c; font-size: 12px; font-weight: 650; }
.rollout-steps strong { display: block; margin-bottom: 20px; font-size: 26px; font-weight: 650; letter-spacing: -.035em; }
.rollout-steps p { margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.65; letter-spacing: -.02em; }

/* Plans */
.scene-plans { display: grid; grid-template-columns: 1.08fr .92fr; min-height: max(850px, 100svh); }
.plan-side { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(120px, 9vw, 154px) clamp(44px, 7vw, 108px) 80px; }
.plan-side { min-width: 0; }
.plan-side h2 { font-size: clamp(39px, 3.55vw, 56px); }
.plan-pro { background: var(--surface); }
.price { display: flex; align-items: flex-end; gap: 13px; margin: 28px 0; }
.price small { margin-bottom: 12px; font-size: 17px; }
.price strong { font-size: 62px; font-weight: 700; line-height: 1; letter-spacing: -.055em; }
.price span { margin-bottom: 7px; color: var(--muted); font-size: 13px; }
.plan-pro ul { display: grid; gap: 20px; margin: 0; padding: 0; list-style: none; }
.plan-pro li { font-size: 16px; }
.plan-pro li::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 18px; border-radius: 50%; background: var(--blue); }
.plan-custom { background: #000; color: #f5f5f7; }
.plan-custom > div > p:last-child { color: #a1a1a6; line-height: 1.65; }
.plan-custom dl { margin: 28px 0; }
.plan-custom dl div { display: grid; grid-template-columns: 110px 1fr; padding: 22px 0; border-bottom: 1px solid #2c2c2e; }
.plan-custom dt { color: #7dc7ff; font-size: 11px; font-weight: 650; }
.plan-custom dd { margin: 0; font-size: 15px; }
.plan-button { align-self: flex-start; padding: 14px 28px; }

/* Contact */
.scene-contact { min-height: 1100px; background: linear-gradient(135deg, #006edb 0%, #258fe8 48%, #67cdf5 100%); color: #fff; }
.scene-contact .scene-inner { padding-top: clamp(145px, 11vw, 180px); padding-bottom: clamp(150px, 12vw, 190px); }
.contact-layout { display: grid; grid-template-columns: 1fr .75fr; align-items: center; }
.contact-copy { position: relative; z-index: 4; min-width: 0; }
.contact-copy h2 { font-size: clamp(51px, calc(5.4vw - 3px), 83px); }
.contact-copy > p:not(.kicker) { font-size: 17px; line-height: 1.6; }
.contact-form { width: min(680px, 100%); margin-top: 46px; }
.bot-field { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid label { display: flex; flex-direction: column; gap: 9px; min-width: 0; padding: 15px 17px 16px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 16px; background: rgba(255, 255, 255, .11); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); transition: border-color .2s ease, background .2s ease; }
.form-grid label:focus-within { border-color: rgba(255, 255, 255, .75); background: rgba(255, 255, 255, .16); }
.form-grid label > span { font-size: 9px; font-weight: 650; letter-spacing: .1em; }
.form-grid .form-wide { grid-column: 1 / -1; }
.form-grid input, .form-grid textarea { width: 100%; margin: 0; padding: 0; border: 0; outline: 0; resize: vertical; background: transparent; color: #fff; font: inherit; font-size: 15px; line-height: 1.45; }
.form-grid textarea { min-height: 82px; }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: rgba(255, 255, 255, .58); opacity: 1; }
.form-submit { position: relative; z-index: 5; display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 18px; }
.form-submit p { max-width: 400px; margin: 0; padding: 10px 12px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 12px; background: rgba(0, 69, 145, .18); color: rgba(255, 255, 255, .94); font-size: 10px; line-height: 1.5; }
.form-submit p a { text-decoration: underline; text-underline-offset: 2px; }
.form-submit button { flex: 0 0 auto; padding: 13px 22px; border: 0; border-radius: 999px; background: #fff; color: #06c; font: inherit; font-size: 12px; font-weight: 650; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.form-submit button:hover { transform: translateY(-1px); background: #f5f5f7; }
.contact-visual { position: relative; display: grid; place-items: center; min-height: 720px; }
.contact-phone { position: relative; z-index: 3; grid-area: 1 / 1; width: 288px; height: 560px; margin: 0; filter: drop-shadow(0 35px 55px rgba(0, 45, 91, .24)); }
.contact-phone > img { width: 100%; height: 100%; object-fit: contain; }
.contact-curves { position: relative; z-index: 0; grid-area: 1 / 1; width: 720px; height: 720px; pointer-events: none; }
.contact-curves i { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255, 255, 255, .18); border-radius: 50%; transform: translate(-50%, -50%); }
.contact-curves i:first-child { width: 700px; height: 700px; }
.contact-curves i:last-child { width: 500px; height: 500px; }
.scene-contact::after { content: ""; position: absolute; z-index: 1; left: -10%; right: -10%; bottom: -33%; height: 38%; border-radius: 50% 50% 0 0 / 50% 50% 0 0; background: var(--surface); }

.legal-footer { display: grid; grid-template-columns: 1.5fr .7fr; gap: 40px 70px; padding: 76px max(24px, calc((100vw - 1280px) / 2)) 68px; background: var(--surface); color: var(--ink); }
.footer-brand { width: max-content; }
.footer-brand img { width: 158px; }
.legal-footer p { margin: 20px 0 0; color: #86868b; font-size: 10px; line-height: 1.65; }
.footer-support { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.footer-support strong { font-size: 17px; }
.footer-support a { color: #06c; font-size: 16px; }
.legal-footer nav { grid-column: 1 / -1; display: flex; justify-content: flex-end; gap: 24px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }

@media (max-width: 980px) {
  .deck-nav { height: 52px; padding: 0 18px; }
  .deck-nav nav { display: none; }
  .nav-cta { margin-left: auto; }
  .scene { min-height: auto; }
  .scene-inner { padding: 112px 24px 88px; }
  .brand img { width: 124px; }
  h1 { font-size: clamp(40px, 10.8vw, 54px); line-height: 1.12; }
  h2 { font-size: clamp(34px, 8.9vw, 46px); line-height: 1.13; }
  h1 br, h2 br, .lead br, .hero-copy > p:not(.kicker) br, .security-copy > p:not(.kicker) br, .plan-custom > div > p:last-child br, .contact-copy > p:not(.kicker) br { display: none; }
  .card-copy h2, .ticket-copy h2, .plan-side h2 { font-size: 36px; line-height: 1.14; }
  .contact-copy h2 { font-size: 38px; line-height: 1.14; }
  .lead { font-size: 16px; }

  .scene-hero { min-height: 860px; }
  .hero-copy > p:not(.kicker) { font-size: 16px; }
  .hero-mockups { width: 100%; height: 470px; margin-top: 34px; }
  .hero-phone { width: min(47vw, 220px); }
  .hero-phone-card { left: 3%; top: 30px; }
  .hero-phone-ticket { right: 3%; top: 30px; }

  .overview-layout, .card-layout, .connection-layout, .ticket-layout, .security-layout, .contact-layout { display: flex; flex-direction: column; align-items: stretch; gap: 58px; }
  .feature-table { margin-top: 46px; }
  .feature-table div { grid-template-columns: 105px 1fr; min-height: 66px; }
  .feature-table span { font-size: 14px; }
  .circle-stage { height: 540px; }
  .circle-one { right: -230px; width: 550px; height: 550px; }
  .circle-two { right: -105px; width: 370px; height: 370px; }
  .overview-phone { right: 7%; width: 245px; }

  .card-showcase { order: 2; }
  .card-copy { order: 1; }
  .card-bottom { order: 3; display: flex; flex-direction: column; gap: 45px; }
  .phone-crop { height: auto; }
  .wallets img { width: min(490px, 100%); }
  .mini-flow { width: 100%; gap: 14px; }
  .mini-flow span { font-size: 12px; }

  .connection-phone { order: 2; width: 245px; }
  .connection-copy { order: 1; padding-top: 28px; }
  .ghost-word { top: -20px; font-size: 95px; }
  .line-flow { margin-top: 58px; gap: 12px; }
  .line-flow strong { font-size: 13px; }
  .line-flow span { font-size: 11px; }

  .scene-ticket { min-height: auto; }
  .ticket-word { top: -38px; font-size: 92px; }
  .ticket-showcase { height: 560px; }
  .ticket-phone { right: 0; width: 46%; max-width: 235px; }
  .ticket-vela { right: 32%; top: 10px; width: 48%; max-width: 250px; }
  .ticket-neon { left: 0; top: 220px; width: 45%; max-width: 230px; }
  .ticket-morrow { right: 30%; top: 330px; width: 44%; max-width: 225px; }
  .ticket-copy > p:last-child br { display: none; }

  .security-orbit { height: 550px; }
  .security-orbit > i:first-child { right: -250px; width: 560px; height: 560px; }
  .security-orbit > i:nth-child(2) { right: -115px; width: 390px; height: 390px; }
  .security-phone { right: 6%; width: 240px; }
  .security-flow { margin-top: 46px; }
  .security-flow div { grid-template-columns: 38px 105px 1fr; min-height: 64px; }
  .security-flow span { font-size: 12px; }

  .rollout-steps { grid-template-columns: 1fr; margin-top: 54px; }
  .rollout-steps article { min-height: 0; padding: 30px; }
  .rollout-steps small { margin-bottom: 28px; }

  .scene-plans { grid-template-columns: 1fr; }
  .plan-side { min-height: 720px; padding: 112px 24px 80px; }
  .price strong { font-size: 52px; }

  .contact-visual { min-height: 540px; }
  .contact-phone { width: 196px; height: 400px; }
  .contact-curves { width: 540px; height: 540px; }
  .contact-curves i:first-child { width: 520px; height: 520px; }
  .contact-curves i:last-child { width: 370px; height: 370px; }
  .contact-form { margin-top: 42px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-wide { grid-column: 1; }
  .form-submit { align-items: flex-start; flex-direction: column; }
  .scene-contact .scene-inner { padding-top: 120px; padding-bottom: 150px; }
  .scene-contact::after { bottom: -23%; height: 25%; }

  .legal-footer { grid-template-columns: 1fr; gap: 34px; padding: 66px 24px 60px; }
  .footer-brand img { width: 148px; }
  .footer-support { align-items: flex-start; }
  .legal-footer nav { grid-column: 1; justify-content: flex-start; flex-wrap: wrap; }
}

.thanks-page { min-height: 100svh; display: grid; place-items: center; padding: 48px 24px; background: radial-gradient(circle at 50% 25%, #eaf5ff, #f5f5f7 58%); }
.thanks-card { width: min(640px, 100%); padding: clamp(42px, 7vw, 72px); border-radius: 32px; background: rgba(255, 255, 255, .88); box-shadow: 0 28px 80px rgba(0, 0, 0, .08); text-align: center; }
.thanks-card > img { width: 156px; height: auto; margin: 0 auto 48px; }
.thanks-card h1 { margin-bottom: 20px; font-size: clamp(38px, 6vw, 58px); }
.thanks-card p { margin-bottom: 34px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.thanks-card a { display: inline-flex; padding: 12px 22px; border-radius: 999px; background: var(--blue); color: #fff; font-size: 13px; font-weight: 650; }

@media (prefers-reduced-motion: no-preference) {
  .hero-phone { animation: hero-breathe 9s ease-in-out infinite; }
  .hero-phone-ticket { animation-delay: -3s; }
  @keyframes hero-breathe { 0%, 100% { margin-top: 0; } 50% { margin-top: -10px; } }
}
