@font-face {
  font-family: "Precious Display";
  src: url("./assets/pretendard-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --canvas: #07141d;
  --canvas-raised: #0b1c27;
  --surface: #102530;
  --text: #f1f3ee;
  --muted: #b4bdc0;
  --dim: #7e8b91;
  --line: rgba(220, 230, 229, 0.18);
  --line-strong: rgba(229, 237, 233, 0.34);
  --olive: #a0a878;
  --olive-strong: #b0b88a;
  --olive-ink: #172016;
  --focus: #d5ddac;
  --shadow: 0 24px 72px rgba(1, 8, 13, 0.42);
  --radius: 18px;
  --shell: 1180px;
  --shell-wide: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  line-height: 1.6;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

body [lang="en"] {
  display: none;
}

html[data-locale="en"] body [lang="ko"] {
  display: none;
}

html[data-locale="en"] body [lang="en"] {
  display: initial;
}

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

.shell-wide {
  width: min(calc(100% - 64px), var(--shell-wide));
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--olive-ink);
  background: var(--focus);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

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

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

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

h1,
h2,
h3,
.brand,
.button,
.collection-count,
.trust-points strong,
.footer-brand {
  font-family: "Precious Display", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", sans-serif;
  font-weight: 600;
}

h1,
h2,
h3 {
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(38px, 5.1vw, 72px);
  line-height: 1.08;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100dvh;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: #07131c;
}

.hero-media,
.focus-scene-media,
.guardian-backdrop,
.final-cta-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img,
.focus-scene-media img,
.guardian-backdrop img,
.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  object-position: center;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 10, 15, 0.86) 0%, rgba(3, 10, 15, 0.54) 30%, rgba(3, 10, 15, 0.1) 66%, rgba(3, 10, 15, 0.05) 100%),
    linear-gradient(180deg, rgba(2, 8, 12, 0.34) 0%, transparent 30%, rgba(3, 10, 15, 0.34) 100%);
}

.site-header {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: grid;
  min-height: 72px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--text);
  font-size: 15px;
  letter-spacing: -0.035em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img,
.footer-brand img {
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(241, 243, 238, 0.72);
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a,
.footer-links a,
.text-links a {
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.text-links a:hover,
.text-links a:focus-visible {
  color: var(--text);
}

.language-switch {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 9px;
  color: var(--dim);
  font-size: 12px;
}

.language-switch button {
  min-width: 34px;
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--dim);
  background: transparent;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: var(--olive-ink);
  background: var(--olive-strong);
}

.hero-inner {
  display: flex;
  align-items: center;
  padding-block: 52px 140px;
}

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

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(52px, 6.2vw, 88px);
  line-height: 1.04;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(241, 243, 238, 0.82);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: -0.025em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button:active {
  transform: scale(0.98);
}

.button-primary {
  color: var(--olive-ink);
  background: var(--olive-strong);
}

.button-primary:hover {
  background: #bdc49a;
}

.button-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(7, 20, 29, 0.42);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-teaser {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--line);
  background: rgba(7, 20, 29, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hero-teaser-inner {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.hero-teaser p,
.hero-teaser strong {
  margin-bottom: 0;
}

.hero-teaser p {
  color: var(--muted);
  font-size: 14px;
}

.hero-teaser strong {
  font-family: "Precious Display", sans-serif;
  font-size: 19px;
}

.section {
  padding-block: 150px;
}

.section-heading {
  margin-bottom: 82px;
}

.section-heading-left {
  max-width: 760px;
}

.section-heading-center {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 22px;
}

.section-heading p,
.flow-copy p,
.focus-scene-copy p,
.discovery-copy p,
.guardian-copy > p:not(.offer-label),
.trust-points p,
.faq-list p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
}

.flow-section {
  background: var(--canvas);
}

.flow-rail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr) minmax(0, 0.72fr);
  align-items: end;
  gap: clamp(34px, 5vw, 74px);
}

.flow-rail::before {
  position: absolute;
  top: 48%;
  right: 7%;
  left: 13%;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160, 168, 120, 0.6) 18%, rgba(160, 168, 120, 0.6) 82%, transparent);
  content: "";
}

.flow-step {
  position: relative;
  z-index: 1;
}

.flow-step-focus {
  align-self: center;
  padding-bottom: 52px;
}

.flow-step-keep {
  padding-bottom: 104px;
}

.flow-copy {
  max-width: 330px;
  margin-top: 28px;
}

.flow-copy h3 {
  margin-bottom: 10px;
  font-size: 27px;
}

.flow-copy p {
  margin-bottom: 0;
  font-size: 15px;
}

