:root {
  color-scheme: light;
  --ink: #151a2d;
  --ink-soft: #2d344d;
  --muted: #677087;
  --canvas: #f5f3ed;
  --paper: #fffdf8;
  --line: #dcd9cf;
  --lime: #dfff76;
  --mint: #a6ead6;
  --coral: #ff8c72;
  --periwinkle: #aebcff;
  --white: #ffffff;
  --max-width: 1160px;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 11px;
}

.brand-mark svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark .ticket-rule {
  stroke-dasharray: 2 4;
  opacity: 0.7;
}

.brand-mark .ticket-check {
  stroke-width: 3;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  color: #d9dce7;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--white);
  background: rgb(255 255 255 / 9%);
}

nav .nav-status {
  margin-left: 4px;
  color: var(--ink);
  background: var(--lime);
}

nav .nav-status:hover,
nav .nav-status[aria-current="page"] {
  color: var(--ink);
  background: #ecffae;
}

.hero {
  overflow: hidden;
  color: var(--white);
  background-color: var(--ink);
  background-image:
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(56px, 8vw, 112px);
  padding-block: 78px 92px;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.hero .eyebrow,
.eyebrow.light {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.13;
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--lime);
  font-style: normal;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: #c6cad8;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.75;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.primary-action {
  color: var(--ink);
  background: var(--lime);
}

.primary-action:hover {
  background: #ecffae;
}

.secondary-action {
  color: var(--white);
  background: rgb(255 255 255 / 7%);
  border-color: rgb(255 255 255 / 24%);
}

.secondary-action:hover {
  background: rgb(255 255 255 / 13%);
}

.trust-list {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.trust-list li {
  padding: 7px 11px;
  color: #cbd0df;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.preview-wrap {
  position: relative;
  padding: 26px 0 0;
}

.preview-wrap::before {
  content: "";
  position: absolute;
  inset: -34px -54px 26px 38px;
  background: var(--periwinkle);
  border-radius: 46% 54% 42% 58%;
  opacity: 0.18;
  transform: rotate(-8deg);
}

.preview-label {
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 2;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--coral);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  transform: rotate(3deg);
}

.ledger-card {
  position: relative;
  z-index: 1;
  padding: 27px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgb(0 0 0 / 28%);
  transform: rotate(1.2deg);
}

.ledger-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.ledger-card h2 {
  margin: 3px 0 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.card-kicker {
  color: var(--muted);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.day-badge {
  padding: 7px 10px;
  color: #75301f;
  background: #ffe1d9;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 850;
}

.balance-grid {
  margin-block: 26px 20px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 10px;
}

.balance-main,
.balance-sub {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-radius: 18px;
}

.balance-main {
  background: var(--lime);
}

.balance-sub {
  background: #ececf4;
}

.balance-main span,
.balance-sub span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.balance-main strong {
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.balance-main small {
  margin-left: 3px;
  font-size: 15px;
  letter-spacing: 0;
}

.balance-sub strong {
  font-size: 22px;
}

.pace-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #f0ecff;
  border-radius: 15px;
}

.pace-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--periwinkle);
  border-radius: 11px;
  font-size: 19px;
  font-weight: 850;
}

.pace-row strong,
.pace-row span {
  display: block;
}

.pace-row strong {
  font-size: 13px;
}

.pace-row div span {
  color: var(--muted);
  font-size: 11px;
}

.timeline-mini {
  margin-block: 22px;
}

.timeline-mini > div {
  display: grid;
  grid-template-columns: 11px 1fr auto;
  align-items: center;
  gap: 10px;
  padding-block: 9px;
}

.timeline-mini > div + div {
  border-top: 1px solid var(--line);
}

.timeline-dot {
  width: 9px;
  height: 9px;
  background: var(--ink);
  border-radius: 50%;
}

.timeline-dot.cancel {
  background: var(--coral);
}

.timeline-mini p,
.timeline-mini strong,
.timeline-mini small {
  display: block;
  margin: 0;
}

.timeline-mini strong {
  font-size: 12px;
}

.timeline-mini small,
.timeline-mini time {
  color: var(--muted);
  font-size: 10px;
}

.demo-action {
  min-height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 850;
}

