@font-face {
  font-family: Adwaita;
  src: url('assets/sans.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Reef Serif';
  src: url('assets/serif.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --ink: #edeee6;
  --muted: #a0b9bb;
  --mint: #b6f3d6;
  --ocean: #071f27;
  --line: #d2ede51c;
  --scroll: 0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--ocean);
  color: var(--ink);
  font:
    16px/1.6 Adwaita,
    sans-serif;
  overflow-x: clip;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 6px;
}
[hidden] {
  display: none !important;
}
img {
  display: block;
  max-width: 100%;
  object-fit: contain;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 480;
  line-height: 1.05;
  letter-spacing: -0.055em;
}
em {
  font-family: 'Reef Serif', Georgia, serif;
  font-weight: 400;
  color: var(--mint);
}
h2 {
  font-size: clamp(40px, 4.7vw, 70px);
}
.section-width {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 11px;
  font-weight: 560;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  color: #b6d3cf;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  padding: 12px 20px;
  background: var(--mint);
  color: var(--ocean);
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}
.header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  gap: 40px;
  z-index: 5;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  font-size: 27px;
  font-weight: 640;
  letter-spacing: -0.055em;
}
.brand img {
  border-radius: 9px;
  margin-right: 10px;
}
.brand-dot {
  color: var(--mint);
}
.footer a:hover {
  color: var(--mint);
}
.hero {
  position: relative;
  min-height: 900px;
  height: min(1000px, 100svh);
  padding: 200px 56px 110px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(ellipse at 85% 35%, #23655e70, transparent 55%),
    linear-gradient(170deg, #123d3f 0%, #0b3037 48%, var(--ocean) 92%);
}
.water-light {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background: conic-gradient(
    from 166deg at 65% -30%,
    transparent 0deg,
    #b6f3d628 9deg,
    transparent 19deg,
    #b6f3d612 24deg,
    transparent 34deg
  );
  mask-image: linear-gradient(#000, transparent 90%);
  transform-origin: top center;
  animation: light-drift 16s ease-in-out infinite alternate;
}
.hero-copy {
  width: min(840px, 70%);
  position: relative;
  z-index: 2;
  padding-bottom: 24px;
  pointer-events: none;
}
.hero-copy a {
  pointer-events: auto;
}
.hero h1 {
  font-size: clamp(64px, 6.3vw, 100px);
  margin: 28px 0;
}
.hero h1 em {
  white-space: nowrap;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 15px #b6f3d680;
  vertical-align: middle;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 55px;
  padding: 14px 25px;
  margin-top: 35px;
  background: var(--mint);
  border-radius: 100px;
  color: #103b38;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px #b6f3d625;
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.ocean-scene {
  position: absolute;
  right: 0;
  top: 130px;
  width: 54%;
  height: 660px;
  transform: translateY(calc(var(--scroll) * 55px));
}
.hero-animal {
  position: absolute;
  top: 15%;
  left: 6%;
  width: 100%;
  transform: translate(var(--pointer-x, 0px), var(--pointer-y, 0px));
  transition: transform 0.8s ease-out;
}
.hero-animal img {
  width: 100%;
  filter: drop-shadow(0 55px 25px #00151d75);
  animation: swim 10s ease-in-out infinite;
}
.orbit {
  position: absolute;
  border: 1px solid #a7d9c41c;
  border-radius: 50%;
  width: 78%;
  aspect-ratio: 1;
  left: 19%;
  top: 0;
  transform: rotateX(30deg) rotate(-20deg);
}
.orbit-two {
  width: 104%;
  top: -15%;
  left: 6%;
  opacity: 0.5;
}
.scene-cross {
  position: absolute;
  font-size: 20px;
  color: #8caeaa85;
}
.cross-one {
  top: 3%;
  left: 34%;
}
.cross-two {
  bottom: 18%;
  right: 15%;
}
.animal-label {
  position: absolute;
  right: 15%;
  top: 65%;
  color: #c5dad5;
  font-size: 13px;
  padding: 12px 0 0 24px;
  border-top: 1px solid #b9dcd44a;
}
.animal-label small {
  display: block;
  margin-left: 16px;
  color: #8aacab;
  font-size: 10px;
}
.discovery-label {
  position: absolute;
  left: 23%;
  top: 83%;
  font-size: 12px;
  color: #a4babc;
  border-left: 1px solid #c7e6dd55;
  padding-left: 16px;
}
.discovery-label strong {
  display: block;
  color: #cfe0d9;
  font-weight: 450;
}
.bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bubbles i {
  position: absolute;
  bottom: 20%;
  left: 30%;
  width: 4px;
  height: 4px;
  border: 1px solid #d4f5e650;
  border-radius: 50%;
  animation: bubble-rise 9s linear infinite;
}
.bubbles i:nth-child(2) {
  left: 66%;
  animation-delay: -5s;
  width: 7px;
  height: 7px;
}
.bubbles i:nth-child(3) {
  left: 85%;
  animation-delay: -3s;
}
.bubbles i:nth-child(4) {
  left: 20%;
  animation-delay: -7s;
}
.bubbles i:nth-child(5) {
  left: 51%;
  animation-delay: -1s;
}
.hero-bottom {
  position: absolute;
  bottom: 62px;
  left: 56px;
  right: 56px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 11px;
  color: #a0b9bb;
}
.hero-bottom a {
  display: flex;
  gap: 30px;
  align-items: center;
  min-height: 44px;
}
.hero-bottom a span {
  font-size: 20px;
}
.intro {
  padding: 120px 0 150px;
  text-align: center;
}
.intro h2 {
  margin: 25px auto;
  max-width: 1000px;
}
.intro-description {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.pill-row span {
  border: 1px solid #9fccc429;
  padding: 6px 15px;
  border-radius: 99px;
  color: #b2cac8;
  font-size: 11px;
}
.product {
  padding: 40px 0 110px;
}
.product-heading {
  margin-bottom: 50px;
}
.product-heading .eyebrow {
  margin-bottom: 20px;
}
.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}
.product-stage {
  position: relative;
  min-height: 680px;
  border: 1px solid #b6dfce24;
  border-radius: 26px;
  background:
    radial-gradient(ellipse at 50% 35%, #377b6866, transparent 75%),
    linear-gradient(145deg, #153e43, #0c2a32);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#b6f3d608 1px, transparent 1px),
    linear-gradient(90deg, #b6f3d608 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  mask-image: radial-gradient(#000, transparent 80%);
}
.stage-orbit {
  width: 520px;
  height: 520px;
  position: absolute;
  border: 1px solid #b5e1ca24;
  border-radius: 50%;
  z-index: -1;
}
.stage-orbit::after {
  content: '';
  position: absolute;
  inset: 45px;
  border: inherit;
  border-radius: inherit;
}
.phone {
  width: 248px;
  padding: 7px;
  border: 1px solid #688786;
  border-radius: 36px;
  background: #0a171d;
  box-shadow: 15px 35px 60px #0007;
  transform: rotate(-5deg);
  transition: transform 0.7s;
  position: relative;
  z-index: 1;
}
.phone img {
  width: 100%;
  aspect-ratio: 860/1760;
  border-radius: 29px;
  object-fit: contain;
  object-position: top;
  background: #f1f5ec;
}
.phone-camera {
  position: absolute;
  top: 12px;
  left: 41%;
  width: 18%;
  height: 9px;
  border-radius: 99px;
  background: #101e24;
}
.product-stage:hover .phone {
  transform: rotate(0deg) translateY(-6px);
}
.stage-animal {
  position: absolute;
  width: 58%;
  right: -10%;
  bottom: 8%;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 12px 20px #001c2680);
  animation: swim 12s ease-in-out infinite reverse;
}
.stage-caption {
  position: absolute;
  top: 26px;
  left: 28px;
  color: #d4e8dd;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.demo-note {
  position: absolute;
  bottom: 21px;
  left: 28px;
  font-size: 10px;
  color: #a9c6bd;
}
.feature-tabs {
  display: flex;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.feature-tabs button {
  position: relative;
  border: none;
  background: none;
  padding: 12px 0 18px;
  color: #8ea7ad;
  font-size: 11px;
  text-align: left;
  flex: 1;
  min-height: 50px;
}
.feature-tabs button span {
  display: block;
  font-size: 13px;
  margin-top: 3px;
}
.feature-tabs button::after {
  content: '';
  position: absolute;
  bottom: -1px;
  height: 2px;
  left: 0;
  right: 0;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.feature-tabs button[aria-selected='true'] {
  color: var(--mint);
}
.feature-tabs button[aria-selected='true']::after {
  transform: scaleX(1);
}
.feature-panel {
  min-height: 360px;
}
.feature-panel .eyebrow {
  font-size: 10px;
}
.feature-panel h3 {
  font-size: clamp(34px, 3.8vw, 56px);
  margin: 22px 0;
}
.feature-panel > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  max-width: 410px;
}
.feature-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  font-size: 12px;
  color: #c3d6d3;
}
.feature-list li {
  margin: 11px 0;
}
.feature-list li::before {
  content: '↗';
  color: #86b9a3;
  margin-right: 14px;
}
.encounters {
  padding: 90px 0 130px;
}
.encounters-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  gap: 30px;
}
.encounters-heading h2 {
  margin-top: 20px;
}
.encounters-heading > p {
  color: var(--muted);
  font-size: 14px;
}
.encounter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.encounter-card {
  border: 1px solid #c5ecdc21;
  border-radius: 18px;
  position: relative;
  background: linear-gradient(155deg, #1d4850, #0d2b34);
  padding: 25px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.5s;
}
.turtle-card {
  background: linear-gradient(155deg, #294e43, #112f31);
  margin-top: 45px;
  margin-bottom: -45px;
}
.fish-card {
  background: linear-gradient(155deg, #3f4a3e, #172f30);
}
.encounter-card:hover {
  border-color: #b6f3d666;
  transform: translateY(-8px);
}
.card-index {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #b3c9c5;
}
.animal-window {
  display: grid;
  place-items: center;
  height: 235px;
  margin-inline: -25px;
}
.animal-window img {
  width: 105%;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.encounter-card:hover .animal-window img {
  transform: scale(1.09) rotate(-5deg);
}
.card-copy {
  border-top: 1px solid #cceadc1c;
  padding-top: 20px;
}
.card-copy p {
  font-size: 11px;
  color: #b1c9c7;
  margin-bottom: 13px;
}
.card-copy h3 {
  font-size: 25px;
  letter-spacing: -0.035em;
}
.card-copy > span {
  font:
    italic 13px 'Reef Serif',
    serif;
  color: #aac4bc;
  display: inline-block;
  margin-top: 9px;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #9cb5b6;
  font-size: 11px;
}
.footer .brand {
  font-size: 21px;
  color: var(--ink);
}
.footer > a:last-child {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.legal-page {
  max-width: 800px;
  min-height: calc(100svh - 120px);
  padding-block: 160px 80px;
  overflow-wrap: anywhere;
}
.legal-page h1 {
  font-size: clamp(38px, 7vw, 64px);
  margin-bottom: 32px;
}
.legal-page h2 {
  font-size: 25px;
  letter-spacing: -0.025em;
  margin: 36px 0 16px;
}
.legal-page p + p {
  margin-top: 16px;
}
.legal-page a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-draft {
  border-left: 2px solid var(--mint);
  padding: 12px 20px;
  background: #b6f3d60a;
  color: var(--muted);
}
.reveal {
  opacity: 1;
  transform: none;
}
.motion-enabled .reveal.is-pending {
  opacity: 0;
  transform: translateY(25px);
}
.motion-enabled .reveal {
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.motion-paused *,
.page-hidden * {
  animation-play-state: paused !important;
}
.motion-paused {
  scroll-behavior: auto;
}
.motion-paused *,
.motion-paused *::before,
.motion-paused *::after {
  transition-duration: 0s !important;
}
.motion-paused .reveal {
  opacity: 1;
  transform: none;
}
.motion-paused .ocean-scene {
  transform: none;
}
.motion-paused .hero-animal {
  transform: none;
}
@keyframes swim {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}
@keyframes bubble-rise {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  15%,
  75% {
    opacity: 0.7;
  }
  100% {
    transform: translate(18px, -350px);
    opacity: 0;
  }
}
@keyframes light-drift {
  to {
    transform: rotate(6deg);
    opacity: 0.6;
  }
}
@media (min-width: 1600px) {
  .hero-copy {
    margin-left: calc((100vw - 1488px) / 2);
  }
  .ocean-scene {
    right: calc((100vw - 1600px) / 2);
    width: 850px;
  }
}
@media (max-width: 1100px) {
  .header {
    padding-inline: 32px;
  }
  .hero {
    padding-inline: 32px;
    min-height: 820px;
  }
  .hero h1 {
    font-size: 7.4vw;
  }
  .hero-copy {
    width: 80%;
  }
  .ocean-scene {
    top: 230px;
    height: 520px;
    width: 58%;
    right: -6%;
    opacity: 0.85;
  }
  .hero-bottom {
    left: 32px;
    right: 32px;
  }
  .section-width {
    width: calc(100% - 64px);
  }
  .product-layout {
    gap: 45px;
  }
  .product-stage {
    min-height: 630px;
  }
  .animal-window {
    height: 190px;
  }
  .encounter-card {
    padding: 20px;
  }
  .card-copy h3 {
    font-size: 22px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 30px;
  }
  .header {
    height: 80px;
    padding-inline: 24px;
    gap: 15px;
  }
  .brand {
    font-size: 24px;
  }
  .hero {
    display: block;
    min-height: 830px;
    height: auto;
    padding: 145px 24px 0;
  }
  .hero-copy {
    width: 100%;
    padding: 0;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.12em;
  }
  .hero h1 {
    font-size: clamp(43px, 8.9vw, 66px);
    margin: 24px 0;
  }
  .hero .button {
    margin-top: 25px;
  }
  .ocean-scene {
    top: 380px;
    height: 400px;
    width: 100%;
    right: 0;
    opacity: 1;
  }
  .hero-animal {
    left: 0;
    width: 103%;
    top: 3%;
  }
  .orbit {
    width: 70%;
    left: 20%;
  }
  .orbit-two {
    width: 94%;
    left: 8%;
  }
  .animal-label {
    top: 64%;
    right: 13%;
    font-size: 11px;
  }
  .discovery-label {
    left: 9%;
    top: 86%;
    font-size: 10px;
  }
  .cross-one {
    left: 10%;
    top: 4%;
  }
  .cross-two {
    bottom: 8%;
    right: 12%;
  }
  .hero-bottom {
    left: 24px;
    right: 24px;
    bottom: 0;
    font-size: 10px;
  }
  .hero-bottom a {
    gap: 12px;
  }
  .section-width {
    width: calc(100% - 48px);
  }
  .intro {
    padding: 110px 0 75px;
  }
  .intro h2 br {
    display: none;
  }
  h2 {
    font-size: 42px;
  }
  .intro-description {
    font-size: 15px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.13em;
  }
  .pill-row {
    gap: 7px;
  }
  .pill-row span {
    font-size: 9px;
    padding: 5px 11px;
  }
  .product {
    padding: 40px 0 50px;
  }
  .product-heading {
    margin-bottom: 32px;
  }
  .product-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .product-stage {
    min-height: 600px;
  }
  .phone {
    width: 230px;
  }
  .stage-animal {
    width: 65%;
    right: -8%;
  }
  .feature-tabs {
    margin-bottom: 30px;
  }
  .feature-tabs button {
    font-size: 11px;
  }
  .feature-tabs button span {
    font-size: 12px;
  }
  .feature-panel {
    min-height: 345px;
  }
  .feature-panel h3 {
    font-size: 42px;
  }
  .encounters {
    padding: 45px 0 50px;
  }
  .encounters-heading {
    display: block;
    margin-bottom: 32px;
  }
  .encounters-heading > p {
    margin-top: 22px;
  }
  .encounter-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .turtle-card {
    margin: 0;
  }
  .encounter-card {
    padding: 24px;
  }
  .animal-window {
    height: 230px;
  }
  .animal-window img {
    max-width: 420px;
    width: 100%;
  }
  .card-copy h3 {
    font-size: 28px;
  }
  .footer {
    flex-wrap: wrap;
    gap: 15px;
    padding: 24px 0;
  }
  .footer > span {
    margin-left: auto;
  }
  .footer-links {
    margin-left: 0;
    width: 100%;
  }
  .stage-caption {
    font-size: 10px;
  }
  .reveal {
    transition-delay: 0s;
  }
}
@media (max-width: 370px) {
  .header {
    padding-inline: 18px;
  }
  .header .brand img {
    width: 28px;
    height: 28px;
  }
  .hero {
    padding-inline: 18px;
    min-height: 775px;
  }
  .hero h1 {
    font-size: 39px;
  }
  .ocean-scene {
    top: 355px;
    height: 345px;
  }
  .section-width {
    width: calc(100% - 36px);
  }
  h2 {
    font-size: 36px;
  }
  .product-stage {
    min-height: 550px;
  }
  .phone {
    width: 213px;
  }
  .feature-panel h3 {
    font-size: 37px;
  }
  .feature-tabs {
    gap: 12px;
  }
  .animal-window {
    height: 200px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-animal,
  .ocean-scene {
    transform: none !important;
  }
  .motion-enabled .reveal.is-pending {
    opacity: 1;
    transform: none;
  }
}