.media-shell {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #03090d;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.media-shell img {
  display: block;
  width: 100%;
  height: auto;
}

.device {
  position: relative;
  padding: 7px;
}

.device-portrait {
  max-width: 340px;
  border-radius: 46px;
}

.device-portrait img {
  border-radius: 39px;
}

.device-landscape {
  border-radius: 34px;
}

.device-landscape img {
  border-radius: 27px;
}

.device-small {
  max-width: 260px;
}

.focus-scene {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
}

.focus-scene-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 16, 22, 0.9) 0%, rgba(6, 16, 22, 0.5) 42%, rgba(6, 16, 22, 0.16) 74%, rgba(6, 16, 22, 0.26) 100%);
  content: "";
}

.focus-scene-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(540px, 1.35fr);
  align-items: center;
  gap: 78px;
}

.focus-scene-copy {
  max-width: 470px;
}

.focus-scene-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 4.6vw, 66px);
}

.focus-scene-copy p {
  margin-bottom: 0;
  color: rgba(241, 243, 238, 0.8);
}

.focus-device {
  transform: rotate(1deg);
}

.discovery-section {
  overflow: hidden;
  background: #081720;
}

.discovery-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(620px, 1.28fr);
  align-items: center;
  gap: 72px;
}

.discovery-copy {
  position: relative;
  z-index: 2;
}

.discovery-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(44px, 5.4vw, 74px);
}

.discovery-copy p {
  max-width: 490px;
  margin-bottom: 30px;
}

.collection-count {
  display: block;
  max-width: 440px;
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
  color: var(--olive-strong);
  font-size: 20px;
}

.discovery-collage {
  position: relative;
  min-height: 780px;
}

.reveal-device,
.catalog-device {
  position: absolute;
  width: min(42vw, 350px);
}

.reveal-device {
  top: 0;
  left: 7%;
  z-index: 2;
  transform: rotate(-3deg);
}

.catalog-device {
  right: 3%;
  bottom: 0;
  z-index: 1;
  transform: rotate(4deg);
}

.fish-art {
  position: absolute;
  right: 12%;
  top: 4%;
  z-index: 3;
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 7, 11, 0.36));
}

.guardian-section {
  position: relative;
  isolation: isolate;
  min-height: 900px;
  overflow: hidden;
  background: var(--canvas-raised);
}

.guardian-backdrop {
  opacity: 0.68;
}

.guardian-backdrop img {
  object-position: center;
}

.guardian-backdrop::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 16, 23, 0.96) 0%, rgba(6, 16, 23, 0.72) 48%, rgba(6, 16, 23, 0.28) 100%), linear-gradient(180deg, rgba(6, 16, 23, 0.25), rgba(6, 16, 23, 0.76));
  content: "";
}

.guardian-layout {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(330px, 0.78fr) minmax(540px, 1.22fr);
  align-items: center;
  gap: 70px;
  padding-block: 110px;
}

.guardian-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.offer-label {
  width: fit-content;
  margin-bottom: 24px;
  padding: 9px 15px;
  border: 1px solid rgba(213, 221, 172, 0.28);
  border-radius: 999px;
  color: var(--olive-ink);
  background: var(--olive-strong);
  font-size: 13px;
  font-weight: 700;
}

.guardian-copy h2 {
  margin-bottom: 24px;
}

.guardian-copy > p:not(.offer-label) {
  max-width: 480px;
  margin-bottom: 32px;
  color: rgba(241, 243, 238, 0.78);
}

.guardian-visual {
  position: relative;
  min-height: 680px;
}

.guardian-device {
  position: absolute;
  top: 0;
  right: 7%;
  z-index: 2;
  width: min(34vw, 350px);
}

.guardian-friends {
  position: absolute;
  right: 31%;
  bottom: 0;
  left: 0;
  z-index: 3;
  min-height: 260px;
}

.friend {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 7, 11, 0.48));
}

.friend-noeul {
  left: 0;
  bottom: 6px;
  width: 230px;
}

.friend-olive {
  left: 27%;
  bottom: 16px;
  width: 225px;
}

.friend-mongdol {
  left: 50%;
  bottom: 0;
  width: 205px;
}

.trust-section {
  padding-bottom: 112px;
  background: #091923;
}

