/* ============================================================
   BlueSwan - premium studio styles (Hebrew / RTL)
   ============================================================ */

:root {
  --navy-950: #04101f;
  --navy-900: #061528;
  --navy-800: #0a1f3d;
  --navy-700: #0f2552;
  --navy-600: #143573;
  --blue-500: #5aa9ff;
  --blue-400: #80c0ff;
  --blue-300: #bfe3ff;
  --blue-200: #dff0ff;
  --ice:      #eaf6ff;
  --white:    #ffffff;
  --silver:   #c9d4e2;
  --gold:     #f0b86e;
  --sand:     #e9c994;
  --sand-dark:#b89668;

  --bg: #f4f7fb;
  --ink: #06122b;

  --container: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 22px;

  --font-display: 'Frank Ruhl Libre', 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-latin: 'Fraunces', serif;

  --ease: cubic-bezier(.7,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--blue-300); color: var(--navy-900); }

/* ============================================================
   Custom cursor
   ============================================================ */
.cursor { position: fixed; pointer-events: none; z-index: 9999; top:0; left:0; mix-blend-mode: difference; }
.cursor__dot, .cursor__ring { position: fixed; top:0; left:0; transform: translate(-50%,-50%); border-radius: 50%; pointer-events: none; }
.cursor__dot { width: 6px; height: 6px; background: #fff; transition: opacity .2s; }
.cursor__ring { width: 38px; height: 38px; border: 1px solid #fff; transition: width .25s var(--ease), height .25s var(--ease), opacity .2s; opacity: .6; }
.cursor.is-hover .cursor__ring { width: 70px; height: 70px; opacity: .9; }
@media (hover: none) { .cursor { display: none; } }

/* ============================================================
   Loader
   ============================================================ */
.loader {
  position: fixed; inset: 0; background: var(--navy-950); color: var(--ice);
  display: grid; place-items: center; z-index: 10000;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner {
  font-family: var(--font-latin); font-size: clamp(48px, 8vw, 110px); letter-spacing: -.04em;
  display: flex; gap: .05em;
  direction: ltr;
}
.loader__word--accent { color: var(--blue-300); font-style: italic; }
.loader__bar {
  position: absolute; bottom: 12%; left: 50%; transform: translateX(-50%);
  width: min(360px, 60vw); height: 1px; background: rgba(255,255,255,.15); overflow: hidden;
}
.loader__bar span { display: block; height: 100%; width: 0%; background: var(--blue-300); transition: width .2s linear; }

/* ============================================================
   Grain
   ============================================================ */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: .045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1'/></svg>");
  mix-blend-mode: overlay;
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(6, 21, 40, .55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 14px var(--pad);
  border-bottom: 1px solid rgba(191,227,255,.08);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-latin); font-weight: 500; font-size: 24px; letter-spacing: -.02em;
  color: var(--ink);
}
.nav.is-scrolled .nav__brand,
.nav.is-scrolled .nav__links a,
.nav.is-scrolled .nav__cta { color: var(--ice); }
.nav__mark { width: 34px; height: 34px; }
.nav__mark--img {
  width: auto; height: 56px; max-height: 56px;
  object-fit: contain; display: block;
  filter: drop-shadow(0 4px 14px rgba(10,34,68,.18));
  transition: transform .35s ease, filter .35s ease;
}
.nav__brand:hover .nav__mark--img { transform: scale(1.04); }
.nav.is-scrolled .nav__mark--img { filter: drop-shadow(0 4px 14px rgba(0,0,0,.45)) brightness(1.05); }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  position: relative; padding: 6px 0;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { color: var(--ink); }
@media (max-width: 900px) {
  .nav__links { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .4s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--ink); color: var(--ice); }
.btn--primary:hover { background: var(--navy-700); }
.btn--ghost { background: transparent; border-color: rgba(6,18,43,.25); color: var(--ink); }
.btn--ghost:hover { background: rgba(6,18,43,.06); border-color: rgba(6,18,43,.4); }
.nav.is-scrolled .btn--ghost { border-color: rgba(255,255,255,.25); color: var(--ice); }
.nav.is-scrolled .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn--lg { padding: 20px 32px; font-size: 16px; }

/* On dark sections */
.ocean .btn--primary { background: var(--ice); color: var(--navy-900); }
.ocean .btn--primary:hover { background: var(--white); }
.ocean .btn--ghost { color: var(--ice); border-color: rgba(255,255,255,.25); }
.ocean .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

/* ============================================================
   HERO  -  light sky with the swan riding the Great Wave
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--pad) 0;
  display: flex; flex-direction: column; justify-content: flex-start;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 0%, #ffffff 0%, #eaf2fb 45%, #d7e6f7 100%);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55;
}
.hero__orb--a { width: 520px; height: 520px; background: #bfe3ff; top: -120px; right: -120px; }
.hero__orb--b { width: 640px; height: 640px; background: #d5e8ff; bottom: -260px; left: -180px; opacity: .7; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(6,18,43,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(6,18,43,.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero__inner {
  position: relative; z-index: 6;
  max-width: var(--container); margin: 0 auto; width: 100%;
  text-align: center;
  padding-top: clamp(20px, 4vw, 60px);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.6); backdrop-filter: blur(10px);
  border: 1px solid rgba(6,18,43,.08);
  font-size: 13px; font-weight: 500;
  color: var(--navy-800); margin-bottom: 32px;
}
.hero__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-500); box-shadow: 0 0 0 4px rgba(90,169,255,.2); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(46px, 8.6vw, 152px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--ink);
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__title .line > span { display: inline-block; transform: translateY(110%); }
.hero__title em {
  font-style: italic; font-family: var(--font-latin); font-weight: 400;
  color: var(--navy-700);
}

.hero__sub {
  max-width: 640px; margin: 36px auto 0;
  font-size: clamp(16px, 1.35vw, 20px); color: rgba(6,18,43,.7); line-height: 1.65;
}
.hero__cta {
  display: flex; gap: 14px; justify-content: center; margin-top: 44px; flex-wrap: wrap;
}

/* Lily pads behind/around the swan */
.lilies {
  position: absolute; left: 0; right: 0; bottom: 10%;
  width: 100%; height: 200px; z-index: 3; pointer-events: none;
  opacity: 0.85;
}
.lily { transform-box: fill-box; transform-origin: center; }

/* ----- Wave stage: the Great Wave at the bottom of the hero ----- */
.wave-stage {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: clamp(360px, 50vh, 600px);
  z-index: 4;
  pointer-events: none;
  will-change: transform;
}
.wave-back {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: 100%; height: 40%;
  opacity: 0.7;
  animation: waveBack 9s ease-in-out infinite;
}
.great-wave {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: 100%;
  filter: drop-shadow(0 -10px 30px rgba(4,16,31,.35));
  animation: waveFloat 6.5s ease-in-out infinite;
  transform-origin: 50% 100%;
}
.gw-claws path { transform-box: fill-box; transform-origin: bottom center; }

@keyframes waveFloat {
  0%, 100% { transform: translateY(0) }
  50%      { transform: translateY(-12px) }
}
@keyframes waveBack {
  0%, 100% { transform: translateY(0) translateX(0) }
  50%      { transform: translateY(-6px) translateX(-10px) }
}
@keyframes clawFlick {
  0%, 100% { transform: translateY(0) scaleY(1) }
  50%      { transform: translateY(-3px) scaleY(1.04) }
}
@keyframes sprayDrift {
  0%, 100% { transform: translate(0,0); opacity: .9 }
  50%      { transform: translate(2px,-4px); opacity: .6 }
}

/* ----- The swan, perched on top of the wave crest ----- */
.swan-on-wave {
  position: absolute;
  right: 8%;
  bottom: 32%;
  width: clamp(180px, 22vw, 320px);
  z-index: 6;
  pointer-events: none;
  animation: swanBob 5.5s ease-in-out infinite;
  filter: drop-shadow(0 14px 28px rgba(10,34,68,.35));
}
.swan-on-wave svg { width: 100%; height: auto; }
@keyframes swanBob {
  0%, 100% { transform: translateY(0) rotate(-1deg) }
  50%      { transform: translateY(-10px) rotate(1deg) }
}

.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .25em; color: rgba(234,246,255,.8);
  z-index: 8;
}
.hero__scroll-line {
  width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(234,246,255,.6), transparent);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute; top: -50%; left: 0; width: 1px; height: 50%;
  background: var(--ice);
  animation: scrollLine 2.2s cubic-bezier(.6,0,.2,1) infinite;
}
@keyframes scrollLine { 0% { top: -50%; } 100% { top: 100%; } }

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  position: relative; z-index: 5;
  background: var(--ink); color: var(--ice);
  padding: 22px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06);
}
.marquee__track {
  display: flex; gap: 48px; align-items: center;
  font-family: var(--font-display); font-size: clamp(22px, 3.4vw, 44px); letter-spacing: -.02em;
  white-space: nowrap; width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee__track i { color: var(--blue-400); font-style: normal; font-size: .7em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   OCEAN  -  vertical gradient from light blue (top) to deep (bottom)
   ============================================================ */
.ocean {
  position: relative;
  color: var(--ice);
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    #1a4894 0%,
    #143575 18%,
    #0e2858 38%,
    #0a1d44 60%,
    #061331 80%,
    #04101f 100%
  );
}
.ocean::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 20%, rgba(191,227,255,.45) 50%, transparent 51%),
    radial-gradient(1px 1px at 78% 8%,  rgba(191,227,255,.35) 50%, transparent 51%),
    radial-gradient(1px 1px at 42% 60%, rgba(191,227,255,.4)  50%, transparent 51%),
    radial-gradient(1px 1px at 88% 70%, rgba(191,227,255,.3)  50%, transparent 51%),
    radial-gradient(1px 1px at 22% 85%, rgba(191,227,255,.35) 50%, transparent 51%);
  background-size: 800px 800px;
  opacity: .8;
}