.preview-note {
  position: relative;
  z-index: 1;
  margin: 16px 12px 0;
  color: #aeb4c6;
  font-size: 11px;
  text-align: center;
}

.statement-band {
  color: var(--ink);
  background: var(--lime);
}

.statement-inner {
  min-height: 138px;
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  align-items: center;
  gap: 46px;
}

.statement-inner p,
.statement-inner strong {
  margin: 0;
}

.statement-inner p {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 750;
}

.statement-inner strong {
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.section {
  padding-block: 112px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border-radius: var(--radius-md);
}

.feature-lime { background: var(--lime); }
.feature-mint { background: var(--mint); }
.feature-coral { background: var(--coral); }

.feature-number {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.feature-symbol {
  height: 178px;
  display: flex;
  align-items: center;
  font-size: 108px;
  font-weight: 880;
  line-height: 1;
  letter-spacing: -0.1em;
}

.feature-symbol.events {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
}

.feature-symbol.events i {
  height: 20px;
  display: block;
  background: var(--ink);
  border-radius: 999px;
}

.feature-symbol.events i:nth-child(1) { width: 92%; }
.feature-symbol.events i:nth-child(2) { width: 68%; opacity: 0.68; }
.feature-symbol.events i:nth-child(3) { width: 82%; opacity: 0.38; }

.feature-symbol.pace {
  font-size: 77px;
}

.feature-symbol.pace small {
  margin-left: 9px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.feature-card h3 {
  margin-top: auto;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.scope-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.flow-section {
  color: var(--white);
  background: var(--ink);
}

.flow-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 140px);
}

.section-heading.compact {
  margin-bottom: 0;
}

.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding-block: 26px;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.flow-list li:last-child {
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.flow-list > li > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 850;
}

.flow-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.flow-list p {
  margin: 0;
  color: #b9bece;
  font-size: 14px;
}

.principles-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(70px, 10vw, 150px);
}

.principle-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding-block: 25px;
  border-top: 1px solid var(--line);
}

.principle-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.principle-list article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 24px;
  font-weight: 750;
}

.principle-list h3 {
  margin-bottom: 5px;
}

