﻿:root {
  --ink: #08213f;
  --ink-deep: #05162c;
  --cream: #f8f2e4;
  --cream-2: #efe6d1;
  --paper: #f4f8f9;
  --sky: #8ddcff;
  --sky-2: #4eb7ff;
  --blue: #1f72df;
  --sea: #0c4d99;
  --sea-deep: #061a35;
  --green: #5fc987;
  --foam: #eaffff;
  --muted: #667789;
  --line: rgba(8, 33, 63, 0.12);
  --white: #ffffff;
  --max: 1320px;
  --shadow: 0 24px 70px rgba(5, 31, 61, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 3%, rgba(141, 220, 255, 0.24), transparent 24%),
    radial-gradient(circle at 90% 16%, rgba(95, 201, 135, 0.18), transparent 21%),
    linear-gradient(180deg, var(--cream) 0%, #edf7fb 44%, #f7fbfc 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Noto Sans JP", "Noto Sans SC", sans-serif;
  overflow-x: hidden;
}

body.locale-error::before {
  content: "Language data could not be loaded.";
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  padding: 18px 22px;
  border-radius: 16px;
  color: #fff;
  background: #8b1f27;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 82px;
  padding: 0 max(22px, 4vw);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #f8fbff;
  background: rgba(5, 23, 45, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
  transition: background 0.3s ease;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(74, 189, 255, 0.26));
}

.brand span {
  font-size: 1.04rem;
}

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

.desktop-nav a {
  color: rgba(248, 251, 255, 0.72);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.language-nav button {
  appearance: none;
  border: 0;
  padding: 8px 7px;
  border-radius: 9px;
  color: rgba(248, 251, 255, 0.54);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 850;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.language-nav button:hover {
  color: #fff;
}

.language-nav button.is-active {
  color: var(--ink);
  background: linear-gradient(135deg, #fff8e6, #e5fff2);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 17px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: 72px;
  z-index: 58;
  display: none;
  padding: 20px;
  color: #fff;
  background: rgba(5, 23, 45, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-panel a {
  display: block;
  padding: 13px 4px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 800;
}

.mobile-panel.is-open {
  display: block;
}

main {
  overflow: hidden;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  padding: 142px max(24px, 6vw) 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  gap: 54px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 76% 16%, rgba(145, 225, 255, 0.34), transparent 22%),
    radial-gradient(circle at 82% 52%, rgba(95, 201, 135, 0.22), transparent 20%),
    linear-gradient(180deg, #06152c 0%, #0b3567 32%, #1572c9 66%, #dff5ff 100%);
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  left: -12%;
  top: -18%;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 247, 212, 0.43), transparent 69%);
  filter: blur(24px);
}

.home-hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -120px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.50), transparent 64%);
}

.hero-sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cloud {
  position: absolute;
  width: 210px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  filter: blur(1px);
  animation: cloudDrift 22s linear infinite;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.cloud::before {
  width: 88px;
  height: 88px;
  left: 30px;
  bottom: 0;
}

.cloud::after {
  width: 118px;
  height: 118px;
  right: 18px;
  bottom: -2px;
}

.cloud-one {
  top: 18%;
  left: -12%;
}

.cloud-two {
  top: 34%;
  left: 26%;
  opacity: 0.6;
  animation-duration: 31s;
  animation-delay: -8s;
}

.cloud-three {
  top: 9%;
  right: -14%;
  opacity: 0.45;
  animation-duration: 27s;
  animation-delay: -12s;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero-title {
  margin: 0;
  font-size: clamp(3.6rem, 7.5vw, 8.6rem);
  line-height: 0.91;
  letter-spacing: -0.078em;
  font-weight: 780;
  text-shadow: 0 18px 64px rgba(2, 12, 28, 0.28);
}

.hero-lead {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(248, 252, 255, 0.82);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.85;
}

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

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, #fff7e4, #e7fff3);
  box-shadow: 0 18px 44px rgba(5, 18, 39, 0.24);
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.hero-note {
  margin-top: 48px;
  color: rgba(248, 252, 255, 0.46);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.73rem;
  letter-spacing: 0.18em;
}

.voyage-scene {
  --pointer-x: 0px;
  --pointer-y: 0px;
  position: relative;
  z-index: 3;
  min-height: 640px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.voyage-sun {
  position: absolute;
  top: 7%;
  right: 14%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 247, 204, 0.68), rgba(255, 247, 204, 0) 70%);
  filter: blur(2px);
  animation: sunPulse 6s ease-in-out infinite;
}

.voyage-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  animation: ringSpin linear infinite;
}

.voyage-ring-one {
  width: min(520px, 84vw);
  aspect-ratio: 1;
  animation-duration: 28s;
}

.voyage-ring-two {
  width: min(660px, 96vw);
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.56;
  animation-duration: 36s;
  animation-direction: reverse;
}

.voyage-logo-wrap {
  position: relative;
  z-index: 2;
  width: min(560px, 84vw);
  display: grid;
  place-items: center;
  transform: translate(var(--pointer-x), var(--pointer-y));
  transition: transform 0.35s ease-out;
  animation: whaleFloat 7s ease-in-out infinite;
}

.voyage-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 14% 14% 20%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 60, 127, 0.30), transparent 72%);
  filter: blur(20px);
}