/* Animated water: stacked horizontal wave bands that actually flow.
   Each band is a repeating white wave-shape SVG drifting sideways.
   Top bands move fast (aggressive near the great wave),
   bottom bands move slowly (calmer deeper down). */
.water {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  overflow: hidden;
}
.wave-band {
  position: absolute;
  left: -10%; right: -10%;
  width: 120%;
  height: 28px;
  background-repeat: repeat-x;
  background-size: 600px 28px;
  background-position: 0 0;
  will-change: transform, background-position;
  opacity: 0.55;
}
/* Two SVG wave shapes used as backgrounds.
   Shape A = taller, thicker stroke (aggressive look).
   Shape B = flatter, thinner (calm). */
.wave-band--1,
.wave-band--2,
.wave-band--3,
.wave-band--4 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 28' preserveAspectRatio='none'><path d='M0,18 Q75,2 150,18 T300,18 T450,18 T600,18' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-opacity='0.85'/></svg>");
}
.wave-band--5,
.wave-band--6,
.wave-band--7 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 28' preserveAspectRatio='none'><path d='M0,16 Q100,6 200,16 T400,16 T600,16' fill='none' stroke='%23dff0ff' stroke-width='1.8' stroke-linecap='round' stroke-opacity='0.7'/></svg>");
}
.wave-band--8,
.wave-band--9,
.wave-band--10 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 28' preserveAspectRatio='none'><path d='M0,16 Q150,10 300,16 T600,16' fill='none' stroke='%23bfe3ff' stroke-width='1.4' stroke-linecap='round' stroke-opacity='0.55'/></svg>");
}