.principle-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.support-section {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.support-heading {
  margin-bottom: 36px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

details {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 16px;
}

summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 19px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  font-size: 24px;
  font-weight: 450;
  transition: transform 160ms ease;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  margin: -3px 22px 22px;
  padding-top: 17px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.contact-section {
  padding: 70px 0;
  background: var(--coral);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.contact-card h2 {
  margin-bottom: 12px;
}

.contact-card > div:first-child > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.contact-action {
  padding: 26px;
  background: rgb(255 255 255 / 55%);
  border: 1px solid rgb(21 26 45 / 18%);
  border-radius: var(--radius-md);
}

.contact-action a {
  display: inline-block;
  margin-bottom: 13px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 850;
  letter-spacing: -0.03em;
}

.contact-action p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

footer {
  color: #c8ccda;
  background: #0c1020;
}

.footer-inner {
  min-height: 164px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.footer-brand {
  color: var(--white);
}

.footer-inner > p {
  margin: 0;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

/* Privacy */
.legal-hero {
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.legal-hero-inner {
  padding-block: 76px 82px;
}

.legal-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(43px, 6vw, 68px);
}

.legal-hero p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: #c7cbda;
  font-size: 17px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(55px, 9vw, 112px);
  padding-block: 72px 112px;
}

.legal-summary {
  position: sticky;
  top: 28px;
  align-self: start;
}

.legal-summary > p {
  color: var(--muted);
  font-size: 13px;
}

.summary-card {
  margin-top: 24px;
  padding: 20px;
  background: var(--lime);
  border-radius: 16px;
}

.summary-card strong {
  display: block;
  margin-bottom: 8px;
}

.summary-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.legal-index {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.legal-index a {
  min-height: 40px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.legal-index a:hover {
  color: var(--ink);
}

.legal-content > section {
  scroll-margin-top: 24px;
  padding-block: 36px;
  border-top: 1px solid var(--line);
}

.legal-content > section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-content h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.legal-content h2 span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border-radius: 10px;
  font-size: 13px;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 15px;
}

.legal-content ul {
  padding-left: 23px;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-content a {
  font-weight: 750;
  text-underline-offset: 3px;
}

.data-table-wrap {
  overflow-x: auto;
  margin-block: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.data-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--paper);
}

.data-table th,
.data-table td {
  padding: 15px 17px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.data-table th {
  color: var(--ink);
  background: #eeece5;
}

.data-table td {
  color: var(--ink-soft);
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.notice-box {
  margin-block: 22px;
  padding: 20px;
  background: #e9e5ff;
  border-left: 4px solid #6c65bd;
  border-radius: 0 14px 14px 0;
}

.notice-box strong {
  display: block;
  margin-bottom: 7px;
}

.notice-box p {
  margin: 0;
  font-size: 13px;
}

.legal-contact {
  margin-top: 20px;
  padding: 22px;
  background: var(--coral);
  border-radius: 16px;
}

.legal-contact span,
.legal-contact a {
  display: block;
}

.legal-contact span {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 750;
}

.legal-contact a {
  font-size: 21px;
  font-weight: 850;
}

/* Download / prerelease */
.release-main {
  min-height: calc(100vh - 78px - 164px);
  display: grid;
  place-items: center;
  padding-block: 78px;
  background-color: var(--ink);
  background-image: radial-gradient(circle at 16% 26%, rgb(223 255 118 / 15%) 0 2px, transparent 3px);
  background-size: 34px 34px;
}

.release-card {
  width: min(calc(100% - 48px), 720px);
  padding: clamp(34px, 7vw, 64px);
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 30px 80px rgb(0 0 0 / 35%);
}

.release-mark {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 26px;
  transform: rotate(-3deg);
}

.release-mark svg {
  width: 61px;
  height: 61px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.release-mark .ticket-rule {
  stroke-dasharray: 2 4;
}

.release-card .eyebrow {
  justify-content: center;
}

.release-card h1 {
  margin-bottom: 16px;
  font-size: clamp(39px, 7vw, 61px);
}

.release-card .release-lead {
  max-width: 530px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 17px;
}

.release-status {
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 15px;
  list-style: none;
  overflow: hidden;
}

.release-status li {
  padding: 16px 10px;
}

.release-status li + li {
  border-left: 1px solid var(--line);
}

.release-status strong,
.release-status span {
  display: block;
}

.release-status strong {
  font-size: 13px;
}

.release-status span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.release-card .action-row {
  justify-content: center;
}

.release-card .secondary-action {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.release-fine-print {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .preview-wrap {
    width: min(100%, 520px);
    justify-self: center;
  }

  .statement-inner,
  .flow-grid,
  .principles-section,
  .contact-card,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .statement-inner {
    gap: 8px;
    padding-block: 27px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 340px;
  }

  .feature-symbol {
    height: 130px;
  }

  .flow-grid,
  .principles-section,
  .contact-card,
  .legal-layout {
    gap: 48px;
  }

  .legal-summary {
    position: static;
  }

  .legal-index {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding-block: 34px;
  }

  .footer-inner > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-block: 15px 12px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  nav a {
    flex: 0 0 auto;
    padding-inline: 10px;
  }

  nav .nav-status {
    margin-left: 0;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 56px 72px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  h2 {
    font-size: 36px;
  }

  .action-row {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .preview-wrap::before {
    inset-inline: 10px -10px;
  }

  .ledger-card {
    padding: 21px;
    transform: none;
  }

  .statement-inner {
    min-height: auto;
  }

  .section {
    padding-block: 82px;
  }

  .feature-card {
    min-height: 320px;
  }

  .scope-note {
    text-align: left;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-block: 56px;
  }

  .contact-action a {
    font-size: 19px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-inner > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-hero-inner {
    padding-block: 56px 62px;
  }

  .legal-layout {
    padding-block: 54px 82px;
  }

  .legal-content h2 {
    align-items: flex-start;
    font-size: 23px;
  }

  .release-main {
    min-height: auto;
    padding-block: 48px;
  }

  .release-card {
    width: min(calc(100% - 32px), 720px);
    padding: 32px 22px;
  }

  .release-status {
    grid-template-columns: 1fr;
  }

  .release-status li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
