:root {
  --ocean-deep: #0F172A;
  --ocean-card: #1E293B;
  --ocean-line: #22D3EE;
  --aqua-main: #06B6D4;
  --aqua-deep: #0891B2;
  --sky-text: #38BDF8;
  --sky-soft: #7DD3FC;
  --coral-pop: #F97316;
  --aqua-pale: #A5F3FC;
  --paper-light: #E0F2FE;
  --ink-strong: #020617;
  --shadow-aqua: 0 10px 28px rgba(6, 182, 212, 0.45);
  --shadow-soft: 0 14px 40px rgba(2, 6, 23, 0.55);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Outfit', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--aqua-main) var(--ocean-deep);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--ocean-deep);
  color: var(--sky-text);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

strong, p {
  color: inherit;
}

a {
  color: var(--aqua-main);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--aqua-pale);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  background: var(--ocean-deep);
  color: var(--sky-text);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--ocean-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--aqua-main);
  border-radius: 4px;
}

.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.display {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  color: var(--paper-light);
}

.text-paper {
  color: var(--paper-light);
}

.text-aqua {
  color: var(--aqua-main);
}

.text-coral {
  color: var(--coral-pop);
}

.text-sky {
  color: var(--sky-text);
}

.text-soft {
  color: var(--sky-soft);
}

.bg-ocean {
  background-color: var(--ocean-deep);
  color: var(--sky-text);
}

.bg-card {
  background-color: var(--ocean-card);
  color: var(--sky-text);
}

.bg-aqua {
  background-color: var(--aqua-main);
  color: var(--paper-light);
}

.section-pad {
  padding: 120px 24px;
  position: relative;
}

.container-edit {
  max-width: 1280px;
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--aqua-main);
  margin-bottom: 24px;
  display: inline-block;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--aqua-main);
  vertical-align: middle;
  margin-right: 14px;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(34, 211, 238, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(34, 211, 238, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--ocean-card);
  border-bottom: 1px solid var(--ocean-line);
  color: var(--sky-text);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  border-bottom: 1px solid rgba(34, 211, 238, 0.18);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sky-soft);
}

.header-top .brand-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.header-top .domain {
  color: var(--aqua-pale);
  letter-spacing: 0.18em;
}

.header-top .quick {
  color: var(--sky-soft);
}

.header-top .quick a {
  color: var(--aqua-main);
}

.header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-glyph {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ocean-line);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.18), rgba(8, 145, 178, 0.32));
  color: var(--aqua-pale);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

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

.brand-text .ja {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--paper-light);
  font-size: 18px;
}

.brand-text .en {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--aqua-main);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sky-text);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--aqua-main);
  color: var(--paper-light);
  border-color: var(--aqua-main);
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--aqua-main);
  color: var(--paper-light);
  border: 1px solid var(--aqua-main);
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: var(--shadow-aqua);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
}

.cta-pill:hover {
  background: var(--aqua-deep);
  transform: translateY(-2px);
  color: var(--paper-light);
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--aqua-pale);
  border: 2px solid var(--aqua-main);
  border-radius: var(--radius-sm);
  padding: 11px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
}

.cta-ghost:hover {
  background: rgba(6, 182, 212, 0.12);
  color: var(--paper-light);
}

.cta-coral {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral-pop);
  color: var(--paper-light);
  border: 1px solid var(--coral-pop);
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
}

.cta-coral:hover {
  background: #EA580C;
  transform: translateY(-2px);
  color: var(--paper-light);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--ocean-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  color: var(--paper-light);
}

.burger span {
  display: block;
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--paper-light);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }

.burger[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--ocean-deep);
  z-index: 80;
  display: flex;
  flex-direction: column;
  padding: 96px 24px 40px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
}

.mobile-drawer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(34, 211, 238, 0.12) 0 2px,
    transparent 2px 40px
  );
  pointer-events: none;
}

.mobile-drawer.is-open {
  transform: translateY(0);
}

.mobile-drawer a {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--paper-light);
  padding: 18px 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.2);
  position: relative;
  z-index: 1;
}