/* Vertical placement of bands across the whole ocean */
.wave-band--1  { top: 2%;  animation: waveFlowFast  4s linear infinite,        waveBob 2.4s ease-in-out infinite; }
.wave-band--2  { top: 10%; animation: waveFlowFast  5s linear infinite reverse, waveBob 2.6s ease-in-out infinite -.4s; }
.wave-band--3  { top: 18%; animation: waveFlowFast  6s linear infinite,        waveBob 2.8s ease-in-out infinite -.8s; }
.wave-band--4  { top: 28%; animation: waveFlowMed   8s linear infinite reverse, waveBob 3.4s ease-in-out infinite -1.2s; opacity: 0.5; }
.wave-band--5  { top: 38%; animation: waveFlowMed  10s linear infinite,        waveBob 3.8s ease-in-out infinite; opacity: 0.5; }
.wave-band--6  { top: 50%; animation: waveFlowMed  12s linear infinite reverse, waveBob 4.4s ease-in-out infinite -1s; opacity: 0.45; }
.wave-band--7  { top: 60%; animation: waveFlowSlow 16s linear infinite,        waveBob 5s   ease-in-out infinite -2s; opacity: 0.4; }
.wave-band--8  { top: 72%; animation: waveFlowSlow 20s linear infinite reverse, waveBob 6s   ease-in-out infinite -3s; opacity: 0.35; }
.wave-band--9  { top: 84%; animation: waveFlowSlow 24s linear infinite,        waveBob 7s   ease-in-out infinite -4s; opacity: 0.3; }
.wave-band--10 { top: 94%; animation: waveFlowSlow 30s linear infinite reverse, waveBob 8s   ease-in-out infinite -5s; opacity: 0.25; }