.voyage-logo {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 28px 58px rgba(3, 13, 29, 0.30))
    drop-shadow(0 0 20px rgba(116, 218, 255, 0.20));
}

.voyage-chip {
  position: absolute;
  z-index: 4;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.90);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(3, 13, 29, 0.16);
  backdrop-filter: blur(16px);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  animation: chipFloat 6s ease-in-out infinite;
}

.voyage-chip-top {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.voyage-chip-left {
  left: 0;
  bottom: 28%;
  animation-delay: -2s;
}

.voyage-chip-right {
  right: 0;
  top: 32%;
  animation-delay: -4s;
}

.service-orb {
  position: absolute;
  z-index: 4;
  width: 138px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 36%;
  text-align: center;
  box-shadow: 0 22px 46px rgba(3, 13, 29, 0.24);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  animation: orbFloat 6.4s ease-in-out infinite;
}

.orb-birth {
  top: 10%;
  left: 6%;
  color: #fff;
  background: linear-gradient(145deg, #8290ff, #c176ff);
}

.orb-haedurio {
  right: 4%;
  top: 28%;
  color: var(--ink);
  background: linear-gradient(145deg, #c5fff0, #69d2ff);
  animation-delay: -2.2s;
}

.orb-covert {
  left: 10%;
  bottom: 16%;
  color: var(--ink);
  background: linear-gradient(145deg, #f4f9fb, #a8c2cf);
  animation-delay: -4.1s;
}

.ocean-layer {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(232, 251, 255, 0.44);
  border-color: rgba(232, 251, 255, 0.44) transparent transparent transparent;
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  animation: waveShift 8s ease-in-out infinite;
}

.ocean-one {
  bottom: 82px;
  width: min(640px, 92%);
  height: 150px;
}

.ocean-two {
  bottom: 28px;
  width: min(760px, 108%);
  height: 190px;
  opacity: 0.56;
  animation-duration: 11s;
  animation-direction: reverse;
}

.scroll-indicator {
  position: absolute;
  left: max(24px, 6vw);
  bottom: 28px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(248, 252, 255, 0.52);
}

.scroll-indicator span {
  width: 46px;
  height: 1px;
  background: currentColor;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.scroll-indicator small {
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.section {
  position: relative;
  padding: 122px max(24px, 6vw);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 52px;
  align-items: end;
}

.section-title {
  margin: 0;
  font-size: clamp(2.7rem, 5.5vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.066em;
}

.section-body {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.worlds-section {
  background: linear-gradient(180deg, var(--cream) 0%, #edf8fb 100%);
}

.world-list {
  margin-top: 58px;
  display: grid;
  gap: 18px;
}

.world-card {
  position: relative;
  padding: 30px;
  display: grid;
  grid-template-columns: 72px minmax(180px, 0.9fr) minmax(0, 1.1fr) 30px;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 46px rgba(8, 33, 63, 0.08);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.world-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.92;
  pointer-events: none;
}

.world-card[data-theme="birth"]::before {
  background: linear-gradient(135deg, rgba(165, 108, 255, 0.15), transparent 56%);
}

.world-card[data-theme="haedurio"]::before {
  background: linear-gradient(135deg, rgba(67, 204, 207, 0.17), transparent 56%);
}

.world-card[data-theme="covert"]::before {
  background: linear-gradient(135deg, rgba(18, 54, 79, 0.13), transparent 56%);
}

.world-card > * {
  position: relative;
  z-index: 1;
}

.world-card:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 114, 223, 0.20);
  box-shadow: 0 31px 62px rgba(8, 33, 63, 0.14);
}

.world-index {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: rgba(8, 33, 63, 0.46);
  font-size: 0.82rem;
  font-weight: 800;
}

.world-visual {
  height: 165px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.98), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(220, 241, 249, 0.88));
}

.world-visual img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.world-card:hover .world-visual img {
  transform: scale(1.06) translateY(-5px);
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #8090a1;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.status-pill {
  padding: 6px 10px;
  border-radius: 999px;
  color: #0b3d6f;
  background: rgba(137, 213, 255, 0.23);
}

.world-copy h3 {
  margin: 14px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.world-copy p {
  margin: 17px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.world-link {
  font-size: 1.5rem;
  transition: transform 0.28s ease;
}

.world-card:hover .world-link {
  transform: translate(4px, -3px);
}

.studio-section {
  color: #f8fbff;
  background:
    radial-gradient(circle at 18% 0%, rgba(120, 219, 255, 0.14), transparent 26%),
    radial-gradient(circle at 86% 78%, rgba(95, 201, 135, 0.12), transparent 22%),
    linear-gradient(180deg, #06203e 0%, #0a315a 100%);
  overflow: hidden;
}

.studio-orbit {
  position: absolute;
  right: -15vw;
  top: 8%;
  width: 48vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: ringSpin 42s linear infinite;
}

.studio-orbit::before,
.studio-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.08);
}

.studio-orbit::before {
  inset: 18%;
}

.studio-orbit::after {
  inset: 36%;
}

.studio-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.studio-title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.068em;
}

.studio-copy {
  align-self: end;
}

.studio-copy p {
  margin: 0;
  color: rgba(248, 251, 255, 0.75);
  line-height: 1.9;
}

.studio-quote {
  margin-top: 24px !important;
  color: #fff !important;
  font-size: 1.25rem;
  font-weight: 760;
}

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

.principle {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(2, 10, 22, 0.18);
  backdrop-filter: blur(12px);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.principle:hover {
  transform: translateY(-8px);
  border-color: rgba(142, 223, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.principle-index,
.feature-index,
.step-index {
  color: var(--sky);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 900;
}

.principle h3,
.feature-card h3,
.process-step h3 {
  margin: 28px 0 0;
  font-size: 1.35rem;
}

.principle p,
.feature-card p,
.process-step p {
  margin: 14px 0 0;
  color: rgba(248, 251, 255, 0.68);
  line-height: 1.8;
}

.site-footer {
  padding: 34px max(24px, 6vw) 42px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: rgba(8, 33, 63, 0.58);
  background: var(--cream);
  font-size: 0.82rem;
}

.service-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(141, 220, 255, 0.20), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(95, 201, 135, 0.16), transparent 18%),
    linear-gradient(180deg, var(--cream) 0%, #eef8fb 100%);
}

.service-hero {
  position: relative;
  min-height: 100svh;
  padding: 142px max(24px, 6vw) 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 60px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(141, 220, 255, 0.30), transparent 20%),
    radial-gradient(circle at 74% 44%, rgba(95, 201, 135, 0.17), transparent 18%),
    linear-gradient(180deg, #06152c 0%, #0b3567 42%, #1572c9 100%);
}

.service-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(248, 242, 228, 0.95));
  pointer-events: none;
}

.service-hero-copy,
.service-art {
  position: relative;
  z-index: 2;
}

.service-order {
  margin: 0 0 24px;
  color: var(--sky);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-hero-title {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3.4rem, 7vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-shadow: 0 18px 60px rgba(3, 16, 33, 0.26);
}

.service-hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(247, 250, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.88;
}

.tag-list {
  margin-top: 28px;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.tag {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, #fff7e4, #e6fff3);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.external-cta {
  margin-top: 28px;
}

.service-art {
  display: grid;
  place-items: center;
  min-height: 560px;
}

.service-art-orbit {
  position: absolute;
  width: min(560px, 92vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  animation: ringSpin 30s linear infinite;
}

.service-art-frame {
  position: relative;
  z-index: 1;
  width: min(470px, 82vw);
  aspect-ratio: 1;
  padding: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 34px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.96), transparent 24%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 62px rgba(4, 17, 35, 0.26);
  animation: whaleFloat 8s ease-in-out infinite;
}

.service-art-frame img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.service-art-caption {
  position: absolute;
  bottom: 4%;
  margin: 0;
  color: rgba(247, 250, 255, 0.64);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.statement-title {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.3rem);
  line-height: 0.96;
  letter-spacing: -0.068em;
}

.statement-body {
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.95;
}

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

.feature-card,
.process-step {
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(8, 33, 63, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover,
.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 114, 223, 0.18);
  box-shadow: 0 28px 58px rgba(8, 33, 63, 0.13);
}

.feature-card p,
.process-step p {
  color: var(--muted);
}

.process-section {
  background: rgba(255, 255, 255, 0.36);
}

.closing-card {
  padding: clamp(34px, 6vw, 70px);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(141, 220, 255, 0.22), transparent 23%),
    linear-gradient(145deg, #061a35, #0b3b6c);
  box-shadow: var(--shadow);
}

.closing-card h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.closing-card p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(248, 251, 255, 0.72);
  line-height: 1.85;
}

.closing-card .button {
  margin-top: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes whaleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-11px);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -8px;
  }
}

@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes waveShift {
  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    transform: translateX(-50%) scaleX(1.06);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleX(0.55);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes cloudDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(140vw);
  }
}

@keyframes sunPulse {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@media (max-width: 1100px) {
  .home-hero,
  .service-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .voyage-scene {
    min-height: 560px;
  }

  .voyage-chip-left,
  .voyage-chip-right {
    display: none;
  }

  .section-head,
  .studio-intro,
  .statement-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .world-card {
    grid-template-columns: 60px 1fr;
    grid-template-areas:
      "index visual"
      "copy copy"
      "link link";
  }

  .world-index {
    grid-area: index;
  }

  .world-visual {
    grid-area: visual;
  }

  .world-copy {
    grid-area: copy;
  }

  .world-link {
    grid-area: link;
  }

  .service-art {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 72px;
    padding: 0 16px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }

  .home-hero,
  .service-hero {
    padding-top: 112px;
  }

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

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .brand span {
    display: none;
  }

  .language-nav button {
    padding: 7px 5px;
  }

  .home-hero,
  .service-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-title,
  .service-hero-title {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

  .voyage-scene {
    min-height: 460px;
  }

  .voyage-chip {
    display: none;
  }

  .voyage-logo-wrap {
    width: min(430px, 88vw);
  }

  .service-orb {
    width: 92px;
    padding: 10px;
    font-size: 0.57rem;
  }

  .orb-birth {
    left: 0;
  }

  .orb-haedurio {
    right: 0;
  }

  .orb-covert {
    left: 6%;
  }

  .scroll-indicator {
    left: 18px;
  }

  .section {
    padding: 88px 18px;
  }

  .world-card {
    padding: 22px;
  }

  .service-art {
    min-height: 390px;
  }

  .service-art-frame {
    width: min(340px, 86vw);
    padding: 24px;
  }

  .service-art-orbit {
    width: min(400px, 96vw);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   WHALE LAND CLEAN OCEAN REFRESH
   New logo + calmer voyage design
   ========================================================= */

:root {
  --ink: #06264a;
  --ink-deep: #031a35;
  --cream: #fbf4e6;
  --cream-2: #f1e7d2;
  --paper: #f7fbfb;
  --sky: #9bdfff;
  --sky-2: #56bfff;
  --blue: #1674d8;
  --sea: #0b61b4;
  --sea-deep: #04264e;
  --green: #5fc982;
  --foam: #f1ffff;
  --muted: #587087;
  --line: rgba(6, 38, 74, 0.11);
  --white: #ffffff;
  --max: 1240px;
  --shadow: 0 22px 60px rgba(4, 39, 77, 0.12);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 2%, rgba(155, 223, 255, 0.32), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(95, 201, 130, 0.18), transparent 18%),
    linear-gradient(180deg, var(--cream) 0%, #eff9fc 42%, #ffffff 100%);
}

.page-grain {
  opacity: 0.018;
}

.site-header {
  height: 76px;
  color: var(--ink);
  background: rgba(255, 252, 244, 0.76);
  border-bottom: 1px solid rgba(6, 38, 74, 0.09);
  box-shadow: 0 14px 40px rgba(4, 39, 77, 0.06);
  backdrop-filter: blur(20px);
}

.brand {
  gap: 10px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter:
    drop-shadow(0 9px 20px rgba(22, 116, 216, 0.13))
    drop-shadow(0 0 1px rgba(255,255,255,0.9));
}

.brand span {
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.desktop-nav a {
  color: rgba(6, 38, 74, 0.64);
}

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

.language-nav {
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(6, 38, 74, 0.08);
  border-radius: 999px;
  padding: 4px;
}

.language-nav button {
  color: rgba(6, 38, 74, 0.58);
}

.language-nav button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0e4d98);
}

.menu-toggle {
  color: var(--ink);
  border-color: rgba(6, 38, 74, 0.12);
  background: rgba(255,255,255,0.48);
}

/* ---------------------------------------------------------
   Home hero
   --------------------------------------------------------- */

.home-hero {
  min-height: 100svh;
  padding: 124px max(22px, 6vw) 62px;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 1.04fr);
  gap: 42px;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 249, 223, 0.75), transparent 18%),
    radial-gradient(circle at 86% 50%, rgba(95, 201, 130, 0.20), transparent 20%),
    radial-gradient(circle at 66% 32%, rgba(155, 223, 255, 0.52), transparent 30%),
    linear-gradient(180deg, #eefbff 0%, #bfeeff 48%, #e9f9ff 72%, #fbf4e6 100%);
}

.home-hero::before {
  left: -10%;
  top: -20%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(255, 246, 210, 0.76), transparent 68%);
  filter: blur(28px);
}

.home-hero::after {
  bottom: -110px;
  height: 250px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.76), transparent 62%);
}

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

.eyebrow {
  color: #0b79be;
}

.hero-title {
  max-width: 680px;
  font-size: clamp(2.7rem, 5.4vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: var(--ink);
  text-shadow: 0 14px 44px rgba(17, 116, 190, 0.10);
}

.hero-lead {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(6, 38, 74, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.82;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  min-height: 50px;
  padding: 0 20px;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0b77d8, #074f9e);
  box-shadow: 0 16px 36px rgba(13, 101, 190, 0.22);
}

.button-ghost {
  color: var(--ink);
  border-color: rgba(6, 38, 74, 0.13);
  background: rgba(255, 255, 255, 0.56);
}

.hero-note {
  margin-top: 34px;
  color: rgba(6, 38, 74, 0.45);
}

/* The visual should feel like a resort emblem, not a dashboard. */
.voyage-scene {
  min-height: 560px;
}

.voyage-logo-wrap {
  width: min(500px, 82vw);
  padding: clamp(16px, 2.6vw, 34px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 34% 18%, rgba(255, 255, 255, 0.88), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,0.66), rgba(255,255,255,0.25));
  border: 1px solid rgba(255,255,255,0.52);
  box-shadow:
    0 30px 70px rgba(4, 55, 105, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.70);
  backdrop-filter: blur(12px);
}

.voyage-logo-wrap::before {
  inset: 22% 10% 16%;
  background:
    radial-gradient(circle, rgba(6, 91, 174, 0.20), transparent 72%);
  filter: blur(24px);
}

.voyage-logo {
  max-width: 455px;
  filter:
    drop-shadow(0 18px 36px rgba(0, 57, 115, 0.16))
    drop-shadow(0 0 7px rgba(255,255,255,0.86));
}

.voyage-ring {
  border-color: rgba(6, 67, 128, 0.12);
}

.voyage-ring-two {
  opacity: 0.42;
}

.voyage-sun {
  background:
    radial-gradient(circle, rgba(255, 246, 203, 0.92), rgba(255, 246, 203, 0) 70%);
}

/* Hide the small floating labels on the first screen to reduce visual noise. */
.voyage-chip,
.service-orb {
  display: none;
}

.ocean-layer {
  border-color: rgba(5, 87, 165, 0.24) transparent transparent transparent;
}

.scroll-indicator {
  color: rgba(6, 38, 74, 0.42);
}

/* ---------------------------------------------------------
   Sections and service cards
   --------------------------------------------------------- */

.section {
  padding: 96px max(22px, 6vw);
}

.section-head {
  gap: 38px;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-body {
  color: var(--muted);
  font-size: 1rem;
}

.worlds-section {
  background:
    linear-gradient(180deg, var(--cream) 0%, #eef9fc 100%);
}

.world-list {
  margin-top: 46px;
  gap: 14px;
}

.world-card {
  padding: 24px;
  grid-template-columns: 58px minmax(160px, 0.72fr) minmax(0, 1.28fr) 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(5, 61, 116, 0.07);
  backdrop-filter: blur(12px);
}

.world-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(5, 61, 116, 0.11);
}

.world-visual {
  height: 132px;
  border-radius: 21px;
}

.world-copy h3 {
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  line-height: 1.15;
}

.world-copy p {
  font-size: 0.98rem;
}

.studio-section {
  color: #f8fbff;
  background:
    radial-gradient(circle at 18% 0%, rgba(155, 223, 255, 0.13), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(95, 201, 130, 0.10), transparent 22%),
    linear-gradient(180deg, #05274f 0%, #063667 100%);
}

.principle {
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(2, 10, 22, 0.12);
}

/* ---------------------------------------------------------
   Service pages
   --------------------------------------------------------- */

.service-hero {
  min-height: 88svh;
  padding: 124px max(22px, 6vw) 78px;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 246, 203, 0.58), transparent 20%),
    radial-gradient(circle at 84% 48%, rgba(95, 201, 130, 0.20), transparent 18%),
    linear-gradient(180deg, #eefbff 0%, #9fe3ff 52%, #fbf4e6 100%);
  color: var(--ink);
}

.service-hero::after {
  background: linear-gradient(180deg, transparent, rgba(248, 242, 228, 0.95));
}

.service-order {
  color: #0b79be;
}

.service-hero-title {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(2.6rem, 5.5vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.058em;
  text-shadow: 0 12px 42px rgba(5, 86, 160, 0.12);
}

.service-hero-lead {
  color: rgba(6, 38, 74, 0.72);
}

.tag {
  color: #07305c;
  background: rgba(255,255,255,0.70);
  border-color: rgba(6, 38, 74, 0.11);
}

.service-art-frame {
  border-radius: 30px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.95), transparent 24%),
    rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow: 0 24px 54px rgba(5, 61, 116, 0.14);
}

.service-art-caption {
  color: rgba(6, 38, 74, 0.56);
}

.feature-card,
.process-step,
.closing-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 38px rgba(5, 61, 116, 0.07);
}

.feature-card:hover,
.process-step:hover,
.closing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(5, 61, 116, 0.11);
}

/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 1100px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .voyage-scene {
    min-height: 460px;
  }

  .voyage-logo-wrap {
    width: min(450px, 82vw);
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
    padding: 0 14px;
  }

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

  .home-hero {
    padding: 104px 18px 48px;
  }

  .hero-title {
    font-size: clamp(2.35rem, 12vw, 3.9rem);
  }

  .hero-lead {
    margin-top: 20px;
  }

  .voyage-scene {
    min-height: 360px;
  }

  .voyage-logo-wrap {
    width: min(340px, 84vw);
    padding: 20px;
    border-radius: 30px;
  }

  .voyage-ring-one {
    width: min(360px, 90vw);
  }

  .voyage-ring-two {
    width: min(430px, 100vw);
  }

  .section {
    padding: 76px 18px;
  }

  .section-head {
    gap: 20px;
  }

  .world-card {
    padding: 20px;
  }

  .world-visual {
    height: 118px;
  }
}