.mobile-drawer .drawer-cta {
  margin-top: 32px;
  align-self: flex-start;
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--ocean-line);
  color: var(--paper-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 24px;
  z-index: 2;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 70% 30%;
  align-items: center;
  overflow: hidden;
  padding: 100px 24px 80px;
  background: var(--ocean-deep);
  color: var(--sky-text);
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.85)), url('../assets/img/hero-deep-ocean.webp');
  background-size: cover;
  background-position: center;
  background-color: var(--ocean-deep);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  padding: 0 24px;
  pointer-events: none;
}

.hero-grid > div {
  border-left: 1px solid rgba(34, 211, 238, 0.15);
  height: 100%;
}

.hero-grid > div:last-child {
  border-right: 1px solid rgba(34, 211, 238, 0.15);
}

.hero-inner {
  max-width: 720px;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--paper-light);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--aqua-pale);
  display: block;
}

.hero .subline {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--sky-soft);
  margin-bottom: 36px;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero .meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid rgba(34, 211, 238, 0.25);
  padding-top: 24px;
}

.hero .meta-grid .cell {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sky-soft);
}

.hero .meta-grid .cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--aqua-pale);
  margin-bottom: 4px;
  font-weight: 700;
}

.hero-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-side .orb {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(165, 243, 252, 0.5), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(249, 115, 22, 0.35), transparent 60%),
    linear-gradient(135deg, var(--aqua-deep), var(--ink-strong));
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.4), inset 0 0 60px rgba(165, 243, 252, 0.2);
  animation: orbRotate 22s linear infinite;
  position: relative;
}

.hero-side .orb::before,
.hero-side .orb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(165, 243, 252, 0.4);
}

.hero-side .orb::before {
  transform: rotateX(75deg);
}

.hero-side .orb::after {
  transform: rotateY(75deg);
  border-color: rgba(249, 115, 22, 0.5);
}

@keyframes orbRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.stacking-cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.stack-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: stretch;
  background: var(--ocean-card);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: -80px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease, z-index 0s;
  z-index: 1;
  color: var(--sky-text);
}

.stack-card:nth-child(2) {
  margin-left: 4%;
  margin-right: -4%;
}

.stack-card:nth-child(3) {
  margin-left: -4%;
  margin-right: 4%;
}

.stack-card:hover {
  transform: scale(1.04) translateY(-8px);
  z-index: 30;
  border-color: var(--aqua-main);
  box-shadow: var(--shadow-soft);
}

.stack-card .media {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 260px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(8, 145, 178, 0.45));
}

.stack-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-card .body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stack-card .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--aqua-main);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.stack-card h3 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--paper-light);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.stack-card p {
  color: var(--sky-soft);
  margin-bottom: 18px;
}

.stack-card .price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--coral-pop);
  margin-bottom: 20px;
  font-weight: 700;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}

.bento-cell {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: var(--ocean-card);
  color: var(--sky-text);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0s, border-color 0.3s ease;
  z-index: 1;
}

.bento-cell:hover {
  transform: scale(1.03) translateY(-6px);
  border-color: var(--aqua-main);
  z-index: 20;
  box-shadow: var(--shadow-soft);
}

.bento-cell .cover {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.bento-cell .cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.9));
}

.bento-cell .content {
  position: relative;
  z-index: 1;
}

.bento-cell .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--aqua-pale);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bento-cell h4 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--paper-light);
  margin-bottom: 6px;
  font-weight: 700;
  line-height: 1.1;
}

.bento-cell p {
  color: var(--sky-soft);
  font-size: 13px;
}

.bento-lg {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-md {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-sq {
  grid-column: span 1;
  grid-row: span 1;
}

.timeline {
  position: relative;
  padding-left: 80px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--aqua-main), rgba(6, 182, 212, 0.05));
}

.tl-step {
  position: relative;
  margin-bottom: 36px;
  background: var(--ocean-card);
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, z-index 0s;
  z-index: 1;
  color: var(--sky-text);
}