@keyframes waveFlowFast { from { background-position: 0 0; }    to { background-position: -600px 0; } }
@keyframes waveFlowMed  { from { background-position: 0 0; }    to { background-position: -600px 0; } }
@keyframes waveFlowSlow { from { background-position: 0 0; }    to { background-position: -600px 0; } }
@keyframes waveBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Soft turbulence haze right under the wave for extra churn */
.water::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 220px;
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(191,227,255,0.35), transparent 75%);
  animation: turbulence 3s ease-in-out infinite;
  opacity: 0.7;
  mix-blend-mode: screen;
}
@keyframes turbulence {
  0%, 100% { transform: translateY(0) scaleX(1); opacity: 0.6; }
  50%      { transform: translateY(-6px) scaleX(1.05); opacity: 1; }
}

/* Drifting bubbles */
.bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubbles span {
  position: absolute; bottom: -40px;
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(191,227,255,.35) 60%, transparent 70%);
  opacity: 0;
  animation: bubbleRise 14s linear infinite;
}
.bubbles span:nth-child(1)  { left: 6%;  width: 8px;  height: 8px;  animation-delay: 0s;    animation-duration: 18s; }
.bubbles span:nth-child(2)  { left: 14%; width: 14px; height: 14px; animation-delay: -3s;   animation-duration: 22s; }
.bubbles span:nth-child(3)  { left: 22%; width: 6px;  height: 6px;  animation-delay: -7s;   animation-duration: 16s; }
.bubbles span:nth-child(4)  { left: 30%; width: 10px; height: 10px; animation-delay: -2s;   animation-duration: 20s; }
.bubbles span:nth-child(5)  { left: 40%; width: 12px; height: 12px; animation-delay: -9s;   animation-duration: 24s; }
.bubbles span:nth-child(6)  { left: 48%; width: 8px;  height: 8px;  animation-delay: -4s;   animation-duration: 19s; }
.bubbles span:nth-child(7)  { left: 56%; width: 14px; height: 14px; animation-delay: -11s;  animation-duration: 26s; }
.bubbles span:nth-child(8)  { left: 64%; width: 6px;  height: 6px;  animation-delay: -1s;   animation-duration: 17s; }
.bubbles span:nth-child(9)  { left: 72%; width: 10px; height: 10px; animation-delay: -8s;   animation-duration: 21s; }
.bubbles span:nth-child(10) { left: 80%; width: 12px; height: 12px; animation-delay: -5s;   animation-duration: 23s; }
.bubbles span:nth-child(11) { left: 88%; width: 7px;  height: 7px;  animation-delay: -13s;  animation-duration: 18s; }
.bubbles span:nth-child(12) { left: 94%; width: 9px;  height: 9px;  animation-delay: -6s;   animation-duration: 20s; }
.bubbles span:nth-child(13) { left: 18%; width: 5px;  height: 5px;  animation-delay: -10s;  animation-duration: 15s; }
.bubbles span:nth-child(14) { left: 52%; width: 6px;  height: 6px;  animation-delay: -14s;  animation-duration: 16s; }
.bubbles span:nth-child(15) { left: 76%; width: 8px;  height: 8px;  animation-delay: -12s;  animation-duration: 19s; }
@keyframes bubbleRise {
  0%   { transform: translateY(0)    translateX(0);   opacity: 0; }
  10%  { opacity: 0.7; }
  50%  { transform: translateY(-50vh) translateX(20px); opacity: 0.5; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-110vh) translateX(-20px); opacity: 0; }
}

