:root {
  --paper: #f5f2ea;
  --paper-deep: #e9e4d9;
  --ink: #171815;
  --ink-soft: #65665f;
  --orange: #ff5938;
  --orange-dark: #c1432d;
  --green: #174737;
  --green-light: #7fae99;
  --line: #d5d0c5;
  --white: #fffdf7;
  --font: "SF Pro Display", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --gutter: clamp(22px, 5.55vw, 80px);
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 106px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--max);
  margin: auto;
}
.brand { display: inline-flex; align-items: center; gap: 13px; width: max-content; }
.brand-mark { width: 38px; height: 44px; color: var(--ink); flex: none; }
.brand-wordmark {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: .55em;
  font-size: 13px;
  line-height: 1.08;
  letter-spacing: .22em;
  white-space: nowrap;
}
.brand-wordmark b { font-weight: 700; }
.brand-wordmark b + b { position: relative; padding-left: .55em; }
.brand-wordmark b + b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1em;
  background: currentColor;
  opacity: .35;
}
.desktop-nav { display: flex; gap: 36px; font-size: 14px; color: #3f403b; }
.desktop-nav a, .site-footer nav a { position: relative; }
.desktop-nav a::after, .site-footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.desktop-nav a:hover::after, .site-footer nav a:hover::after { right: 0; }
.header-cta {
  justify-self: end;
  min-height: 48px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  transition: transform .25s ease, background .25s ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--green); }

.hero {
  position: relative;
  min-height: 820px;
  height: min(900px, 100vh);
  overflow: hidden;
  padding: 152px var(--gutter) 92px;
  display: grid;
  grid-template-columns: minmax(470px, .93fr) minmax(430px, .75fr);
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  max-width: var(--max);
  margin: auto;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0 calc(50% - 50vw);
  background-color: var(--paper);
  background-image: radial-gradient(circle at 7px 9px, rgba(23, 24, 21, .08) 1px, transparent 1.2px);
  background-size: 58px 58px;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  bottom: -165px;
  height: 260px;
  background: var(--green);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  transform: scaleX(1.25);
}
.hero-contours {
  position: absolute;
  z-index: -1;
  width: 680px;
  height: 680px;
  right: -90px;
  top: 85px;
  opacity: .55;
  background: url("assets/hero-contours.svg") center / contain no-repeat;
  animation: slow-spin 42s linear infinite;
}
.eyebrow { margin: 0 0 33px; color: var(--orange-dark); font-size: 13px; font-weight: 750; letter-spacing: .24em; }
.hero h1 {
  margin: 0;
  font-size: clamp(62px, 6.35vw, 91px);
  line-height: .96;
  letter-spacing: -.07em;
  font-weight: 850;
}
.hero-lead { margin: 34px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.85; }
.hero-actions { margin-top: 33px; display: flex; align-items: center; gap: 12px; }
.primary-button {
  min-height: 58px;
  padding: 0 31px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: white;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease;
}
.primary-button:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(255, 89, 56, .24); }
.round-link {
  width: 58px;
  height: 58px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 21px;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.round-link:hover { background: var(--ink); color: white; transform: rotate(-45deg); }
.hero-meta { margin: 39px 0 0; color: #89877f; font-size: 11px; letter-spacing: .13em; }

.hero-visual { position: relative; min-height: 580px; display: grid; place-items: center; }
.halo {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 114, 82, .72), rgba(255, 89, 56, 0) 68%);
  filter: blur(8px);
}
.coupon {
  position: relative;
  z-index: 3;
  width: min(100%, 452px);
  min-height: 548px;
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 94px 1fr 104px;
  background: var(--orange);
  transform: rotate(-4deg);
  box-shadow: 0 34px 58px rgba(56, 43, 33, .18);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}