.tl-step:hover {
  transform: scale(1.02);
  border-color: var(--aqua-main);
  z-index: 10;
  box-shadow: var(--shadow-soft);
}

.tl-step .node {
  position: absolute;
  left: -64px;
  top: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ocean-deep);
  border: 2px solid var(--aqua-main);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--aqua-pale);
}

.tl-step h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--paper-light);
  margin-bottom: 8px;
  font-weight: 700;
}

.tl-step .ja {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--aqua-main);
  margin-bottom: 6px;
}

.tl-step p {
  color: var(--sky-soft);
}

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

.flex-cell {
  background: var(--ocean-card);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: flex 0.4s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
  flex: 1;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: var(--sky-text);
}

.flex-grid:hover .flex-cell:not(:hover) {
  flex: 0.6;
}

.flex-cell:hover {
  transform: scale(1.04);
  border-color: var(--aqua-main);
  z-index: 15;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(160deg, var(--ocean-card), rgba(8, 145, 178, 0.18));
}

.flex-cell .num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--aqua-main);
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.flex-cell h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--paper-light);
  margin-bottom: 10px;
  font-weight: 700;
}

.flex-cell p {
  color: var(--sky-soft);
  font-size: 14px;
}

.split-sticky {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.split-sticky .left {
  position: sticky;
  top: 110px;
  height: calc(100vh - 110px);
  overflow: hidden;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: var(--ocean-card);
}

.split-sticky .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-sticky .right {
  padding: 80px 60px;
  background: var(--ocean-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  border-left: 1px solid rgba(34, 211, 238, 0.18);
  color: var(--sky-text);
}

.split-sticky .right h2 {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--paper-light);
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.split-sticky .right p {
  color: var(--sky-soft);
  margin-bottom: 18px;
  font-size: 16px;
}

.fact-list {
  list-style: none;
  margin-top: 32px;
  border-top: 1px solid rgba(34, 211, 238, 0.25);
}

.fact-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.18);
}

.fact-list .key {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--aqua-main);
  text-transform: uppercase;
}

.fact-list .val {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--paper-light);
  font-weight: 600;
}

.hover-reveal {
  position: relative;
}

.hover-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.25);
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease, padding 0.3s ease;
  z-index: 1;
  color: var(--sky-text);
}

.hover-row:hover {
  color: var(--aqua-pale);
  padding-left: 16px;
  z-index: 20;
}

.hover-row .name {
  font-family: var(--font-display);
  font-size: 32px;
  color: inherit;
  font-weight: 600;
}

.hover-row .role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--aqua-main);
  letter-spacing: 0.18em;
}

.hover-row .years {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sky-soft);
}

.hover-tip {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translateY(-50%) translateX(20px);
  background: var(--ocean-card);
  border: 1px solid var(--aqua-main);
  border-radius: var(--radius-md);
  padding: 16px;
  width: 280px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 30;
  box-shadow: var(--shadow-soft);
}

.hover-row:hover .hover-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.hover-tip .ph {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--aqua-main);
  margin-bottom: 12px;
}

.hover-tip .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover-tip .nm {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--paper-light);
  font-weight: 700;
}

.hover-tip .rl {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--aqua-main);
  letter-spacing: 0.16em;
  margin: 4px 0 8px;
}

.hover-tip .dt {
  font-size: 13px;
  color: var(--sky-soft);
}

.coverflow {
  position: relative;
  perspective: 1400px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.cf-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(420px, 80%);
  background: var(--ocean-card);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius-md);
  padding: 32px;
  color: var(--sky-text);
  transform: translate(-50%, -50%);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease, border-color 0.4s ease;
  box-shadow: var(--shadow-soft);
}

.cf-card.is-active {
  z-index: 5;
  border-color: var(--aqua-main);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cf-card.is-prev {
  z-index: 3;
  opacity: 0.5;
  transform: translate(-110%, -50%) rotateY(28deg) scale(0.9);
  filter: brightness(0.7);
}

.cf-card.is-next {
  z-index: 3;
  opacity: 0.5;
  transform: translate(10%, -50%) rotateY(-28deg) scale(0.9);
  filter: brightness(0.7);
}

.cf-card.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.cf-card .stars {
  color: var(--aqua-main);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.cf-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--paper-light);
  line-height: 1.45;
  margin-bottom: 24px;
}

