:root {
  --ink: #101310;
  --ink-soft: #19201b;
  --ink-muted: #263129;
  --paper: #f4f2e9;
  --paper-deep: #e4e2d7;
  --white: #fffdf7;
  --red: #c54635;
  --red-dark: #993327;
  --green: #335c49;
  --green-dark: #244537;
  --yellow: #d3a84b;
  --line-dark: rgba(16, 19, 16, 0.16);
  --line-light: rgba(255, 253, 247, 0.18);
  --text-muted: #6f6b61;
  --header-height: 78px;
  --quick-height: 82px;
  --shell: 1280px;
  --gutter: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-x: hidden;
  padding-bottom: var(--quick-height);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Noto Serif KR", serif;
  letter-spacing: 0;
}

h1,
h2 {
  font-weight: 900;
  line-height: 1.2;
}

h3 {
  font-weight: 700;
  line-height: 1.35;
}

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

::selection {
  background: var(--yellow);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 3000;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.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;
}

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 132px 0;
}

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

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

.section--green {
  background: var(--green-dark);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--yellow);
}

.section-heading h2 {
  margin-top: 24px;
  font-size: 48px;
}

.section-heading > p:last-child {
  max-width: 560px;
  margin-top: 26px;
  color: inherit;
  opacity: 0.7;
  font-size: 18px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.button > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.button--primary:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.icon-button > svg {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 48px;
  line-height: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.icon-box > svg {
  display: block;
  width: 21px;
  height: 21px;
  margin: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    transform 360ms var(--ease),
    background-color 240ms ease,
    border-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 17, 15, 0.9);
  border-bottom-color: var(--line-light);
  backdrop-filter: blur(14px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  overflow: hidden;
  border-radius: 7px;
  line-height: 1;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__word {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__word strong {
  font-family: "Noto Serif KR", serif;
  font-size: 18px;
  font-weight: 900;
}

.brand__word small {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  opacity: 0.65;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--yellow);
  transition: right 220ms var(--ease);
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.header-cta > svg {
  width: 16px;
  height: 16px;
}

.header-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.menu-button {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: flex;
  flex-direction: column;
  padding: 22px var(--gutter) 36px;
  background: var(--paper);
  color: var(--ink);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-16px);
  transition:
    opacity 220ms ease,
    transform 280ms var(--ease),
    visibility 220ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.mobile-menu nav {
  display: grid;
  margin-top: 34px;
}

.mobile-menu nav a {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
  font-family: "Noto Serif KR", serif;
  font-size: 24px;
  font-weight: 900;
}

.mobile-menu nav svg {
  width: 22px;
  height: 22px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.98) 0%, rgba(17, 17, 15, 0.82) 36%, rgba(17, 17, 15, 0.15) 70%, rgba(17, 17, 15, 0.26) 100%),
    linear-gradient(180deg, rgba(17, 17, 15, 0.54) 0%, transparent 28%, rgba(17, 17, 15, 0.44) 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: end;
  gap: 56px;
  padding-top: 132px;
  padding-bottom: 148px;
}

.hero__copy {
  max-width: 780px;
}

.hero__eyebrow {
  color: var(--yellow);
}

.hero h1 {
  margin-top: 28px;
  color: var(--white);
  font-size: 64px;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.hero__lead {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.hero__metric {
  align-self: end;
  padding: 24px 0 2px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.hero__metric-label {
  display: block;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
}

.hero__metric > strong {
  display: flex;
  align-items: end;
  gap: 8px;
  margin-top: 7px;
  font-family: "Noto Serif KR", serif;
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
}

.hero__metric > strong small {
  margin-bottom: 10px;
  font-family: "Pretendard", sans-serif;
  color: var(--yellow);
  font-size: 15px;
}

.hero__metric p {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.hero__facts {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero__facts > div {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__facts > div:first-child {
  padding-left: 0;
}

.hero__facts > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.hero__facts span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.hero__facts strong {
  font-size: 17px;
  font-weight: 800;
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.marquee__track {
  width: max-content;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  animation: marquee-move 24s linear infinite;
}

.marquee__track span {
  font-family: "Noto Serif KR", serif;
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.marquee__track i {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--red);
}

@keyframes marquee-move {
  to {
    transform: translateX(-50%);
  }
}

/* Declaration */
.declaration {
  min-height: 740px;
  display: grid;
  place-items: center;
  text-align: center;
}

.declaration__inner {
  display: grid;
  justify-items: center;
}

.declaration h2 {
  margin-top: 32px;
  font-size: 56px;
}

.declaration h2::after {
  content: "";
  width: 1px;
  height: 86px;
  display: block;
  margin: 38px auto;
  background: var(--red);
}

.declaration__copy {
  color: var(--text-muted);
  font-size: 20px;
}

.brand-definition {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 44px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.brand-definition > span {
  min-height: 118px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  text-align: left;
}

.brand-definition > span + span {
  border-left: 1px solid var(--line-dark);
}

.brand-definition strong {
  color: var(--red);
  font-family: "Noto Serif KR", serif;
  font-size: 42px;
  line-height: 1;
}

.brand-definition small {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Market evidence */
.market-evidence {
  background: var(--ink);
}

.market-evidence__head {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px 70px;
  align-items: start;
}

.market-evidence__head .eyebrow {
  grid-column: 1 / -1;
}

.market-evidence__head h2 {
  font-size: 48px;
}

.market-evidence__head > p:last-child {
  max-width: 520px;
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.market-evidence__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.market-evidence__stats article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
  border-right: 1px solid var(--line-light);
}

.market-evidence__stats article:first-child {
  padding-left: 0;
}

.market-evidence__stats article:last-child {
  padding-right: 0;
  border-right: 0;
}

.market-evidence__stats span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 700;
}

.market-evidence__stats strong {
  margin-top: 12px;
  font-family: "Noto Serif KR", serif;
  color: var(--white);
  font-size: 56px;
  line-height: 1;
}

.market-evidence__stats small {
  margin-left: 5px;
  color: var(--yellow);
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
}

.market-evidence__stats em {
  margin-top: 12px;
  color: var(--yellow);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.market-evidence__source {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.market-evidence__source a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Problem */
.problem {
  background: var(--ink-soft);
}

.problem__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: 100px;
  align-items: start;
}

.problem .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.problem .section-heading h2 {
  color: var(--white);
}

.problem .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.pain-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.pain-list li {
  min-height: 190px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line-light);
}

.pain-list__number {
  align-self: start;
  padding-top: 39px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}

.pain-list h3 {
  color: var(--white);
  font-size: 26px;
}

.pain-list p {
  max-width: 440px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
}

.pain-list .icon-box {
  color: rgba(255, 255, 255, 0.58);
}

/* System */
.system {
  overflow: hidden;
}

.system::before {
  content: "60";
  position: absolute;
  top: -135px;
  right: -22px;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Noto Serif KR", serif;
  font-size: 420px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.system__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 60px;
  align-items: end;
}

.system__head .eyebrow {
  grid-column: 1 / -1;
}

.system__head h2 {
  font-size: 52px;
}

.system__head > p:last-child {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.cook-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.cook-flow article {
  min-width: 0;
  padding: 38px 34px 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.cook-flow article:first-child {
  padding-left: 0;
}

.cook-flow article:last-child {
  padding-right: 0;
  border-right: 0;
}

.cook-flow__step {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
}

.cook-flow strong {
  display: block;
  margin-top: 28px;
  font-family: "Noto Serif KR", serif;
  font-size: 78px;
  font-weight: 900;
  line-height: 1;
}

.cook-flow strong small {
  margin-left: 5px;
  font-family: "Pretendard", sans-serif;
  font-size: 17px;
}

.cook-flow h3 {
  margin-top: 26px;
  font-size: 23px;
}

.cook-flow p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
}

/* Film */
.process-film {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.process-film__video,
.process-film__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.process-film__video {
  object-fit: cover;
}

.process-film__shade {
  background: linear-gradient(90deg, rgba(17, 17, 15, 0.92) 0%, rgba(17, 17, 15, 0.63) 44%, rgba(17, 17, 15, 0.08) 78%);
}

.process-film__content {
  position: relative;
  z-index: 2;
}

.process-film h2 {
  margin-top: 25px;
  font-size: 58px;
}

.process-film__content > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.film-control {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.film-control .icon-box {
  color: var(--white);
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.film-control:hover .icon-box {
  background: var(--white);
  color: var(--ink);
}

.asset-note {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 24px;
  width: min(100% - (var(--gutter) * 2), var(--shell));
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

/* Menu */
.menu__head {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 60px;
  align-items: end;
}

.menu__head h2 {
  margin-top: 24px;
  font-size: 52px;
}

.menu__head > p {
  padding-bottom: 7px;
  color: var(--text-muted);
  font-size: 18px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 66px;
}

.menu-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: var(--white);
}

.menu-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.menu-card:hover .menu-card__media img {
  transform: scale(1.045);
}

.menu-card__media > span {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.menu-card__copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  padding: 24px;
}

.menu-card__copy h3 {
  font-size: 23px;
}

.menu-card__copy p {
  grid-column: 1 / -1;
  color: var(--text-muted);
  font-size: 14px;
}

.menu-card__copy strong {
  align-self: center;
  color: var(--red);
  font-size: 10px;
}

.menu-extension {
  display: grid;
  grid-template-columns: 48px 250px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  margin-top: 14px;
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.menu-extension .icon-box {
  color: var(--red);
  border-color: var(--line-dark);
}

.menu-extension small {
  display: block;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.menu-extension h3 {
  margin-top: 4px;
  font-size: 22px;
}

.menu-extension p {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 14px;
}

/* Channels */
.channels {
  background: var(--ink-soft);
}

.channels__head {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.channels__head h2 {
  font-size: 54px;
}

.channel-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.channel-list article {
  min-height: 330px;
  position: relative;
  padding: 36px 32px;
  border-right: 1px solid var(--line-light);
}

.channel-list article:first-child {
  padding-left: 0;
}

.channel-list article:last-child {
  padding-right: 0;
  border-right: 0;
}

.channel-list .icon-box {
  color: var(--yellow);
}

.channel-list > article > strong {
  position: absolute;
  top: 40px;
  right: 30px;
  color: rgba(255, 255, 255, 0.18);
  font-family: "Noto Serif KR", serif;
  font-size: 64px;
  line-height: 1;
}

.channel-list h3 {
  margin-top: 62px;
  color: var(--white);
  font-size: 34px;
}

.channel-list p {
  max-width: 310px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
}

/* Transparency */
.transparency__layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.cost-principles {
  border-top: 2px solid var(--ink);
}

.cost-principles article {
  min-height: 142px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.cost-principles__number {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.cost-principles h3 {
  font-size: 21px;
}

.cost-principles p {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 14px;
}

.cost-principles article > strong {
  padding: 8px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  color: var(--green-dark);
  font-size: 12px;
  white-space: nowrap;
}

/* Support */
.support__head {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}

.support__head h2 {
  font-size: 52px;
}

.support-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 78px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.support-flow li {
  position: relative;
  min-height: 276px;
  padding: 34px 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.support-flow li:first-child {
  padding-left: 0;
}

.support-flow li:last-child {
  border-right: 0;
  padding-right: 0;
}

.support-flow li > span {
  display: block;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.support-flow li > span::after {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  margin-top: 23px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  background: var(--green-dark);
}

.support-flow h3 {
  margin-top: 38px;
  font-size: 22px;
}

.support-flow p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.67);
}

/* FAQ */
.faq {
  background: var(--ink);
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  align-items: start;
}

.faq .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.faq .section-heading h2 {
  color: var(--white);
}

.faq .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.accordion__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.accordion__item h3 {
  margin: 0;
}

.accordion__item button {
  width: 100%;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.accordion__item button span {
  font-family: "Noto Serif KR", serif;
  font-size: 21px;
  font-weight: 700;
}

.accordion__item button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--yellow);
  transition: transform 240ms var(--ease);
}

.accordion__item button[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.accordion__panel {
  padding: 0 50px 28px 0;
}

.accordion__panel p {
  color: rgba(255, 255, 255, 0.62);
}

/* Inquiry */
.inquiry {
  min-height: 860px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.inquiry__media,
.inquiry__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.inquiry__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inquiry__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.95) 0%, rgba(17, 17, 15, 0.84) 48%, rgba(17, 17, 15, 0.55) 100%),
    linear-gradient(0deg, rgba(17, 17, 15, 0.62), transparent);
}

.inquiry__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 88px;
  align-items: center;
}

.inquiry__copy h2 {
  margin-top: 26px;
  font-size: 48px;
}

.inquiry__copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.inquiry__contact {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.inquiry__contact .icon-box {
  color: var(--yellow);
}

.inquiry__contact small {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
}

.inquiry__contact strong {
  display: block;
  margin-top: 2px;
  font-size: 18px;
}

.inquiry-form {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(17, 17, 15, 0.78);
  backdrop-filter: blur(14px);
}

.inquiry-form__head > span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
}

.inquiry-form__head strong {
  display: block;
  margin-top: 6px;
  font-family: "Noto Serif KR", serif;
  font-size: 27px;
  font-weight: 900;
}

.inquiry-form__head p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 14px;
  margin-top: 28px;
}

.form-grid label {
  min-width: 0;
}

.form-grid label > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.form-grid input,
.form-grid select {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: 0;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.form-grid select option {
  color: var(--ink);
}

.form-grid input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-grid input:focus,
.form-grid select:focus {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.12);
}

.consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.consent input,
.quick-inquiry__consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: var(--yellow);
}

.inquiry-form__submit {
  width: 100%;
  margin-top: 22px;
}

/* Footer */
.site-footer {
  background: #0a0a09;
  color: var(--white);
  border-top: 1px solid var(--line-light);
}

.site-footer__inner {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

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

.site-footer__inner > div:first-child > p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.site-footer__meta {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  text-align: right;
}

.site-footer__meta p + p {
  margin-top: 4px;
}

.demo-disclosure {
  padding: 15px max(var(--gutter), calc((100vw - var(--shell)) / 2));
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  line-height: 1.55;
}

/* Fixed inquiry */
.quick-inquiry {
  position: fixed;
  inset: auto 0 0;
  z-index: 1500;
  height: var(--quick-height);
  display: grid;
  grid-template-columns: 190px 0.8fr 1fr 1fr auto 145px;
  align-items: center;
  gap: 8px;
  padding: 10px max(18px, calc((100vw - var(--shell)) / 2));
  background: rgba(10, 10, 9, 0.96);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

.quick-inquiry__title span {
  display: block;
  color: var(--yellow);
  font-size: 9px;
  font-weight: 900;
}

.quick-inquiry__title strong {
  display: block;
  margin-top: 2px;
  font-family: "Noto Serif KR", serif;
  font-size: 17px;
}

.quick-inquiry input,
.quick-inquiry select {
  width: 100%;
  height: 42px;
  min-width: 0;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  outline: 0;
  font-size: 12px;
}

.quick-inquiry select option {
  color: var(--ink);
}

.quick-inquiry input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.quick-inquiry input:focus,
.quick-inquiry select:focus {
  border-color: var(--yellow);
}

.quick-inquiry__consent {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.quick-inquiry button {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 3px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.quick-inquiry button:hover {
  background: var(--yellow);
  color: var(--ink);
}

.quick-inquiry button svg {
  width: 16px;
  height: 16px;
}

.mobile-actions {
  display: none;
}

/* Dialog */
.result-dialog {
  width: min(92vw, 440px);
  padding: 38px;
  border: 0;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.result-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.result-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  flex-basis: 38px;
}

.result-dialog__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.result-dialog__icon svg {
  width: 24px;
  height: 24px;
}

.result-dialog h2 {
  margin-top: 22px;
  font-size: 26px;
}

.result-dialog p {
  margin-top: 12px;
  color: var(--text-muted);
}

.result-dialog__confirm {
  width: 100%;
  margin-top: 24px;
}

/* Validation */
input[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: #ff796f !important;
}

/* Tablet */
@media (max-width: 1080px) {
  :root {
    --gutter: 24px;
  }

  .section {
    padding: 112px 0;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-button {
    display: inline-grid;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 36px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero__metric > strong {
    font-size: 66px;
  }

  .problem__layout,
  .transparency__layout,
  .faq__layout {
    gap: 60px;
  }

  .section-heading h2,
  .inquiry__copy h2 {
    font-size: 42px;
  }

  .system__head h2,
  .menu__head h2,
  .support__head h2 {
    font-size: 46px;
  }

  .channels__head h2 {
    font-size: 48px;
  }

  .quick-inquiry {
    grid-template-columns: 150px 0.8fr 1fr auto 130px;
  }

  .quick-inquiry label:nth-of-type(3) {
    display: none;
  }

  .quick-inquiry__title strong {
    font-size: 15px;
  }
}

/* Narrow tablet */
@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .hero {
    min-height: 900px;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(17, 17, 15, 0.97) 0%, rgba(17, 17, 15, 0.8) 52%, rgba(17, 17, 15, 0.27) 100%),
      linear-gradient(180deg, rgba(17, 17, 15, 0.5) 0%, transparent 34%, rgba(17, 17, 15, 0.66) 100%);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 160px;
  }

  .hero__copy {
    max-width: 620px;
  }

  .hero__metric {
    width: 230px;
    justify-self: end;
  }

  .hero__facts > div {
    padding: 0 18px;
  }

  .problem__layout,
  .transparency__layout,
  .faq__layout,
  .inquiry__layout {
    grid-template-columns: 1fr;
  }

  .problem .section-heading,
  .faq .section-heading {
    position: static;
  }

  .problem__layout,
  .faq__layout {
    gap: 54px;
  }

  .system__head,
  .menu__head,
  .channels__head,
  .support__head,
  .market-evidence__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .system__head .eyebrow,
  .market-evidence__head .eyebrow {
    grid-column: auto;
  }

  .cook-flow,
  .menu-grid,
  .channel-list {
    grid-template-columns: 1fr;
  }

  .cook-flow article,
  .cook-flow article:first-child,
  .cook-flow article:last-child {
    display: grid;
    grid-template-columns: 100px 130px 1fr;
    gap: 14px 24px;
    align-items: center;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .cook-flow article:last-child {
    border-bottom: 0;
  }

  .cook-flow__step {
    grid-row: 1 / 3;
  }

  .cook-flow strong {
    grid-row: 1 / 3;
    margin: 0;
    font-size: 58px;
  }

  .cook-flow h3 {
    margin: 0;
  }

  .cook-flow p {
    margin: 0;
  }

  .menu-grid {
    gap: 12px;
  }

  .menu-extension {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .menu-extension p {
    grid-column: 2;
  }

  .market-evidence__stats article {
    padding: 24px;
  }

  .market-evidence__stats article:first-child {
    padding-left: 0;
  }

  .market-evidence__stats article:last-child {
    padding-right: 0;
  }

  .menu-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .menu-card__media {
    aspect-ratio: 1 / 1;
  }

  .menu-card__copy {
    align-content: center;
  }

  .channel-list article,
  .channel-list article:first-child,
  .channel-list article:last-child {
    min-height: 220px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .channel-list article:last-child {
    border-bottom: 0;
  }

  .channel-list h3 {
    margin-top: 34px;
  }

  .support-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-flow li:nth-child(2) {
    border-right: 0;
  }

  .support-flow li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .support-flow li:nth-child(3) {
    padding-left: 0;
  }

  .inquiry__layout {
    gap: 46px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .site-footer__meta {
    text-align: left;
  }

  .quick-inquiry {
    display: none;
  }

  .mobile-actions {
    position: fixed;
    inset: auto 0 0;
    z-index: 1500;
    height: var(--quick-height);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: rgba(10, 10, 9, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-actions a + a {
    background: var(--red);
  }

  .mobile-actions svg {
    width: 18px;
    height: 18px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  :root {
    --gutter: 18px;
    --quick-height: 68px;
  }

  body {
    font-size: 15px;
  }

  .section {
    padding: 88px 0;
  }

  .site-header__inner {
    gap: 10px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 18px;
  }

  .brand__word strong {
    font-size: 16px;
  }

  .brand__word small {
    font-size: 8px;
  }

  .header-cta {
    width: 42px;
    min-height: 42px;
    justify-content: center;
    padding: 0;
  }

  .header-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .menu-button {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .mobile-menu nav a {
    font-size: 21px;
  }

  .hero {
    min-height: 820px;
    align-items: end;
  }

  .hero__media img {
    object-position: 67% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(17, 17, 15, 0.38) 0%, rgba(17, 17, 15, 0.52) 33%, rgba(17, 17, 15, 0.98) 76%, rgba(17, 17, 15, 1) 100%),
      linear-gradient(90deg, rgba(17, 17, 15, 0.35), transparent 75%);
  }

  .hero__inner {
    display: block;
    padding-top: 120px;
    padding-bottom: 174px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: 39px;
    line-height: 1.3;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 30px;
  }

  .hero__actions .button {
    min-width: 0;
    min-height: 50px;
    padding: 0 13px;
    font-size: 13px;
  }

  .hero__metric {
    width: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 11px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .hero__metric-label {
    display: none;
  }

  .hero__metric > strong {
    margin: 0;
    font-size: 40px;
  }

  .hero__metric > strong small {
    margin-bottom: 5px;
    font-size: 11px;
  }

  .hero__metric p {
    margin: 0;
    font-size: 10px;
  }

  .hero__facts {
    grid-template-columns: repeat(3, 1fr);
    bottom: var(--quick-height);
  }

  .hero__facts > div,
  .hero__facts > div:first-child,
  .hero__facts > div:last-child {
    min-width: 0;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 0 10px;
  }

  .hero__facts span {
    font-size: 10px;
  }

  .hero__facts strong {
    font-size: 13px;
    line-height: 1.35;
  }

  .marquee__track {
    min-height: 58px;
    gap: 22px;
    padding-right: 22px;
  }

  .marquee__track span {
    font-size: 17px;
  }

  .declaration {
    min-height: 610px;
  }

  .declaration h2 {
    margin-top: 26px;
    font-size: 35px;
  }

  .declaration h2::after {
    height: 62px;
    margin: 30px auto;
  }

  .declaration__copy {
    font-size: 16px;
  }

  .section-heading h2,
  .inquiry__copy h2 {
    margin-top: 20px;
    font-size: 34px;
  }

  .section-heading > p:last-child,
  .inquiry__copy > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 16px;
  }

  .problem__layout {
    gap: 40px;
  }

  .pain-list li {
    min-height: 156px;
    grid-template-columns: 30px minmax(0, 1fr) 40px;
    gap: 10px;
  }

  .pain-list__number {
    padding-top: 30px;
  }

  .pain-list h3 {
    font-size: 21px;
  }

  .pain-list p {
    font-size: 14px;
  }

  .pain-list .icon-box {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .pain-list .icon-box > svg {
    width: 18px;
    height: 18px;
  }

  .system::before {
    top: -60px;
    right: -16px;
    font-size: 220px;
  }

  .system__head h2,
  .menu__head h2,
  .channels__head h2,
  .support__head h2 {
    font-size: 34px;
  }

  .cook-flow {
    margin-top: 52px;
  }

  .cook-flow article,
  .cook-flow article:first-child,
  .cook-flow article:last-child {
    grid-template-columns: 64px 74px 1fr;
    gap: 8px 12px;
    padding: 24px 0;
  }

  .cook-flow strong {
    font-size: 42px;
  }

  .cook-flow strong small {
    margin-left: 2px;
    font-size: 12px;
  }

  .cook-flow h3 {
    font-size: 17px;
  }

  .cook-flow p {
    font-size: 12px;
  }

  .process-film {
    min-height: 680px;
    align-items: end;
    padding-bottom: 100px;
  }

  .process-film__video {
    object-position: 58% center;
  }

  .process-film__shade {
    background: linear-gradient(180deg, rgba(17, 17, 15, 0.2) 0%, rgba(17, 17, 15, 0.68) 55%, rgba(17, 17, 15, 0.96) 100%);
  }

  .process-film h2 {
    margin-top: 20px;
    font-size: 38px;
  }

  .process-film__content > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 15px;
  }

  .asset-note {
    bottom: 18px;
    font-size: 10px;
  }

  .menu__head {
    gap: 18px;
  }

  .menu__head > p {
    font-size: 15px;
  }

  .menu-grid {
    margin-top: 44px;
  }

  .menu-card {
    grid-template-columns: 1fr;
  }

  .menu-card__media {
    aspect-ratio: 16 / 10;
  }

  .menu-card__copy {
    padding: 20px;
  }

  .menu-card__copy h3 {
    font-size: 20px;
  }

  .brand-definition {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .brand-definition > span {
    min-height: 92px;
    grid-template-columns: 44px 1fr;
    padding: 15px 12px;
  }

  .brand-definition > span + span {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .brand-definition strong {
    font-size: 34px;
  }

  .menu-extension {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0;
  }

  .menu-extension p {
    grid-column: 1 / -1;
  }

  .market-evidence__head h2 {
    font-size: 34px;
  }

  .market-evidence__head > p:last-child {
    font-size: 15px;
  }

  .market-evidence__stats {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .market-evidence__stats article,
  .market-evidence__stats article:first-child,
  .market-evidence__stats article:last-child {
    min-height: 124px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .market-evidence__stats article:last-child {
    border-bottom: 0;
  }

  .market-evidence__stats strong {
    font-size: 46px;
  }

  .channels__head {
    gap: 18px;
  }

  .channel-list {
    margin-top: 48px;
  }

  .channel-list article,
  .channel-list article:first-child,
  .channel-list article:last-child {
    min-height: 206px;
  }

  .channel-list > article > strong {
    right: 0;
    font-size: 54px;
  }

  .channel-list h3 {
    margin-top: 26px;
    font-size: 28px;
  }

  .transparency__layout {
    gap: 42px;
  }

  .cost-principles article {
    min-height: 150px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .cost-principles article > strong {
    grid-column: 2;
    justify-self: start;
  }

  .support__head {
    gap: 18px;
  }

  .support-flow {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .support-flow li,
  .support-flow li:first-child,
  .support-flow li:nth-child(3),
  .support-flow li:last-child {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .support-flow li:last-child {
    border-bottom: 0;
  }

  .support-flow li > span {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .support-flow li > span::after {
    margin: 0;
  }

  .support-flow h3 {
    margin-top: 18px;
    font-size: 20px;
  }

  .faq__layout {
    gap: 38px;
  }

  .accordion__item button {
    min-height: 88px;
  }

  .accordion__item button span {
    font-size: 17px;
  }

  .accordion__panel {
    padding-right: 0;
  }

  .inquiry {
    min-height: auto;
  }

  .inquiry__layout {
    gap: 38px;
  }

  .inquiry-form {
    padding: 24px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .site-footer__inner {
    min-height: 280px;
    gap: 34px;
  }

  .demo-disclosure {
    padding: 14px var(--gutter);
  }

  .quick-inquiry {
    display: none;
  }

  .mobile-actions {
    position: fixed;
    inset: auto 0 0;
    z-index: 1500;
    height: var(--quick-height);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: rgba(10, 10, 9, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-actions a + a {
    background: var(--red);
  }

  .mobile-actions svg {
    width: 18px;
    height: 18px;
  }

  .result-dialog {
    padding: 32px 24px 24px;
  }
}

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

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