/* Few detailed sea objects along the SIDES only */
.seaobjects { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.so {
  position: absolute;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.45));
  will-change: transform;
  opacity: 0.9;
}
.so--1 { width: 95px; height: 52px;  top: 8%;  left: 3%;  animation: fishSwim 6s ease-in-out infinite; }
.so--2 { width: 70px; height: 96px;  top: 18%; right: 4%; animation: jellyDrift 9s ease-in-out infinite; }
.so--3 {
  width: 108px;
  height: 70px;
  top: 27%;
  left: 4%;
  z-index: 2;
  opacity: 1;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.55)) brightness(1.08);
  animation: fishSwim 7s ease-in-out infinite -2s;
}
.so--4 { width: 95px; height: 78px;  top: 42%; right: 3%; animation: fishSwimR 8s ease-in-out infinite; }
.so--5 { width: 64px; height: 80px;  top: 54%; left: 4%;  animation: drift2 14s ease-in-out infinite -1s; }
.so--6 { width: 70px; height: 96px;  top: 64%; right: 5%; animation: jellyDrift 10s ease-in-out infinite -3s; }
.so--7 { width: 80px; height: 48px;  top: 76%; left: 3%;  animation: fishSwim 5.5s ease-in-out infinite -1.5s; }
.so--8 { width: 76px; height: 68px;  top: 84%; right: 4%; animation: drift1 11s ease-in-out infinite; }
.so--9 { width: 64px; height: 80px;  top: 90%; left: 3%;  animation: drift2 13s ease-in-out infinite -2s; }
.so--10{ width: 64px; height: 64px;  top: 94%; right: 6%; animation: drift3 10s ease-in-out infinite -3s; }

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) rotate(-4deg); }
  50%      { transform: translate(6px, -10px) rotate(4deg); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) rotate(3deg); }
  50%      { transform: translate(-8px, -12px) rotate(-5deg); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  50%      { transform: translate(5px, -14px) rotate(5deg); }
}
@keyframes fishSwim {
  0%, 100% { transform: translate(0, 0) scaleX(1) rotate(-2deg); }
  25%      { transform: translate(14px, -6px) scaleX(1) rotate(2deg); }
  50%      { transform: translate(22px, 0) scaleX(1) rotate(-2deg); }
  75%      { transform: translate(10px, 6px) scaleX(1) rotate(2deg); }
}
@keyframes fishSwimR {
  0%, 100% { transform: translate(0, 0) scaleX(-1) rotate(-2deg); }
  25%      { transform: translate(-14px, -6px) scaleX(-1) rotate(2deg); }
  50%      { transform: translate(-22px, 0) scaleX(-1) rotate(-2deg); }
  75%      { transform: translate(-10px, 6px) scaleX(-1) rotate(2deg); }
}
@keyframes jellyDrift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-6px, -18px); }
}
@keyframes horseBob {
  0%, 100% { transform: translate(0, 0) rotate(-4deg); }
  50%      { transform: translate(2px, -10px) rotate(2deg); }
}
@keyframes octoFloat {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  50%      { transform: translate(-8px, -14px) rotate(3deg); }
}