.cf-card .who {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cf-card .who .av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--aqua-main);
  flex-shrink: 0;
}

.cf-card .who .av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cf-card .who .meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--paper-light);
}

.cf-card .who .meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--aqua-main);
  letter-spacing: 0.18em;
}

.cf-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.cf-btn {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--ocean-line);
  color: var(--paper-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 18px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.cf-btn:hover {
  background: var(--aqua-main);
  border-color: var(--aqua-main);
}

.accordion {
  border-top: 1px solid rgba(34, 211, 238, 0.25);
}

.acc-item {
  border-bottom: 1px solid rgba(34, 211, 238, 0.25);
}

.acc-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--paper-light);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.acc-trigger .ic {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ocean-line);
  border-radius: var(--radius-sm);
  color: var(--aqua-main);
  font-size: 18px;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.acc-item.is-open .acc-trigger .ic {
  background: var(--aqua-main);
  color: var(--paper-light);
  transform: rotate(45deg);
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.acc-item.is-open .acc-panel {
  max-height: 600px;
}

.acc-panel-inner {
  padding: 0 0 24px;
  color: var(--sky-soft);
  font-size: 15px;
  line-height: 1.8;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--ocean-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.contact-split .form-side {
  padding: 60px 50px;
  color: var(--sky-text);
}

.contact-split .form-side h2 {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--paper-light);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contact-split .form-side .lead {
  color: var(--sky-soft);
  margin-bottom: 32px;
}

.field-line {
  margin-bottom: 24px;
  position: relative;
}

.field-line label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--aqua-main);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.field-line input,
.field-line textarea,
.field-line select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(34, 211, 238, 0.25);
  padding: 12px 4px;
  color: var(--paper-light);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s ease;
}

.field-line input::placeholder,
.field-line textarea::placeholder {
  color: var(--sky-soft);
  opacity: 0.7;
}

.field-line input:focus,
.field-line textarea:focus,
.field-line select:focus {
  border-bottom-color: var(--aqua-main);
}

.field-line textarea {
  min-height: 120px;
  resize: vertical;
}

.field-line .field-error {
  display: block;
  color: var(--coral-pop);
  font-size: 12px;
  margin-top: 6px;
  min-height: 16px;
  font-family: var(--font-mono);
}

.contact-split .info-side {
  padding: 60px 50px;
  background: linear-gradient(160deg, var(--ocean-deep), rgba(8, 145, 178, 0.18));
  color: var(--sky-text);
  border-left: 1px solid rgba(34, 211, 238, 0.2);
}

.contact-split .info-side h3 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--paper-light);
  margin-bottom: 24px;
  font-weight: 700;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.18);
  align-items: flex-start;
}

.info-list .ic {
  color: var(--aqua-main);
  font-size: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}

.info-list .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--aqua-main);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-list .value {
  color: var(--paper-light);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.info-list .value a {
  color: var(--paper-light);
}

.info-list .sub {
  color: var(--sky-soft);
  font-size: 13px;
  margin-top: 4px;
}

.map-mock {
  margin-top: 32px;
  height: 220px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.18), rgba(8, 145, 178, 0.32)),
    repeating-linear-gradient(45deg, rgba(34, 211, 238, 0.1) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(-45deg, rgba(34, 211, 238, 0.1) 0 1px, transparent 1px 24px);
  border: 1px solid var(--ocean-line);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.map-mock::after {
  content: '📍';
  font-size: 32px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.site-footer {
  background: var(--aqua-main);
  color: var(--ocean-deep);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 80px 24px 32px;
  position: relative;
  z-index: 1;
}

.site-footer .foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(2, 6, 23, 0.2);
}

.foot-brand h4 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ocean-deep);
  font-weight: 700;
  margin-bottom: 8px;
}

