:root {
  --page: #edf4fc;
  --panel: #ffffff;
  --sky: #acd0f5;
  --blue: #397fe9;
  --blue-deep: #174bb1;
  --blue-dark: #153a91;
  --heading: #1443a2;
  --text: #4f5664;
  --muted: #6a7281;
  --line: #e0e6ef;
  --radius: 24px;
  --gutter: clamp(30px, 4vw, 64px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--page);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.7), transparent 30%),
    var(--page);
}

a {
  color: inherit;
}

.shell {
  width: 100%;
  height: 100svh;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vh, 48px) clamp(16px, 2.25vw, 32px);
}

.experience {
  width: min(1536px, 100%);
  height: min(1058px, 100%);
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 28px 55px rgba(38, 58, 90, 0.18);
}

.ocean-panel {
  --stats-height: clamp(110px, 18vh, 185px);
  position: relative;
  isolation: isolate;
  min-height: 0;
  overflow: hidden;
  color: white;
  background: var(--sky);
  animation: sky-cycle 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.celestial-scene {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.sun,
.moon {
  position: absolute;
  top: clamp(40px, 8vh, 80px);
  right: clamp(28px, 7%, 64px);
  width: clamp(58px, 7vw, 88px);
  height: clamp(58px, 7vw, 88px);
}

.sun svg,
.moon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.sun {
  color: #ffe299;
  filter: drop-shadow(0 0 22px rgba(255, 222, 136, 0.52));
  animation: sun-cycle 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.sun circle {
  fill: currentColor;
}

.sun-rays {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
}

.moon {
  opacity: 0;
  filter: drop-shadow(0 0 18px rgba(225, 237, 255, 0.36));
  animation: moon-cycle 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.moon-disc {
  fill: #e7eff9;
}

.moon-crater {
  fill: #c8d5e7;
  opacity: 0.65;
}

.moon-crater--small {
  opacity: 0.48;
}

.stars {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 54%;
  fill: #edf5ff;
  opacity: 0;
  animation: stars-cycle 8s ease-in-out infinite alternate;
}

.ocean-copy {
  position: relative;
  z-index: 4;
  padding: clamp(34px, 6.8vh, 68px) var(--gutter) clamp(150px, 23vh, 230px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: clamp(36px, 4.6vh, 46px);
  margin: 0 0 clamp(22px, 3.8vh, 38px);
  padding: 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(15px, 2.4vh, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.ocean-copy h1 {
  margin: 0;
  color: white;
  font-size: clamp(29px, min(2.5vw, 4vh), 40px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.ocean-subtitle {
  margin: clamp(16px, 2.6vh, 26px) 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, min(1.8vw, 3vh), 30px);
  line-height: 1.35;
}

.tide {
  position: absolute;
  z-index: 1;
  inset: 0 0 var(--stats-height);
  overflow: visible;
  animation: tide-rise 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.tide-layer {
  position: absolute;
  left: -50%;
  bottom: calc(43% - 64px);
  width: 200%;
  height: 130px;
  display: block;
}

.tide-layer--back {
  z-index: 1;
  fill: rgba(48, 105, 207, 0.5);
  animation: wave-drift 11s linear infinite;
}

.tide-layer--front {
  z-index: 2;
  bottom: calc(43% - 84px);
  fill: var(--blue-deep);
  animation: wave-drift-reverse 8s linear infinite;
}

.tide-fill {
  position: absolute;
  z-index: 0;
  inset: 57% 0 -100svh;
  background: linear-gradient(180deg, var(--blue-deep), var(--blue-dark));
}

.underwater-life,
.surface-life {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.underwater-life {
  z-index: 2;
  clip-path: inset(62% 0 0);
  animation:
    underwater-reveal 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate,
    scene-lighting 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.surface-life {
  z-index: 3;
  animation: scene-lighting 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.swimmer {
  position: absolute;
  left: -150px;
  display: block;
  color: rgba(200, 224, 255, 0.48);
  opacity: 0.72;
  filter: drop-shadow(0 5px 8px rgba(8, 37, 102, 0.16));
  animation: swim-right var(--swim-duration, 20s) linear var(--swim-delay, 0s) infinite;
  will-change: left;
}

.swimmer-art {
  display: block;
  width: 100%;
  animation: sea-bob 3.8s ease-in-out infinite alternate;
}

.swimmer--left {
  right: -150px;
  left: auto;
  animation-name: swim-left;
  will-change: right;
}

.swimmer--left .swimmer-art {
  animation-name: sea-bob-left;
}

.swimmer--fish-one {
  bottom: calc(var(--stats-height) + 2%);
  width: 106px;
  --swim-duration: 19s;
  --swim-delay: -4s;
}

.swimmer--fish-two {
  bottom: calc(var(--stats-height) + 1.5%);
  width: 72px;
  opacity: 0.48;
  --swim-duration: 16s;
  --swim-delay: -11s;
}

.swimmer--ray {
  bottom: calc(var(--stats-height) + 5%);
  width: 118px;
  opacity: 0.43;
  --swim-duration: 27s;
  --swim-delay: -17s;
}

.swimmer--whale {
  bottom: calc(var(--stats-height) - 10px);
  width: 190px;
  opacity: 0.34;
  --swim-duration: 36s;
  --swim-delay: -8s;
}

.swimmer--school {
  bottom: calc(var(--stats-height) + 1%);
  width: 126px;
  opacity: 0.38;
  --swim-duration: 23s;
  --swim-delay: -2s;
}

.sea-creature-fill {
  fill: currentColor;
  stroke: rgba(225, 240, 255, 0.38);
  stroke-width: 1.5;
}

.sea-creature-line {
  fill: none;
  stroke: rgba(235, 246, 255, 0.5);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.sea-creature-eye {
  fill: rgba(10, 49, 117, 0.8);
}

.sea-creature-school {
  fill: currentColor;
}

.rock-scene {
  position: absolute;
  display: block;
  bottom: calc(var(--stats-height) + 12%);
  filter: drop-shadow(0 8px 8px rgba(8, 37, 102, 0.2));
}

.rock-scene svg {
  display: block;
  width: 100%;
}

.rock-scene--small {
  left: 13%;
  width: 92px;
  opacity: 0.82;
}

.rock-scene--tern {
  right: 10%;
  width: 164px;
}

.rock {
  stroke: rgba(163, 200, 240, 0.22);
  stroke-width: 1.5;
  stroke-linejoin: round;
}

.rock--shadow {
  fill: #173f7a;
}

.rock--highlight {
  fill: #2f609d;
}

.bird-body,
.bird-head {
  fill: #dce9f6;
  stroke: rgba(22, 62, 109, 0.5);
  stroke-width: 1.2;
}

.bird-wing {
  fill: #91afd0;
  stroke: rgba(25, 66, 112, 0.5);
  stroke-width: 1.2;
}

.bird-leg {
  fill: none;
  stroke: #c77d45;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bird-tail {
  fill: #d3e1ef;
  stroke: rgba(25, 66, 112, 0.5);
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.bird-cap {
  fill: #15334f;
}

.bird-beak {
  fill: #dc8a46;
}

.bird-eye {
  fill: #10283f;
}

.stats {
  position: absolute;
  z-index: 5;
  inset: auto 0 0;
  height: var(--stats-height);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin: 0;
  padding: 0 var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(23, 74, 176, 0.93), rgba(21, 58, 145, 0.98));
  text-align: center;
}

.stats div {
  min-width: 0;
}

.stats dt {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(15px, 1.25vw, 23px);
  font-weight: 500;
}

.content-panel {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: white;
}

.content-main {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: clamp(34px, 6.4vh, 64px) var(--gutter) clamp(28px, 4.8vh, 48px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-mark {
  width: clamp(56px, 8vh, 80px);
  height: clamp(56px, 8vh, 80px);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
}

.brand-mark svg {
  width: clamp(36px, 5.2vh, 52px);
  height: clamp(36px, 5.2vh, 52px);
  fill: none;
  stroke: white;
  stroke-width: 3.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-lockup h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(31px, min(3vw, 4.8vh), 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.lede {
  max-width: 610px;
  margin: clamp(26px, 5.4vh, 54px) 0 0;
  color: var(--text);
  font-size: clamp(19px, min(2vw, 3.1vh), 31px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.feature-list {
  display: grid;
  gap: clamp(18px, 3.6vh, 36px);
  margin: clamp(28px, 5.4vh, 54px) 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.check {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 19px;
  font-weight: 700;
}

.feature-list strong,
.feature-list span:not(.check) {
  display: block;
}

.feature-list strong {
  color: #1550c0;
  font-size: clamp(18px, min(1.8vw, 3.1vh), 31px);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.feature-list li div span {
  margin-top: 7px;
  color: var(--muted);
  font-size: clamp(16px, min(1.5vw, 2.7vh), 27px);
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3.2vh, 32px);
  margin-top: clamp(26px, 5vh, 50px);
}

.button {
  display: inline-flex;
  min-height: clamp(52px, 7.2vh, 72px);
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 16px;
  background: var(--blue);
  color: white;
  font-size: clamp(19px, 2.7vh, 27px);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #2e73df;
  box-shadow: 0 10px 24px rgba(57, 127, 233, 0.26);
}

.text-link {
  color: var(--blue);
  font-size: clamp(19px, 2.7vh, 27px);
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.meta {
  min-height: clamp(74px, 13.7vh, 137px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px var(--gutter);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(16px, min(1.5vw, 2.7vh), 27px);
}

@media (min-width: 761px) {
  body {
    overflow: hidden;
  }
}

@keyframes tide-rise {
  0% { transform: translateY(16%); filter: brightness(1.06) saturate(0.95); }
  48% { transform: translateY(-10%); filter: brightness(0.84) saturate(0.92); }
  100% { transform: translateY(-22%); filter: brightness(0.62) saturate(0.86); }
}

@keyframes sky-cycle {
  0% { background-color: #acd0f5; }
  45% { background-color: #789fd1; }
  72% { background-color: #3b568d; }
  100% { background-color: #182950; }
}

@keyframes sun-cycle {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  42% { opacity: 0.75; transform: translateY(16px) scale(0.94); }
  72%, 100% { opacity: 0; transform: translateY(54px) scale(0.76); }
}

@keyframes moon-cycle {
  0%, 42% { opacity: 0; transform: translateY(48px) scale(0.78); }
  72% { opacity: 0.72; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes stars-cycle {
  0%, 48% { opacity: 0; }
  76% { opacity: 0.45; }
  100% { opacity: 0.85; }
}

@keyframes scene-lighting {
  0% { filter: brightness(1) saturate(1); }
  48% { filter: brightness(0.88) saturate(0.92); }
  100% { filter: brightness(0.68) saturate(0.82); }
}

@keyframes wave-drift {
  from { transform: translateX(0); }
  to { transform: translateX(25%); }
}

@keyframes wave-drift-reverse {
  from { transform: translateX(25%); }
  to { transform: translateX(0); }
}

@keyframes underwater-reveal {
  0% { clip-path: inset(62% 0 0); }
  48% { clip-path: inset(48% 0 0); }
  100% { clip-path: inset(39% 0 0); }
}

@keyframes swim-right {
  from { left: -150px; }
  to { left: calc(100% + 150px); }
}

@keyframes swim-left {
  from { right: -150px; }
  to { right: calc(100% + 150px); }
}

@keyframes sea-bob {
  from { transform: translateY(-4px) rotate(-1deg); }
  to { transform: translateY(5px) rotate(1deg); }
}

@keyframes sea-bob-left {
  from { transform: translateY(-4px) rotate(-1deg) scaleX(-1); }
  to { transform: translateY(5px) rotate(1deg) scaleX(-1); }
}

@media (max-width: 1100px) {
  :root { --gutter: 38px; }

  .shell { padding: 24px; }
  .experience { height: 100%; min-height: 0; }
  .ocean-copy { padding-top: 48px; }
  .content-main { padding-top: 48px; }
  .brand-mark { width: 64px; height: 64px; }
  .brand-mark svg { width: 42px; height: 42px; }
  .feature-list { gap: 28px; margin-top: 40px; }
  .feature-list li { gap: 16px; }
  .lede { margin-top: 40px; }
  .actions { margin-top: 38px; }
  .button { min-height: 60px; font-size: 22px; }
  .text-link { font-size: 22px; }
}

@media (min-width: 761px) and (max-height: 950px) {
  :root { --gutter: clamp(28px, 3.4vw, 48px); }

  .shell { padding: 18px 24px; }
  .ocean-copy { padding-top: 36px; }
  .eyebrow { min-height: 36px; margin-bottom: 22px; padding: 6px 18px; font-size: 15px; }
  .ocean-copy h1 { font-size: clamp(29px, 3.8vh, 36px); }
  .ocean-subtitle { margin-top: 16px; font-size: clamp(18px, 2.7vh, 24px); }

  .content-main { padding: 36px var(--gutter) 28px; }
  .brand-lockup { gap: 18px; }
  .brand-mark { width: 60px; height: 60px; }
  .brand-mark svg { width: 40px; height: 40px; }
  .brand-lockup h2 { font-size: clamp(32px, 4.5vh, 41px); }
  .lede { margin-top: 26px; font-size: clamp(19px, 2.45vh, 22px); line-height: 1.42; }
  .feature-list { gap: 18px; margin-top: 26px; }
  .feature-list li { grid-template-columns: 30px minmax(0, 1fr); gap: 16px; }
  .check { width: 28px; height: 28px; font-size: 16px; }
  .feature-list strong { font-size: clamp(18px, 2.45vh, 22px); }
  .feature-list li div span { margin-top: 4px; font-size: clamp(15px, 2vh, 18px); line-height: 1.35; }
  .actions { gap: 24px; margin-top: 26px; }
  .button { min-height: 52px; padding: 12px 24px; border-radius: 13px; font-size: 20px; }
  .text-link { font-size: 20px; }
  .meta { min-height: 76px; padding: 16px var(--gutter); font-size: 17px; }
}

@media (min-width: 761px) and (max-height: 700px) {
  .shell { padding: 10px 16px; }
  .ocean-copy { padding-top: 24px; }
  .content-main { padding: 22px var(--gutter) 20px; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-mark svg { width: 32px; height: 32px; }
  .brand-lockup h2 { font-size: 30px; }
  .lede { margin-top: 16px; font-size: 17px; line-height: 1.35; }
  .feature-list { gap: 12px; margin-top: 16px; }
  .feature-list strong { font-size: 17px; }
  .feature-list li div span { font-size: 14px; }
  .actions { margin-top: 16px; }
  .button { min-height: 44px; font-size: 17px; }
  .text-link { font-size: 17px; }
  .meta { min-height: 58px; padding-block: 12px; font-size: 14px; }
}

@media (max-width: 760px) {
  :root { --radius: 20px; --gutter: 26px; }

  .shell { display: block; height: auto; min-height: 100svh; padding: 16px; }
  .experience { display: block; height: auto; min-height: 0; }
  .ocean-panel { --stats-height: clamp(104px, 16vh, 142px); min-height: clamp(500px, 68svh, 620px); }
  .ocean-copy { padding: 36px var(--gutter) 180px; }
  .sun, .moon { top: 32px; right: 24px; width: 58px; height: 58px; }
  .eyebrow { min-height: 38px; margin-bottom: 28px; padding: 7px 17px; font-size: 16px; }
  .ocean-subtitle { margin-top: 18px; }
  .tide { bottom: var(--stats-height); }
  .swimmer--fish-one { width: 86px; }
  .swimmer--ray { width: 94px; }
  .swimmer--whale { width: 148px; }
  .swimmer--school { width: 104px; }
  .rock-scene--small { left: 8%; width: 72px; }
  .rock-scene--tern { right: 5%; width: 132px; }
  .stats { height: 142px; padding: 0 18px; }
  .stats dt { font-size: 23px; }
  .stats dd { font-size: 12px; }
  .content-main { overflow: visible; padding: 42px var(--gutter); }
  .brand-lockup { gap: 16px; }
  .brand-mark { width: 54px; height: 54px; }
  .brand-mark svg { width: 36px; height: 36px; }
  .lede { margin-top: 34px; font-size: 20px; }
  .feature-list { margin-top: 38px; gap: 28px; }
  .feature-list li { grid-template-columns: 28px minmax(0, 1fr); gap: 14px; }
  .check { width: 26px; height: 26px; font-size: 15px; }
  .feature-list strong { font-size: 20px; }
  .feature-list li div span { font-size: 17px; }
  .actions { flex-wrap: wrap; gap: 24px; margin-top: 38px; }
  .button, .text-link { font-size: 19px; }
  .meta { min-height: 92px; font-size: 15px; }
}

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

  .swimmer {
    left: var(--resting-left, 32%);
    animation: none !important;
  }

  .underwater-life {
    clip-path: inset(62% 0 0);
    animation: none !important;
  }

  .ocean-panel,
  .surface-life,
  .sun,
  .moon,
  .stars {
    animation: none !important;
  }

  .sun { opacity: 1; transform: none; }
  .moon, .stars { opacity: 0; }

  .swimmer--left {
    right: auto;
  }

  .swimmer--fish-two { --resting-left: 67%; }
  .swimmer--ray { --resting-left: 55%; }
  .swimmer--school { --resting-left: 12%; }

  .swimmer-art {
    animation: none !important;
  }
}