.hero-visual:hover .coupon:not(.coupon-shadow) { transform: rotate(-2deg) translateY(-7px); }
.coupon-shadow {
  position: absolute;
  z-index: 1;
  transform: rotate(5deg) translate(26px, 15px);
  background: #20211e;
  box-shadow: none;
  opacity: .16;
}
.coupon::before, .coupon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  left: -12px;
  top: 83px;
  background: var(--paper);
  box-shadow: 452px 0 0 var(--paper), 0 350px 0 var(--paper), 452px 350px 0 var(--paper);
}
.coupon::after { display: none; }
.coupon-head, .coupon-foot { padding: 0 30px; display: flex; align-items: center; justify-content: space-between; }
.coupon-head { border-bottom: 1px dashed rgba(23, 24, 21, .28); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.coupon-cube { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--orange); background: var(--ink); }
.coupon-body { padding: 56px 30px 25px; display: flex; flex-direction: column; align-items: flex-start; }
.coupon-body p { margin: 0; font-size: 18px; font-weight: 700; }
.coupon-body strong { margin: 19px 0 3px; font-size: 106px; line-height: 1; letter-spacing: -.08em; }
.coupon-body strong small { font-size: 47px; }
.coupon-body > span { color: #4e291f; font-size: 13px; }
.coupon-body a { margin-top: 29px; padding: 12px 20px; border-radius: 22px; background: var(--ink); color: white; font-size: 12px; }
.coupon-foot { border-top: 1px dashed rgba(23, 24, 21, .28); }
.coupon-foot > div { display: flex; flex-direction: column; gap: 10px; }
.coupon-foot b { font: 700 10px var(--mono); letter-spacing: .08em; }
.coupon-foot div span { color: #6c3023; font-size: 10px; }
.ticket-code { width: 67px; height: 58px; background-color: var(--paper); background-image: repeating-linear-gradient(90deg, var(--ink) 0 5px, transparent 5px 9px), repeating-linear-gradient(var(--ink) 0 5px, transparent 5px 9px); background-size: 30px 8px, 8px 30px; opacity: .85; }
.orbit { position: absolute; z-index: 4; width: 40px; height: 40px; border-radius: 50%; background: var(--paper); box-shadow: 0 8px 20px rgba(0,0,0,.1); }
.orbit-one { right: 2%; top: 22%; animation: float 4s ease-in-out infinite; }
.orbit-two { left: 2%; bottom: 18%; width: 28px; height: 28px; background: var(--green); animation: float 5s .8s ease-in-out infinite reverse; }

.verify-section {
  position: relative;
  padding: 134px var(--gutter) 150px;
  background-color: var(--paper);
  background-image: linear-gradient(rgba(23,24,21,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(23,24,21,.055) 1px, transparent 1px);
  background-size: 38px 38px;
}
.verify-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(var(--paper) 0, transparent 150px, transparent calc(100% - 150px), var(--paper)); pointer-events: none; }
.section-intro, .verify-shell { position: relative; max-width: 1280px; margin-inline: auto; }
.section-intro { margin-bottom: 55px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-intro .eyebrow { margin-bottom: 28px; }
.section-intro h2, .journey-heading h2, .safety-heading h2 { margin: 0; font-size: clamp(42px, 4.8vw, 68px); line-height: 1.06; letter-spacing: -.055em; }
.section-intro > p { margin: 0 0 7px; max-width: 360px; color: var(--ink-soft); line-height: 1.65; }
.verify-shell {
  min-height: 565px;
  padding: 44px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  background: var(--ink);
  box-shadow: 0 32px 70px rgba(39, 35, 29, .17);
}
.verify-form-panel { padding: 12px 10px 10px; display: flex; flex-direction: column; }
.panel-kicker { margin: 0 0 48px; color: #ff846a; font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.verify-form-panel h3 { margin: 0; color: var(--white); font-size: 32px; }
.panel-description { margin: 16px 0 31px; color: #9b9c96; font-size: 14px; }
#coupon-form { position: relative; }
.code-field {
  position: relative;
  height: 76px;
  padding: 12px 56px 10px 21px;
  border: 1px solid #464741;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #252622;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.code-field:focus-within { border-color: #ff846a; box-shadow: 0 0 0 3px rgba(255, 89, 56, .14); }
.code-field > span { color: #92938d; font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.code-field input { width: 100%; margin-top: 8px; border: 0; outline: 0; color: var(--white); background: transparent; font: 15px var(--mono); text-transform: none; }
.code-field input::placeholder { color: #666762; font-family: var(--font); text-transform: none; }
.clear-button { position: absolute; right: 16px; bottom: 14px; width: 34px; height: 34px; border: 0; border-radius: 50%; color: #a6a7a2; background: #353631; cursor: pointer; font-size: 20px; }
.submit-button, .redeem-button {
  width: 100%;
  height: 58px;
  margin-top: 15px;
  border: 0;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: white;
  background: var(--orange);
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  transition: transform .2s ease, filter .2s ease;
}
.submit-button:hover:not(:disabled), .redeem-button:hover:not(:disabled) { transform: translateY(-2px); filter: brightness(1.05); }
.submit-button:disabled, .redeem-button:disabled { cursor: wait; opacity: .72; }
.button-loader, .dialog-primary i { display: none; width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.35); border-top-color: white; border-radius: 50%; animation: spin .7s linear infinite; }
.submit-button.is-loading .button-loader, .dialog-primary.is-loading i { display: block; }
.form-message { min-height: 22px; margin: 10px 5px 0; color: #ff9a85; font-size: 12px; line-height: 1.5; }
.form-message.is-success { color: var(--green-light); }
.assurance-list { margin: auto 0 5px; padding: 0; display: flex; justify-content: space-between; list-style: none; color: #9b9c96; font-size: 12px; }
.assurance-list li { display: flex; align-items: center; gap: 9px; }
.assurance-list li span { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; color: var(--green); background: var(--green-light); font-weight: 900; }

.result-panel { position: relative; min-width: 0; min-height: 476px; border-radius: 20px; overflow: hidden; background: #f1ede4; }
.result-empty { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.scan-cube { position: relative; width: 96px; height: 96px; margin-bottom: 25px; animation: float 5s ease-in-out infinite; }
.scan-cube span { position: absolute; width: 56px; height: 56px; background: #dce4db; transform: rotate(30deg) skew(-5deg); }
.scan-cube span:nth-child(1) { left: 11px; top: 4px; }
.scan-cube span:nth-child(2) { right: 0; top: 25px; background: #9fb4aa; }
.scan-cube span:nth-child(3) { left: 12px; bottom: 0; background: var(--green); }
.result-empty p { margin: 0 0 10px; font-size: 21px; font-weight: 750; }
.result-empty > span { color: #85837c; font-size: 13px; }
.empty-lines { width: 58%; margin-top: 42px; display: grid; gap: 11px; }
.empty-lines i { height: 7px; border-radius: 10px; background: #ded9cf; }
.empty-lines i:nth-child(2) { width: 83%; }
.empty-lines i:nth-child(3) { width: 58%; }

.coupon-result { min-height: 100%; padding: 27px; }
.result-header { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 18px; }
.coupon-image-wrap { width: 80px; height: 80px; border-radius: 17px; overflow: hidden; background: #dce4db; }
.coupon-image-wrap img, .coupon-image-wrap svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.result-header p { margin: 0 0 8px; color: #6e6e65; font-size: 11px; font-weight: 700; letter-spacing: .06em; }
.result-header h3 { margin: 0; font-size: clamp(19px, 1.8vw, 25px); }
.valid-badge { padding: 9px 13px; border-radius: 20px; color: #176445; background: #d6e4da; font-size: 11px; white-space: nowrap; }
.valid-badge i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: #176445; }
.result-divider { height: 1px; margin: 23px 0 24px; background: var(--line); }
.amount-label { margin: 0; color: #74746c; font-size: 11px; }
.coupon-amount { margin: 3px 0 2px; display: flex; align-items: flex-start; line-height: 1; }
.coupon-amount small { margin-top: 14px; font-size: 30px; font-weight: 750; }
.coupon-amount strong { font-size: clamp(64px, 6vw, 83px); letter-spacing: -.07em; }
.result-note { margin: 1px 0 0; color: #74746c; font-size: 12px; }
.masked-code { min-height: 17px; margin: 10px 0 0; color: #9a978f; font: 10px var(--mono); letter-spacing: .08em; }
.redeem-button { height: 62px; margin-top: 18px; background: var(--green); }
.irreversible-note { margin: 13px 0 0; color: #9b5c4d; font-size: 10px; text-align: center; }

.redeemed-result { position: absolute; inset: 0; padding: 38px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.success-mark { width: 90px; height: 90px; padding: 9px; border: 1px solid #9cb0a6; border-radius: 50%; }
.success-mark span { width: 100%; height: 100%; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--green); font-size: 35px; }
.success-kicker { margin: 28px 0 13px !important; color: #2d7156 !important; font-size: 10px !important; font-weight: 800; letter-spacing: .18em !important; }
.redeemed-result h3 { margin: 0; font-size: 37px; }
.redeemed-result > p:not(.success-kicker) { max-width: 360px; margin: 16px 0 26px; color: #74736c; font-size: 13px; line-height: 1.8; }
.redeemed-result button { border: 1px solid var(--ink); border-radius: 24px; padding: 11px 22px; background: transparent; cursor: pointer; }

.journey-section { padding: 142px var(--gutter) 146px; color: var(--white); background: var(--green); }
.journey-heading, .journey-list { max-width: 1280px; margin-inline: auto; }
.journey-heading .eyebrow { color: #ff8d74; }
.journey-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; }
.journey-heading h2 { grid-column: 1; }
.journey-heading > p:last-child { grid-column: 2; margin: 0 0 9px; color: #b7c7c0; }
.journey-list { position: relative; margin-top: 85px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 46px; list-style: none; }
.journey-list::before { content: ""; position: absolute; left: 13%; right: 13%; top: 145px; border-top: 2px dashed #6d8f81; }
.journey-list li { position: relative; min-width: 0; }
.journey-illustration { position: relative; width: min(100%, 300px); aspect-ratio: 1; margin: auto auto 47px; border: 1px solid #759789; border-radius: 50%; display: grid; place-items: center; background: #204e3e; }
.journey-list li > p { margin: 0 0 17px; color: #ff8d74; font-size: 11px; font-weight: 750; letter-spacing: .17em; }
.journey-list h3 { margin: 0 0 14px; font-size: clamp(23px, 2.1vw, 30px); }
.journey-list li > span { color: #afc1b9; font-size: 13px; line-height: 1.65; }
.phone { position: relative; width: 77px; height: 150px; border-radius: 19px; background: var(--paper); box-shadow: 0 15px 35px rgba(0,0,0,.12); }
.phone i { position: absolute; inset: 27px 11px 34px; border-radius: 11px; background: var(--orange); }
.phone b, .phone em { position: absolute; left: 23px; right: 23px; height: 6px; background: var(--ink); }
.phone b { top: 50px; box-shadow: 0 15px 0 var(--ink); }
.phone em { bottom: 49px; height: 24px; border-radius: 13px; }
.phone::after { content: ""; position: absolute; width: 10px; height: 10px; left: 50%; bottom: 11px; border-radius: 50%; background: #d7d2c8; transform: translateX(-50%); }
.mini-ticket { position: relative; width: 152px; height: 92px; border-radius: 13px; display: flex; flex-direction: column; gap: 10px; justify-content: center; padding: 0 28px; background: var(--paper); }
.mini-ticket::before, .mini-ticket::after { content: ""; position: absolute; top: 36px; width: 21px; height: 21px; border-radius: 50%; background: #204e3e; }
.mini-ticket::before { left: -10px; }
.mini-ticket::after { right: -10px; }
.mini-ticket i { width: 100%; height: 7px; background: var(--orange); }
.mini-ticket i:nth-child(2) { width: 62%; }
.ticket-illustration > b { position: absolute; right: 62px; top: 76px; width: 55px; height: 55px; border-radius: 50%; display: grid; place-items: center; background: var(--green); font-size: 27px; }
.bag { position: relative; width: 137px; height: 109px; margin-top: 38px; background: var(--orange); clip-path: polygon(8% 0, 92% 0, 82% 100%, 18% 100%); }
.bag::before { content: ""; position: absolute; width: 70px; height: 55px; left: 33px; top: -44px; border: 9px solid var(--paper); border-bottom: 0; border-radius: 45px 45px 0 0; }
.bag i, .bag b { position: absolute; left: 40px; top: 38px; width: 58px; height: 6px; background: var(--ink); }
.bag b { top: 61px; width: 39px; }

.safety-section { position: relative; overflow: hidden; padding: 144px var(--gutter) 130px; background: var(--paper); }
.safety-section::before { content: ""; position: absolute; width: 720px; height: 720px; right: -190px; top: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 110, 78, .36), rgba(255, 89, 56, 0) 69%); }
.safety-heading, .safety-grid, .notice { position: relative; max-width: 1280px; margin-inline: auto; }
.safety-heading { text-align: center; }
.safety-heading .eyebrow { margin-bottom: 30px; }
.safety-heading > p:last-child { margin: 22px 0 0; color: var(--ink-soft); }
.safety-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.safety-card { min-height: 330px; padding: 38px 34px 31px; border: 1px solid #d4d0c5; border-radius: 24px; display: flex; flex-direction: column; background: #ebe7dd; }
.safety-card-dark { color: white; background: var(--ink); border-color: var(--ink); }
.safety-card-orange { background: var(--orange); border-color: var(--orange); }
.safety-icon { width: 53px; height: 53px; margin-bottom: 47px; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--green); font-size: 25px; }
.safety-card-dark .safety-icon { color: var(--ink); background: var(--orange); }
.safety-card-orange .safety-icon { background: var(--ink); }
.safety-card h3 { margin: 0; font-size: 24px; }
.safety-card p { margin: 18px 0 0; max-width: 300px; color: #686860; font-size: 14px; line-height: 1.75; }
.safety-card-dark p { color: #a4a49e; }
.safety-card-orange p { color: #522d24; }
.safety-card small { margin-top: auto; color: #2a6b52; font-size: 10px; font-weight: 750; letter-spacing: .15em; }
.safety-card-dark small { color: #ff8d74; }
.safety-card-orange small { color: var(--ink); }
.notice { margin-top: 48px; padding: 24px 27px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; }
.notice > span { width: 38px; height: 38px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font-weight: 800; }
.notice p { margin: 0; display: flex; align-items: baseline; gap: 18px; color: #6c6b64; font-size: 13px; }
.notice p strong { color: var(--ink); font-size: 15px; }
.notice a { font-size: 13px; font-weight: 700; }

.site-footer { max-width: 1280px; min-height: 230px; margin: auto; padding: 56px 0 60px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto auto; align-items: start; gap: 65px; }
.footer-brand p { margin: 19px 0 0 51px; color: #76746d; font-size: 12px; }
.site-footer nav { display: flex; gap: 36px; padding-top: 17px; color: #686760; font-size: 12px; }
.back-to-top { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--ink); font-size: 20px; transition: transform .25s ease; }
.back-to-top:hover { transform: translateY(-4px); }

.confirm-dialog { width: min(92vw, 520px); padding: 0; border: 0; border-radius: 24px; color: var(--ink); background: var(--paper); box-shadow: 0 34px 100px rgba(0,0,0,.28); }
.confirm-dialog::backdrop { background: rgba(14, 21, 18, .72); backdrop-filter: blur(7px); }
.confirm-dialog form { position: relative; padding: 40px; }
.dialog-close { position: absolute; right: 20px; top: 20px; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 20px; }
.dialog-kicker { margin: 0 0 22px; color: var(--orange-dark); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.confirm-dialog h2 { margin: 0; font-size: 37px; letter-spacing: -.04em; }
.dialog-copy { margin: 17px 0 25px; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.dialog-coupon { padding: 20px 22px; border: 1px solid var(--line); border-radius: 15px; display: flex; align-items: center; justify-content: space-between; background: #ede9df; }
.dialog-coupon span { font-weight: 700; }
.dialog-coupon strong { font-size: 28px; }
.dialog-coupon small { font-size: 17px; }
.dialog-actions { margin-top: 22px; display: grid; grid-template-columns: 1fr 1.15fr; gap: 11px; }
.dialog-actions button { height: 52px; border-radius: 28px; cursor: pointer; font-weight: 700; }
.dialog-secondary { border: 1px solid var(--ink); background: transparent; }
.dialog-primary { border: 0; display: flex; align-items: center; justify-content: center; gap: 10px; color: white; background: var(--orange); }
.dialog-message { min-height: 18px; margin: 12px 5px 0; color: var(--orange-dark); font-size: 12px; text-align: center; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 28px; min-width: min(90vw, 320px); padding: 14px 19px; border-radius: 14px; color: white; background: var(--green); box-shadow: 0 18px 50px rgba(0,0,0,.24); transform: translateX(-50%); text-align: center; font-size: 13px; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes slow-spin { to { transform: rotate(360deg); } }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr .8fr; gap: 20px; }
  .hero h1 { font-size: clamp(58px, 7vw, 75px); }
  .coupon { min-height: 510px; }
  .verify-shell { gap: 28px; padding: 30px; }
  .assurance-list { gap: 12px; flex-wrap: wrap; }
  .journey-list { gap: 28px; }
  .journey-list::before { top: 122px; }
  .journey-illustration { max-width: 250px; }
  .site-footer { margin-inline: var(--gutter); }
}

@media (max-width: 820px) {
  .site-header { height: 82px; }
  .header-cta { min-height: 43px; padding: 0 16px; }
  .header-cta span { display: none; }
  .hero { height: auto; min-height: 0; padding-top: 123px; padding-bottom: 110px; grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 4; }
  .hero h1 { font-size: clamp(54px, 14vw, 76px); }
  .hero-lead { max-width: 610px; }
  .hero-visual { min-height: 530px; }
  .coupon { max-width: 425px; }
  .hero::after { bottom: -205px; }
  .section-intro { align-items: start; flex-direction: column; }
  .verify-shell { grid-template-columns: 1fr; }
  .verify-form-panel { min-height: 480px; }
  .result-panel { min-height: 480px; }
  .journey-heading { display: block; }
  .journey-heading > p:last-child { margin-top: 24px; }
  .journey-list { grid-template-columns: 1fr; gap: 75px; }
  .journey-list::before { left: 50%; right: auto; top: 80px; bottom: 110px; height: auto; border-top: 0; border-left: 2px dashed #6d8f81; }
  .journey-list li { display: grid; grid-template-columns: minmax(180px, 260px) 1fr; grid-template-rows: auto auto auto; column-gap: 34px; align-items: end; }
  .journey-illustration { grid-row: 1 / 4; margin: 0; }
  .journey-list li > p { grid-column: 2; }
  .journey-list h3, .journey-list li > span { grid-column: 2; }
  .safety-grid { grid-template-columns: 1fr; }
  .safety-card { min-height: 280px; }
  .notice p { display: block; }
  .notice p strong { display: block; margin-bottom: 5px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer nav { grid-column: 1 / -1; grid-row: 2; }
  .back-to-top { grid-column: 2; grid-row: 1; }
}

@media (max-width: 580px) {
  :root { --gutter: 20px; }
  .site-header { padding-inline: 20px; }
  .brand-mark { width: 32px; height: 38px; }
  .brand-wordmark { font-size: 11px; }
  .header-cta { font-size: 12px; }
  .hero { padding-top: 116px; padding-bottom: 92px; }
  .hero .eyebrow { margin-bottom: 24px; font-size: 10px; }
  .hero h1 { font-size: clamp(50px, 15vw, 66px); line-height: .98; }
  .hero-lead { margin-top: 27px; font-size: 14px; }
  .desktop-break { display: none; }
  .primary-button { min-height: 54px; padding-inline: 24px; font-size: 14px; }
  .round-link { width: 54px; height: 54px; }
  .hero-meta { font-size: 8px; }
  .hero-visual { min-height: 440px; margin-top: 22px; }
  .halo { width: 420px; height: 420px; }
  .coupon { width: 310px; min-height: 408px; grid-template-rows: 70px 1fr 78px; border-radius: 24px; }
  .coupon::before { top: 60px; box-shadow: 310px 0 0 var(--paper), 0 270px 0 var(--paper), 310px 270px 0 var(--paper); }
  .coupon-head, .coupon-foot { padding-inline: 20px; }
  .coupon-head { font-size: 8px; }
  .coupon-cube { width: 31px; height: 31px; }
  .coupon-body { padding: 36px 20px 19px; }
  .coupon-body p { font-size: 14px; }
  .coupon-body strong { font-size: 73px; }
  .coupon-body strong small { font-size: 34px; }
  .coupon-body > span { font-size: 10px; }
  .coupon-body a { margin-top: 20px; padding: 10px 15px; font-size: 10px; }
  .coupon-foot b, .coupon-foot div span { max-width: 175px; font-size: 7px; }
  .ticket-code { width: 48px; height: 43px; }
  .orbit-one { right: 0; }
  .section-intro h2, .journey-heading h2, .safety-heading h2 { font-size: 39px; }
  .verify-section, .journey-section, .safety-section { padding-top: 100px; padding-bottom: 105px; }
  .section-intro { margin-bottom: 38px; }
  .verify-shell { padding: 24px 17px 17px; border-radius: 22px; }
  .verify-form-panel { min-height: 455px; padding-inline: 5px; }
  .panel-kicker { margin-bottom: 38px; font-size: 9px; }
  .verify-form-panel h3 { font-size: 27px; }
  .panel-description { font-size: 12px; }
  .code-field input { font-size: 13px; }
  .assurance-list { font-size: 10px; }
  .result-panel { min-height: 470px; }
  .coupon-result { padding: 23px 19px; }
  .result-header { grid-template-columns: 66px 1fr; gap: 13px; }
  .coupon-image-wrap { width: 66px; height: 66px; }
  .valid-badge { grid-column: 1 / -1; justify-self: start; }
  .journey-list { margin-top: 65px; gap: 66px; }
  .journey-list::before { display: none; }
  .journey-list li { display: block; }
  .journey-illustration { max-width: 235px; margin: 0 auto 32px; }
  .journey-list h3 { font-size: 27px; }
  .safety-heading { text-align: left; }
  .safety-card { min-height: 300px; }
  .notice { grid-template-columns: auto 1fr; padding-inline: 4px; }
  .notice a { grid-column: 2; }
  .site-footer { margin-inline: 20px; gap: 30px; }
  .site-footer nav { flex-wrap: wrap; gap: 22px; }
  .footer-brand p { margin-left: 45px; }
  .confirm-dialog form { padding: 33px 23px 25px; }
  .confirm-dialog h2 { font-size: 31px; }
  .dialog-actions { grid-template-columns: 1fr; }
}

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