.foot-brand .desc {
  font-size: 14px;
  color: var(--ocean-deep);
  opacity: 0.85;
  margin-bottom: 16px;
}

.foot-brand .domain {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ocean-deep);
  opacity: 0.7;
}

.foot-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ocean-deep);
  margin-bottom: 18px;
  font-weight: 700;
}

.foot-col ul {
  list-style: none;
}

.foot-col li {
  margin-bottom: 10px;
}

.foot-col a {
  color: var(--ocean-deep);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.foot-col a:hover {
  opacity: 1;
  color: var(--ocean-deep);
  text-decoration: underline;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-bottom .copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ocean-deep);
  opacity: 0.85;
}

.foot-bottom .legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.foot-bottom .legal a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ocean-deep);
  opacity: 0.85;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: min(420px, calc(100% - 48px));
  background: var(--ocean-card);
  border: 1px solid var(--aqua-main);
  border-radius: var(--radius-md);
  padding: 24px;
  z-index: 100;
  box-shadow: var(--shadow-soft);
  color: var(--sky-text);
}

.cookie-banner h6 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--paper-light);
  margin-bottom: 10px;
  font-weight: 700;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--sky-soft);
  margin-bottom: 16px;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.cookie-banner button {
  flex: 1;
  min-width: 120px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--aqua-main);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.cookie-banner .accept {
  background: var(--aqua-main);
  color: var(--paper-light);
}

.cookie-banner .accept:hover {
  background: var(--aqua-deep);
}

.cookie-banner .decline {
  background: transparent;
  color: var(--aqua-pale);
}

.cookie-banner .decline:hover {
  background: rgba(6, 182, 212, 0.12);
}

.cookie-banner .cookie-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner .cookie-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--aqua-main);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--paper-light);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section-head h2 em {
  font-style: italic;
  color: var(--aqua-pale);
}

.section-head p {
  color: var(--sky-soft);
  font-size: 16px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 8px;
}

.price-row .from {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--aqua-main);
  text-transform: uppercase;
}

.price-row .num {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--coral-pop);
  font-weight: 700;
}

.price-row .unit {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sky-soft);
}

.journal-card {
  background: var(--ocean-card);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
  color: var(--sky-text);
}

.journal-card:hover {
  transform: translateY(-6px);
  border-color: var(--aqua-main);
}

.journal-card .cover {
  height: 200px;
  overflow: hidden;
}

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

.journal-card .body {
  padding: 28px;
}

.journal-card .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--aqua-main);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.journal-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--paper-light);
  margin-bottom: 12px;
  font-weight: 700;
}

.journal-card p {
  color: var(--sky-soft);
  font-size: 14px;
  margin-bottom: 16px;
}

.journal-card .read-toggle {
  background: transparent;
  border: none;
  color: var(--aqua-main);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.journal-card .full-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.journal-card.is-open .full-content {
  max-height: 1200px;
}

.thanks-screen {
  min-height: calc(100vh - 200px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 24px;
}

.thanks-screen .tick {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--aqua-main);
  color: var(--paper-light);
  display: grid;
  place-items: center;
  margin: 0 auto 32px;
  font-size: 48px;
  box-shadow: var(--shadow-aqua);
}

.thanks-screen h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--paper-light);
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.thanks-screen p {
  font-size: 17px;
  color: var(--sky-soft);
  max-width: 580px;
  margin: 0 auto 32px;
}

.thanks-screen .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--paper-light);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.legal-page .updated {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--aqua-main);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--paper-light);
  margin: 36px 0 14px;
  font-weight: 700;
}

.legal-page p, .legal-page li {
  color: var(--sky-soft);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 18px;
}

.compact-hero {
  padding: 160px 24px 80px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.95)),
    radial-gradient(circle at 80% 30%, rgba(6, 182, 212, 0.2), transparent 60%);
  text-align: center;
  color: var(--sky-text);
  border-bottom: 1px solid rgba(34, 211, 238, 0.2);
}

.compact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--paper-light);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.compact-hero h1 em {
  font-style: italic;
  color: var(--aqua-pale);
}