/* ============================================================
   Section primitives
   ============================================================ */
.section {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; padding: clamp(90px, 13vw, 180px) var(--pad);
}
.section__head { margin-bottom: clamp(50px, 7vw, 90px); max-width: 900px; }
.section__sub {
  margin-top: 24px; max-width: 560px;
  color: rgba(234,246,255,.7); font-size: 17px; line-height: 1.6;
}
.kicker {
  display: inline-block; font-size: 12px;
  color: var(--blue-300); margin-bottom: 20px;
  padding: 6px 14px; border: 1px solid rgba(191,227,255,.25); border-radius: 999px;
  font-weight: 500; letter-spacing: .04em;
}
.display {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 6vw, 92px); line-height: 1.05; letter-spacing: -.02em;
  color: var(--ice);
}
.display em {
  font-style: italic; font-family: var(--font-latin); font-weight: 400;
  color: var(--blue-300);
}
.display--xl { font-size: clamp(48px, 8vw, 132px); }

.reveal { opacity: 0; transform: translateY(40px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* ============================================================
   About
   ============================================================ */
.about__grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.about__lede {
  font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.35; color: var(--ice); font-weight: 400;
}
.about__lede strong { color: var(--blue-300); font-weight: 500; }
.about__grid > p:nth-child(2) { color: rgba(234,246,255,.75); font-size: 17px; line-height: 1.75; }
.about__stats {
  grid-column: 1 / -1; list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px;
  border-top: 1px solid rgba(191,227,255,.15); padding-top: 40px;
}
.about__stats li { display: flex; flex-direction: column; gap: 8px; }
.about__stats strong {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 72px); font-weight: 500;
  color: var(--blue-300); line-height: 1;
}
.about__stats span { font-size: 14px; color: rgba(234,246,255,.65); }

@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================================================
   Services
   ============================================================ */
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(191,227,255,.12); border: 1px solid rgba(191,227,255,.12);
  border-radius: var(--radius); overflow: hidden;
}
.card {
  background: rgba(8,22,46,.85);
  padding: clamp(32px, 4vw, 56px) clamp(28px, 3.5vw, 44px);
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: background .5s var(--ease), transform .5s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 100% 0%, rgba(90,169,255,.18), transparent 60%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.card:hover { background: rgba(14, 38, 78, .95); }
.card:hover::before { opacity: 1; }
.card__num {
  position: absolute; top: 28px; left: 32px;
  font-family: var(--font-latin); font-size: 14px; color: var(--blue-300); opacity: .7;
}
.card h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2vw, 28px); line-height: 1.2; color: var(--ice);
  margin-bottom: 12px;
}
.card p { color: rgba(234,246,255,.7); font-size: 15.5px; line-height: 1.7; }

@media (max-width: 980px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Why
   ============================================================ */
.why__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px 60px;
}
.why__item { border-top: 1px solid rgba(191,227,255,.2); padding-top: 28px; }
.why__item h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 24px;
  color: var(--ice); margin-bottom: 12px; line-height: 1.25;
}
.why__item p { color: rgba(234,246,255,.7); font-size: 15.5px; line-height: 1.7; }

@media (max-width: 900px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Founding card
   ============================================================ */
.founding__card {
  background: linear-gradient(160deg, rgba(191,227,255,.12), rgba(20,53,115,.4) 60%, rgba(8,22,46,.6));
  border: 1px solid rgba(191,227,255,.22);
  border-radius: clamp(24px, 3vw, 36px);
  padding: clamp(50px, 7vw, 96px);
  position: relative; overflow: hidden;
  backdrop-filter: blur(20px);
}
.founding__card::before {
  content: ''; position: absolute; top: -200px; left: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(191,227,255,.3), transparent 70%);
}
.founding__card .display { margin: 14px 0 30px; }
.founding__lede {
  font-family: var(--font-display); font-size: clamp(20px, 2vw, 28px);
  color: var(--ice); line-height: 1.55; max-width: 740px; font-weight: 400; margin-bottom: 40px;
}
.founding__list {
  list-style: none; display: grid; gap: 14px; margin-bottom: 48px;
  max-width: 720px;
}
.founding__list li {
  display: flex; gap: 14px; align-items: baseline;
  color: rgba(234,246,255,.88); font-size: 16.5px; line-height: 1.6;
}
.founding__list span { color: var(--blue-300); }