.trust-section .section-heading {
  margin-bottom: 62px;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.trust-points > div {
  min-height: 180px;
  padding: 34px 34px 24px 0;
}

.trust-points > div + div {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.trust-points strong {
  display: block;
  margin-bottom: 12px;
  font-size: 19px;
}

.trust-points p {
  margin-bottom: 0;
  font-size: 15px;
}

.text-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 30px;
  color: var(--olive-strong);
  font-size: 14px;
}

.text-links a {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(160, 168, 120, 0.48);
}

.faq-section {
  padding-block: 120px 150px;
  background: var(--canvas);
}

.faq-shell {
  max-width: 840px;
}

.faq-section h2 {
  margin-bottom: 58px;
  text-align: center;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--text);
  font-family: "Precious Display", sans-serif;
  font-size: 18px;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 16px;
  color: var(--olive-strong);
  font-size: 22px;
  line-height: 14px;
  text-align: center;
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 720px;
  margin-bottom: 0;
  padding: 0 48px 26px 0;
  font-size: 15px;
}

.final-cta {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 540px;
  align-items: center;
  overflow: hidden;
}

.final-cta-media img {
  object-position: center 56%;
}

.final-cta-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 14, 20, 0.72), rgba(5, 14, 20, 0.22) 48%, rgba(5, 14, 20, 0.66));
  content: "";
}

.final-cta-inner {
  margin-left: auto;
  padding-left: 48%;
}

.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 68px);
}

.final-cta p {
  margin-bottom: 28px;
  color: rgba(241, 243, 238, 0.84);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #061119;
}

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

.footer-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.footer-inner > p {
  justify-self: end;
  margin-bottom: 0;
  color: var(--dim);
  font-size: 12px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-media img {
    animation: hero-breathe 18s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  }

  .fish-art {
    animation: fish-drift 6s ease-in-out infinite alternate;
  }
}

@keyframes hero-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.025); }
}

@keyframes fish-drift {
  from { transform: translate3d(0, 0, 0) rotate(-3deg); }
  to { transform: translate3d(0, -8px, 0) rotate(2deg); }
}

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

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