.compact-hero .crumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--aqua-main);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.compact-hero .lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--sky-soft);
  font-size: 17px;
}

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

.detail-grid .detail-body h2 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--paper-light);
  margin: 32px 0 14px;
  font-weight: 700;
}

.detail-grid .detail-body p {
  color: var(--sky-soft);
  margin-bottom: 16px;
  font-size: 16px;
}

.detail-grid .detail-body ul {
  list-style: none;
  margin: 20px 0;
}

.detail-grid .detail-body ul li {
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid rgba(34, 211, 238, 0.18);
  position: relative;
  color: var(--sky-soft);
}

.detail-grid .detail-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--aqua-main);
  font-weight: 700;
}

.detail-sidebar {
  position: sticky;
  top: 110px;
  background: var(--ocean-card);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius-md);
  padding: 32px;
  color: var(--sky-text);
}

.detail-sidebar .price-big {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--coral-pop);
  font-weight: 700;
  margin-bottom: 8px;
}

.detail-sidebar .price-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--aqua-main);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.detail-sidebar ul {
  list-style: none;
  margin-bottom: 24px;
}

.detail-sidebar ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.18);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--sky-soft);
}

.detail-sidebar ul li span:last-child {
  color: var(--paper-light);
  font-weight: 600;
}

.detail-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.18), rgba(8, 145, 178, 0.32));
}

.detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.detail-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.success-message {
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid var(--aqua-main);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  display: none;
}

.success-message.is-visible {
  display: block;
}

.success-message h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--paper-light);
  margin-bottom: 12px;
  font-weight: 700;
}

.success-message p {
  color: var(--sky-soft);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 100px 24px 60px;
  }
  .hero-side { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .split-sticky { grid-template-columns: 1fr; }
  .split-sticky .left { position: relative; top: 0; height: 320px; border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .split-sticky .right { border-radius: 0 0 var(--radius-md) var(--radius-md); border-left: none; border-top: 1px solid rgba(34, 211, 238, 0.18); padding: 48px 32px; }
  .flex-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-lg, .bento-md { grid-column: span 2; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-split .info-side { border-left: none; border-top: 1px solid rgba(34, 211, 238, 0.2); }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: relative; top: 0; }
  .site-footer .foot-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.timeline.is-drawn::before { background: linear-gradient(180deg, var(--aqua-main), var(--aqua-main)); }
.hover-row.is-active .hover-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
.cookie-banner[hidden] { display: none; }


  .section-pad { padding: 80px 20px; }
  .header-bottom .site-nav, .header-top,
  .header-bottom .cta-pill { display: none; }
  .burger { display: block; }
  .stack-card { grid-template-columns: 1fr; padding: 24px; margin-bottom: -40px; }
  .stack-card:nth-child(2),
  .stack-card:nth-child(3) { margin-left: 0; margin-right: 0; }
  .flex-grid { grid-template-columns: 1fr; }
  .flex-grid:hover .flex-cell:not(:hover) { flex: 1; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .bento-lg, .bento-md, .bento-sq { grid-column: span 1; grid-row: span 1; }
  .timeline { padding-left: 56px; }
  .timeline::before { left: 24px; }
  .tl-step .node { left: -48px; width: 40px; height: 40px; font-size: 14px; }
  .hover-tip { left: auto; right: 0; width: 240px; transform: translateY(-50%) translateX(20px); }
  .hover-row:hover .hover-tip { transform: translateY(-50%) translateX(0); }
  .contact-split .form-side,
  .contact-split .info-side { padding: 40px 24px; }
  .site-footer { padding: 60px 20px 24px; }
  .site-footer .foot-top { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .detail-pair { grid-template-columns: 1fr; }
  .legal-page { padding: 60px 20px; }
  .legal-page h1 { font-size: 40px; }
  .compact-hero { padding: 100px 20px 60px; }
  .cookie-banner { left: 12px; right: 12px; width: auto; bottom: 12px; }
  .field-line input, .field-line textarea { font-size: 16px; }
  .cf-card { padding: 24px; }
  .cf-card blockquote { font-size: 18px; }
}