/* ============================================================
   Process
   ============================================================ */
.process__list {
  list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border-top: 1px solid rgba(191,227,255,.2);
}
.process__step {
  padding: 40px 24px 0 24px;
  border-left: 1px solid rgba(191,227,255,.12);
  position: relative;
}
.process__step:last-child { border-left: none; }
.process__num {
  font-family: var(--font-latin); font-size: 14px; color: var(--blue-300);
  display: block; margin-bottom: 50px;
}
.process__step h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 2.4vw, 34px); color: var(--ice); margin-bottom: 14px;
  line-height: 1.2;
}
.process__step p { color: rgba(234,246,255,.7); font-size: 15px; line-height: 1.65; }

@media (max-width: 1100px) {
  .process__list { grid-template-columns: repeat(3, 1fr); }
  .process__step:nth-child(3n) { border-left: none; }
  .process__step { border-bottom: 1px solid rgba(191,227,255,.12); padding-bottom: 30px; }
}
@media (max-width: 700px) {
  .process__list { grid-template-columns: 1fr; }
  .process__step { border-left: none; }
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 60px;
}
.price {
  background: rgba(8,22,46,.7);
  border: 1px solid rgba(191,227,255,.15);
  border-radius: clamp(20px, 2vw, 28px);
  padding: clamp(36px, 3.5vw, 52px);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .5s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.price:hover { transform: translateY(-6px); border-color: rgba(191,227,255,.35); }
.price--featured {
  background: linear-gradient(160deg, rgba(90,169,255,.15), rgba(20,53,115,.5));
  border-color: rgba(191,227,255,.45);
}
.price__badge {
  position: absolute; top: -14px; right: 28px;
  background: var(--ice); color: var(--navy-900);
  font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 999px;
  letter-spacing: .03em;
}
.price__head .kicker {
  background: transparent; padding: 0; border: none; margin-bottom: 8px;
}
.price__head h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 2vw, 32px); color: var(--ice); margin-bottom: 28px;
}
.price__num {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 32px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(191,227,255,.15);
}
.price__from {
  font-size: 13px; color: rgba(234,246,255,.55);
}
.price__num strong {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(44px, 5vw, 72px); color: var(--ice); line-height: 1; letter-spacing: -.02em;
}
.price__unit { font-size: 22px; color: var(--blue-300); font-weight: 500; }
.price__list { list-style: none; margin-bottom: 36px; flex: 1; }
.price__list li {
  padding: 10px 0; color: rgba(234,246,255,.85); font-size: 15px; line-height: 1.55;
  border-bottom: 1px solid rgba(191,227,255,.08);
}
.price__list li:last-child { border-bottom: none; }
.price .btn { align-self: flex-start; }