@media (prefers-reduced-transparency: reduce) {
  .button-ghost,
  .hero-teaser {
    background: rgba(7, 20, 29, 0.97);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (max-width: 1080px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .flow-rail {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .flow-step-keep {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 30px;
    padding: 30px 10% 0 48%;
  }

  .flow-step-keep .flow-copy {
    margin-top: 0;
  }

  .flow-rail::before {
    display: none;
  }

  .focus-scene-inner,
  .discovery-layout,
  .guardian-layout {
    gap: 42px;
  }

  .discovery-layout {
    grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  }

  .discovery-collage {
    min-height: 670px;
  }

  .friend-noeul { width: 190px; }
  .friend-olive { width: 190px; }
  .friend-mongdol { width: 175px; }
}

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

  .hero {
    min-height: 100dvh;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(3, 10, 15, 0.9) 0%, rgba(3, 10, 15, 0.5) 75%, rgba(3, 10, 15, 0.24) 100%), linear-gradient(180deg, rgba(2, 8, 12, 0.4), transparent 36%, rgba(3, 10, 15, 0.68) 100%);
  }

  .hero-inner {
    align-items: end;
    padding-block: 60px 160px;
  }

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

  .hero h1 {
    font-size: clamp(45px, 10.5vw, 70px);
  }

  .section {
    padding-block: 104px;
  }

  .section-heading {
    margin-bottom: 58px;
  }

  .flow-rail,
  .focus-scene-inner,
  .discovery-layout,
  .guardian-layout,
  .trust-points {
    grid-template-columns: 1fr;
  }

  .flow-rail {
    gap: 86px;
  }

  .flow-step,
  .flow-step-focus,
  .flow-step-keep {
    display: grid;
    grid-template-columns: minmax(200px, 0.75fr) minmax(230px, 1fr);
    align-items: center;
    gap: 36px;
    padding: 0;
  }

  .flow-step-focus {
    grid-template-columns: 1fr;
  }

  .flow-step-focus .flow-copy {
    max-width: 480px;
  }

  .flow-copy {
    margin-top: 0;
  }

  .focus-scene {
    min-height: 760px;
  }

  .focus-scene-inner {
    gap: 48px;
  }

  .focus-scene-copy {
    max-width: 620px;
  }

  .discovery-copy {
    max-width: 660px;
  }

  .discovery-collage {
    min-height: 740px;
  }

  .reveal-device,
  .catalog-device {
    width: 320px;
  }

  .guardian-section,
  .guardian-layout {
    min-height: auto;
  }

  .guardian-layout {
    padding-block: 104px;
  }

  .guardian-visual {
    min-height: 650px;
  }

  .guardian-device {
    right: 12%;
    width: 330px;
  }

  .guardian-friends {
    right: 38%;
  }

  .trust-points > div {
    min-height: auto;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-points > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .final-cta-inner {
    padding-left: 34%;
  }

  .footer-inner {
    min-height: 150px;
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding-block: 28px;
  }

  .footer-inner > p {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

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

  .nav {
    min-height: 66px;
    gap: 10px;
  }

  .brand {
    gap: 9px;
    font-size: 13px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .language-switch {
    gap: 4px;
  }

  .language-switch button {
    min-width: 30px;
    min-height: 30px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media img {
    object-position: 49% center;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(2, 8, 12, 0.28) 0%, rgba(3, 10, 15, 0.28) 26%, rgba(3, 10, 15, 0.9) 76%, rgba(3, 10, 15, 0.98) 100%);
  }

  .hero-inner {
    align-items: end;
    padding-block: 250px 142px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(41px, 12.6vw, 56px);
  }

  .hero-lead {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 280px);
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .button {
    min-height: 49px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .hero-teaser-inner {
    min-height: 96px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
  }

  .hero-teaser p {
    margin-bottom: 0;
    font-size: 12px;
  }

  .hero-teaser strong {
    font-size: 16px;
  }

  .section {
    padding-block: 84px;
  }

  h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading p,
  .focus-scene-copy p,
  .discovery-copy p,
  .guardian-copy > p:not(.offer-label) {
    font-size: 16px;
  }

  .flow-rail {
    gap: 72px;
  }

  .flow-step,
  .flow-step-focus,
  .flow-step-keep {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .flow-step .device-portrait {
    width: min(80vw, 310px);
    margin-inline: auto;
  }

  .flow-step-focus .device-landscape {
    width: calc(100% + 12px);
    margin-left: -6px;
  }

  .flow-copy {
    max-width: 100%;
  }

  .focus-scene {
    min-height: 690px;
  }

  .focus-scene-media img {
    object-position: 40% center;
  }

  .focus-scene-media::after {
    background: linear-gradient(180deg, rgba(6, 16, 22, 0.82) 0%, rgba(6, 16, 22, 0.36) 52%, rgba(6, 16, 22, 0.68) 100%);
  }

  .focus-scene-inner {
    gap: 38px;
  }

  .focus-scene-copy h2 {
    font-size: 39px;
  }

  .focus-device {
    width: calc(100% + 20px);
    margin-left: -10px;
    transform: none;
  }

  .discovery-layout {
    gap: 54px;
  }

  .discovery-copy h2 {
    font-size: 42px;
  }

  .collection-count {
    font-size: 17px;
  }

  .discovery-collage {
    min-height: 610px;
  }

  .reveal-device,
  .catalog-device {
    width: 58vw;
    max-width: 260px;
  }

  .reveal-device {
    left: 0;
  }

  .catalog-device {
    right: 0;
  }

  .fish-art {
    right: 2%;
    top: 0;
    width: 112px;
    height: 112px;
  }

  .guardian-backdrop img {
    object-position: 46% center;
  }

  .guardian-layout {
    gap: 52px;
    padding-block: 84px;
  }

  .guardian-copy h2 {
    font-size: 44px;
  }

  .guardian-visual {
    min-height: 560px;
  }

  .guardian-device {
    right: 0;
    width: 64vw;
    max-width: 280px;
  }

  .guardian-friends {
    right: 35%;
    min-height: 220px;
  }

  .friend-noeul { width: 150px; }
  .friend-olive { left: 23%; width: 150px; }
  .friend-mongdol { left: 44%; width: 140px; }

  .trust-section .section-heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .trust-points {
    border-top: 1px solid var(--line-strong);
  }

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

  .faq-section {
    padding-block: 84px 104px;
  }

  .faq-section h2 {
    margin-bottom: 38px;
    text-align: left;
  }

  .faq-list summary {
    padding-block: 22px;
    font-size: 16px;
  }

  .faq-list p {
    padding-right: 18px;
  }

  .final-cta {
    min-height: 560px;
    align-items: end;
  }

  .final-cta-media img {
    object-position: 42% center;
  }

  .final-cta-media::after {
    background: linear-gradient(180deg, rgba(5, 14, 20, 0.18), rgba(5, 14, 20, 0.92) 74%, rgba(5, 14, 20, 0.98));
  }

  .final-cta-inner {
    padding: 0 0 62px;
  }

  .final-cta h2 {
    font-size: 43px;
  }

  .final-cta .button {
    min-width: 190px;
  }

  .footer-inner {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
  }

  .footer-inner > p {
    margin-bottom: 0;
  }
}

@media (max-width: 380px) {
  .brand span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 830px;
  }
}