.pricing__addons {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(191,227,255,.15);
  border: 1px solid rgba(191,227,255,.15);
  border-radius: 16px; overflow: hidden;
}
.addon {
  background: rgba(8,22,46,.75);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.addon strong {
  font-family: var(--font-display); font-weight: 500; color: var(--ice); font-size: 17px;
}
.addon span { font-size: 14px; color: rgba(234,246,255,.6); }

@media (max-width: 1000px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__addons { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing__addons { grid-template-columns: 1fr; }
}

/* ============================================================
   Contact
   ============================================================ */
.contact { padding-top: clamp(120px, 16vw, 220px); padding-bottom: clamp(60px, 8vw, 120px); }
.contact__inner { text-align: center; max-width: 1100px; margin: 0 auto; }
.contact__sub {
  margin: 30px auto 50px; max-width: 560px;
  color: rgba(234,246,255,.7); font-size: 17px; line-height: 1.6;
}
.contact__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SEABED  -  ocean floor with sand, kelp, shipwreck, crabs
   ============================================================ */
.seabed {
  position: relative;
  width: 100%;
  min-height: 620px;
  margin-top: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(4, 16, 31, 0.4) 25%,
    rgba(4, 16, 31, 0.85) 60%,
    #04101f 100%
  );
  overflow: hidden;
}
.sandfloor {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 120px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, #d4ae7a 0%, #a37e4a 70%, #7a5a30 100%);
}
.sandfloor::before {
  content: ''; position: absolute; left: 0; right: 0; top: -1px;
  height: 40px;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(212,174,122,0.7), transparent 70%);
}
.kelp {
  position: absolute; bottom: 60px;
  width: 180px; height: 380px;
  opacity: 0.85;
  transform-origin: 50% 100%;
}
.kelp--l { left: 6%; animation: kelpSway 6s ease-in-out infinite; }
.kelp--r { right: 6%; animation: kelpSway 7s ease-in-out infinite reverse; }
@keyframes kelpSway {
  0%, 100% { transform: rotate(-3deg) }
  50%      { transform: rotate(3deg) }
}

.shipwreck {
  position: absolute;
  left: 50%; bottom: 40px;
  transform: translateX(-50%);
  width: min(720px, 70vw);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
  opacity: 0.95;
}

.crabs {
  position: absolute;
  left: 50%; bottom: 100px;
  transform: translateX(-50%);
  display: flex; gap: 24px; align-items: flex-end;
  z-index: 3;
  direction: ltr;
}
.crab {
  width: clamp(56px, 6vw, 84px);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.5));
  transition: transform 1.6s cubic-bezier(.6,0,.2,1);
  will-change: transform;
}
.crab--c1 { transform: translate(0, 0) rotate(-4deg); }
.crab--c2 { transform: translate(0, 0) rotate(2deg); }
.crab--c3 { transform: translate(0, 0) rotate(-2deg); }
.crab--c4 { transform: translate(0, 0) rotate(4deg); }

/* Scattered state, triggered by JS adding .is-scattered to body */
.is-scattered .crab--c1 { transform: translate(-280px, -30px) rotate(-20deg); }
.is-scattered .crab--c2 { transform: translate(-160px, -10px) rotate(-10deg); }
.is-scattered .crab--c3 { transform: translate(160px, -10px) rotate(10deg); }
.is-scattered .crab--c4 { transform: translate(280px, -30px) rotate(20deg); }

.seabed__shell, .seabed__starfish {
  position: absolute; bottom: 30px; z-index: 2;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.5));
}
.seabed__shell--1 { width: 50px; left: 18%; bottom: 36px; }
.seabed__shell--2 { width: 42px; right: 22%; bottom: 30px; }
.seabed__starfish { width: 56px; right: 38%; bottom: 26px; transform: rotate(-20deg); }

@media (max-width: 700px) {
  .seabed { min-height: 480px; }
  .crabs { gap: 14px; bottom: 80px; }
  .kelp { width: 120px; height: 280px; }
  .is-scattered .crab--c1 { transform: translate(-130px, -20px) rotate(-20deg); }
  .is-scattered .crab--c2 { transform: translate(-70px, -8px) rotate(-10deg); }
  .is-scattered .crab--c3 { transform: translate(70px, -8px) rotate(10deg); }
  .is-scattered .crab--c4 { transform: translate(130px, -20px) rotate(20deg); }
}

/* ============================================================
   RTL / Hebrew refinements
   ============================================================ */
[dir="rtl"] body { line-height: 1.65; }
[dir="rtl"] .hero__eyebrow { font-size: 13px; }
[dir="rtl"] .hero__title { letter-spacing: -.015em; }
[dir="rtl"] .display { letter-spacing: -.01em; line-height: 1.1; }
[dir="rtl"] .nav__links a { font-size: 14.5px; letter-spacing: 0; }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line > span { transform: none; }
}
