/* 鲸群 Whalepod — 落地页样式。与应用内 community.css 相互独立，只在 index.php 使用。 */
:root {
  --wp-primary: #05c3dd;
  --wp-primary-dark: #0499ad;
  --wp-sea: #062a3d;
  --wp-sea-soft: #0d3b52;
  --wp-foam: #f4fafb;
  --wp-surface: #fff;
  --wp-ink: #0a1f24;
  --wp-muted: #5a7a82;
  --wp-line: #dceef1;
  --wp-sun: #f6c453;
  --wp-radius: 18px;
  --wp-shadow: 0 18px 50px rgba(5, 80, 92, .12);
  color-scheme: light;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { width: 0; height: 0; display: none; }
body {
  margin: 0; background: var(--wp-foam); color: var(--wp-ink);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.7; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img, svg { display: block; }
h1, h2, h3 { margin: 0; letter-spacing: -.02em; line-height: 1.25; }
p { margin: 0; }
.wp-wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- 顶栏 ---------- */
.wp-top {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255, 255, 255, .86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wp-line);
}
.wp-top-inner { display: flex; align-items: center; gap: 16px; height: 68px; }
.wp-brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.wp-brand img { width: 36px; height: 36px; border-radius: 10px; }
.wp-brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.wp-brand-cn { font-weight: 800; font-size: 17px; }
.wp-brand-en { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--wp-muted); }
.wp-lang {
  display: inline-flex; padding: 3px; gap: 2px; border: 1px solid var(--wp-line);
  background: #fff; border-radius: 999px;
}
.wp-lang button {
  border: 0; background: none; cursor: pointer; color: var(--wp-muted);
  padding: 5px 12px; border-radius: 999px; font-size: 13px; font-weight: 600;
}
.wp-lang button.is-on { background: var(--wp-ink); color: #fff; }
.wp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 700; font-size: 15px; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.wp-btn:active { transform: translateY(1px); }
.wp-btn-primary {
  background: linear-gradient(135deg, var(--wp-primary), var(--wp-primary-dark));
  color: #fff; box-shadow: 0 10px 24px rgba(5, 195, 221, .32);
}
.wp-btn-primary:hover { box-shadow: 0 14px 30px rgba(5, 195, 221, .4); }
.wp-btn-ghost { background: #fff; border-color: var(--wp-line); color: var(--wp-ink); }
.wp-btn-ghost:hover { border-color: var(--wp-primary); color: var(--wp-primary-dark); }
.wp-btn-light { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .3); color: #fff; }
.wp-btn-light:hover { background: rgba(255, 255, 255, .2); }
.wp-btn-sm { height: 38px; padding: 0 16px; font-size: 14px; }
.wp-top .wp-btn-ghost { background: transparent; }

/* ---------- 开场 ---------- */
.wp-hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(160deg, #0d3b52 0%, #062a3d 62%, #04202f 100%);
}
.wp-hero::before, .wp-hero::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.wp-hero::before {
  width: 620px; height: 620px; right: -180px; top: -220px;
  background: radial-gradient(circle, rgba(5, 195, 221, .28), transparent 68%);
}
.wp-hero::after {
  width: 460px; height: 460px; left: -160px; bottom: -220px;
  background: radial-gradient(circle, rgba(127, 224, 238, .16), transparent 70%);
}
.wp-hero-inner {
  position: relative; z-index: 1; display: grid; gap: 48px; align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); padding: 84px 0 76px;
}
.wp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  padding: 6px 14px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px;
  background: rgba(255, 255, 255, .08); font-size: 13px; font-weight: 600; letter-spacing: .01em;
}
.wp-eyebrow span.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--wp-primary); }
.wp-hero h1 { font-size: clamp(34px, 5.2vw, 54px); font-weight: 800; }
.wp-hero h1 em { font-style: normal; color: #7fe0ee; }
.wp-hero-sub {
  margin-top: 20px; max-width: 30em; font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(234, 250, 255, .82);
}
.wp-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.wp-hero-note { margin-top: 14px; font-size: 13px; color: rgba(234, 250, 255, .6); }
.wp-chips {
  display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 36px;
  padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .14);
}
.wp-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(234, 250, 255, .8); }
.wp-chip svg { width: 17px; height: 17px; flex: 0 0 auto; color: #7fe0ee; }

/* 鲸群编队插画 */
.wp-scene { position: relative; width: 100%; max-width: 520px; margin: 0 auto; }
.wp-scene svg { width: 100%; height: auto; overflow: visible; }
.wp-scene-card {
  position: absolute; left: 4%; bottom: -6px; display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 14px; background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18); backdrop-filter: blur(8px);
  font-size: 13px; color: rgba(234, 250, 255, .9);
}
.wp-scene-card svg { width: 18px; height: 18px; color: #7fe0ee; }
.wp-swim { animation: wpSwim 7s ease-in-out infinite; transform-box: view-box; transform-origin: center; }
.wp-swim-2 { animation-duration: 8.4s; animation-delay: -1.6s; }
.wp-swim-3 { animation-duration: 9.6s; animation-delay: -3.2s; }
.wp-swim-4 { animation-duration: 8s; animation-delay: -2.4s; }
.wp-swim-5 { animation-duration: 10.4s; animation-delay: -4s; }
@keyframes wpSwim {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(1.2%, -3.2%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .wp-swim { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 通用区块 ---------- */
.wp-section { padding: 84px 0; }
.wp-section-head { max-width: 42em; margin-bottom: 44px; }
.wp-kicker {
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--wp-primary-dark);
}
.wp-section-head h2 { margin-top: 12px; font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; }
.wp-section-head p { margin-top: 14px; color: var(--wp-muted); font-size: 16.5px; }
.wp-grid-3 { display: grid; gap: 20px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wp-grid-2 { display: grid; gap: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wp-card {
  padding: 28px; background: var(--wp-surface); border: 1px solid var(--wp-line);
  border-radius: var(--wp-radius); box-shadow: 0 10px 30px rgba(5, 80, 92, .06);
}
.wp-card-icon {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 18px;
  border-radius: 14px; background: rgba(5, 195, 221, .12); color: var(--wp-primary-dark);
}
.wp-card-icon svg { width: 23px; height: 23px; }
.wp-card h3 { font-size: 19px; font-weight: 700; }
.wp-card p { margin-top: 10px; color: var(--wp-muted); font-size: 15.5px; }

/* 信任区（深底） */
.wp-trust { background: linear-gradient(180deg, #f4fafb, #eaf5f8); }
.wp-trust .wp-card { background: #fff; }
.wp-trust-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  padding: 5px 12px; border-radius: 999px; background: rgba(5, 195, 221, .1);
  color: var(--wp-primary-dark); font-size: 13px; font-weight: 600;
}

/* 三步 */
.wp-steps { display: grid; gap: 20px; grid-template-columns: repeat(3, minmax(0, 1fr)); counter-reset: wpstep; }
.wp-step { position: relative; padding: 28px; border-radius: var(--wp-radius); background: #fff; border: 1px solid var(--wp-line); }
.wp-step-num {
  display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 16px;
  border-radius: 50%; background: var(--wp-ink); color: #fff; font-weight: 700; font-size: 15px;
}
.wp-step h3 { font-size: 17.5px; font-weight: 700; }
.wp-step p { margin-top: 8px; color: var(--wp-muted); font-size: 15px; }

/* 边界声明 */
.wp-notice {
  display: flex; gap: 18px; padding: 26px 28px; border-radius: var(--wp-radius);
  background: #fff; border: 1px solid var(--wp-line); border-left: 4px solid var(--wp-sun);
}
.wp-notice svg { width: 24px; height: 24px; flex: 0 0 auto; color: #d8a02f; margin-top: 3px; }
.wp-notice h3 { font-size: 17.5px; font-weight: 700; }
.wp-notice p { margin-top: 8px; color: var(--wp-muted); font-size: 15.5px; }

/* 结尾 CTA */
.wp-cta {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(140deg, #0d3b52, #062a3d);
}
.wp-cta::before {
  content: ""; position: absolute; width: 520px; height: 520px; right: -140px; top: -240px;
  border-radius: 50%; background: radial-gradient(circle, rgba(5, 195, 221, .26), transparent 68%);
}
.wp-cta-inner { position: relative; z-index: 1; padding: 76px 0; text-align: center; }
.wp-cta-inner h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; }
.wp-cta-inner p { margin: 16px auto 0; max-width: 34em; color: rgba(234, 250, 255, .78); }
.wp-cta-inner .wp-hero-cta { justify-content: center; }

/* 页脚 */
.wp-foot { background: #04202f; color: rgba(234, 250, 255, .68); font-size: 14px; }
.wp-foot-inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; padding: 34px 0; }
.wp-foot-brand { display: flex; align-items: center; gap: 10px; margin-right: auto; color: #fff; }
.wp-foot-brand img { width: 30px; height: 30px; border-radius: 9px; }
.wp-foot-links { display: flex; flex-wrap: wrap; gap: 20px; }
.wp-foot-links a:hover { color: #7fe0ee; }
.wp-foot-legal {
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 18px 28px;
  padding-bottom: 34px; font-size: 12.5px; color: rgba(234, 250, 255, .45);
}
.wp-foot-legal > span { max-width: 660px; }
.wp-foot-policy { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px 17px; }
.wp-foot-policy a { color: rgba(234, 250, 255, .58); white-space: nowrap; }
.wp-foot-policy a:hover { color: #7fe0ee; }

/* ---------- 响应式 ---------- */
@media (max-width: 960px) {
  .wp-hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 62px 0 58px; }
  .wp-scene { max-width: 380px; }
  .wp-grid-3, .wp-steps { grid-template-columns: 1fr 1fr; }
  .wp-section { padding: 64px 0; }
}
@media (max-width: 720px) {
  .wp-wrap { padding: 0 18px; }
  .wp-top-inner { height: 60px; gap: 10px; }
  .wp-brand-en { display: none; }
  .wp-top .wp-btn-ghost { display: none; }
  .wp-grid-3, .wp-grid-2, .wp-steps { grid-template-columns: 1fr; }
  .wp-hero-cta .wp-btn { flex: 1 1 100%; }
  .wp-scene { max-width: 320px; }
  .wp-scene-card { position: static; margin-top: 16px; }
  .wp-card, .wp-step, .wp-notice { padding: 22px; }
  .wp-foot-inner { padding: 26px 0; }
}

/* ==========================================================================
   Whalepod 2.0 — editorial ocean system
   ========================================================================== */
:root {
  --wp-primary: #12c9df;
  --wp-primary-dark: #0798ad;
  --wp-sea: #031c2b;
  --wp-sea-soft: #08394d;
  --wp-foam: #f3f8f8;
  --wp-surface: #fff;
  --wp-ink: #09232d;
  --wp-muted: #607a82;
  --wp-line: #d9e7e9;
  --wp-radius: 24px;
  --wp-shadow: 0 28px 80px rgba(3, 39, 51, .12);
}
body {
  background:
    radial-gradient(circle at 82% 24%, rgba(18, 201, 223, .08), transparent 23rem),
    var(--wp-foam);
}
.wp-wrap { max-width: 1480px; padding-inline: 32px; }

/* Top bar */
.wp-top {
  background: rgba(247, 251, 251, .82);
  border-bottom-color: rgba(8, 57, 77, .09);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .78);
}
.wp-top-inner { height: 76px; }
.wp-brand { gap: 0; }
.wp-brand img {
  width: 168px; height: 40px; border-radius: 0; object-fit: contain; object-position: left center;
}
.wp-lang { background: rgba(255, 255, 255, .72); }
.wp-btn {
  height: 48px; padding-inline: 24px; border-radius: 14px;
  letter-spacing: -.01em;
}
.wp-btn-sm { height: 40px; padding-inline: 17px; border-radius: 12px; }
.wp-btn-primary {
  background: linear-gradient(135deg, #17d1e5, #079db4);
  box-shadow: 0 12px 30px rgba(7, 174, 198, .26), inset 0 1px rgba(255, 255, 255, .3);
}
.wp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(7, 174, 198, .34); }

/* Cinematic hero */
.wp-hero {
  min-height: 690px;
  background: #031c2b;
  isolation: isolate;
}
.wp-hero::before {
  width: 58vw; height: 58vw; right: -18vw; top: -32vw;
  background: radial-gradient(circle, rgba(22, 210, 232, .16), transparent 65%);
}
.wp-hero::after {
  width: 1px; height: 100%; left: 50%; bottom: auto; top: 0;
  border-radius: 0; opacity: .08;
  background: linear-gradient(transparent, #8cf3fa 26%, #8cf3fa 74%, transparent);
}
.wp-hero-inner {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 36px; padding: 92px 32px 86px; min-height: 690px;
}
.wp-hero-copy { position: relative; z-index: 4; }
.wp-eyebrow {
  margin-bottom: 25px; padding: 7px 13px;
  border-color: rgba(131, 230, 240, .2);
  background: rgba(6, 55, 72, .58);
  color: #a9e6ec; letter-spacing: .06em; text-transform: uppercase;
}
.wp-eyebrow span.dot {
  width: 7px; height: 7px; background: #5ee7f3;
  box-shadow: 0 0 0 5px rgba(94, 231, 243, .1), 0 0 18px rgba(94, 231, 243, .65);
}
.wp-hero h1 {
  max-width: 9.8em; font-size: clamp(46px, 5.2vw, 72px);
  font-weight: 820; line-height: 1.08; letter-spacing: -.055em;
}
.wp-hero h1 span { display: block; }
.wp-hero h1 em {
  display: block; color: transparent;
  background: linear-gradient(92deg, #fff 4%, #80eaf3 74%);
  -webkit-background-clip: text; background-clip: text;
}
.wp-hero-sub {
  max-width: 35em; margin-top: 25px; font-size: 17px; line-height: 1.85;
  color: rgba(222, 243, 246, .72);
}
.wp-hero-cta { margin-top: 35px; }
.wp-hero .wp-btn-light {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px);
}
.wp-hero-note { color: rgba(222, 243, 246, .44); }
.wp-chips {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px; max-width: 560px; margin-top: 38px; padding-top: 25px;
}
.wp-chip { font-size: 12.5px; letter-spacing: .01em; color: rgba(222, 243, 246, .65); }

/* Hero image and floating context */
.wp-scene {
  width: calc(100% + 100px); max-width: none; margin-right: -100px;
  aspect-ratio: 1 / .82;
}
.wp-ocean-art {
  position: absolute; inset: -8% -5% -8% -18%; overflow: hidden;
  border-radius: 48% 0 0 48%;
  mask-image: linear-gradient(90deg, transparent 0, #000 20%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20%, #000 100%);
}
.wp-ocean-art::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #031c2b 0, transparent 30%),
    linear-gradient(0deg, #031c2b 0, transparent 24%),
    radial-gradient(circle at 70% 34%, transparent 0, rgba(3, 28, 43, .08) 35%, rgba(3, 28, 43, .55) 100%);
}
.wp-ocean-art img {
  width: 100%; height: 100%; object-fit: cover; object-position: 57% center;
  filter: saturate(.88) contrast(1.04);
  animation: wpOceanDrift 18s ease-in-out infinite alternate;
}
.wp-orbit {
  position: absolute; z-index: 2; left: 51%; top: 46%; width: 230px; height: 230px;
  border: 1px solid rgba(117, 227, 238, .1); border-radius: 50%;
  transform: translate(-50%, -50%);
}
.wp-orbit-2 { width: 360px; height: 360px; opacity: .55; }
.wp-scene-card, .wp-scene-tag {
  z-index: 4; border: 1px solid rgba(153, 236, 244, .18);
  background: rgba(3, 31, 44, .62); box-shadow: 0 18px 50px rgba(0, 12, 21, .28);
  backdrop-filter: blur(16px);
}
.wp-scene-card-main { left: 5%; bottom: 9%; border-radius: 16px; }
.wp-scene-tag {
  position: absolute; padding: 8px 13px; border-radius: 999px;
  color: rgba(235, 252, 255, .78); font-size: 12px;
}
.wp-scene-tag::before {
  content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 7px;
  border-radius: 50%; background: #5ce4ef; box-shadow: 0 0 12px #5ce4ef;
}
.wp-scene-tag-a { right: 12%; top: 16%; }
.wp-scene-tag-b { right: 4%; bottom: 24%; }
@keyframes wpOceanDrift {
  from { transform: scale(1.01) translate3d(-.5%, 0, 0); }
  to { transform: scale(1.055) translate3d(1.5%, -1%, 0); }
}

/* Current strip */
.wp-current {
  overflow: hidden; height: 58px; color: #8db0b7; background: #fff;
  border-bottom: 1px solid var(--wp-line);
}
.wp-current-track {
  display: flex; align-items: center; width: max-content; height: 100%;
  font-size: 10px; font-weight: 750; letter-spacing: .22em;
  animation: wpCurrent 24s linear infinite;
}
.wp-current-set {
  display: flex; flex: 0 0 auto; align-items: center; justify-content: space-around;
  min-width: 100vw; gap: 26px; padding: 0 24px;
}
.wp-current-set::after {
  content: ""; width: 4px; height: 4px; margin-right: 0;
  border-radius: 50%; background: var(--wp-primary); opacity: .65;
}
.wp-current-track i { flex: 0 0 auto; width: 5px; height: 5px; border-radius: 50%; background: var(--wp-primary); opacity: .65; }
@keyframes wpCurrent { to { transform: translateX(-50%); } }

/* Editorial section rhythm */
.wp-section { padding: 112px 0; }
.wp-section-head { max-width: 48em; margin-bottom: 55px; }
.wp-kicker { color: #079aae; letter-spacing: .18em; }
.wp-section-head h2 {
  margin-top: 14px; max-width: 17em;
  font-size: clamp(34px, 4vw, 52px); line-height: 1.14; letter-spacing: -.045em;
}
.wp-section-head p { margin-top: 18px; max-width: 40em; line-height: 1.85; }
.wp-grid-3 { gap: 24px; }
.wp-card {
  position: relative; min-height: 310px; padding: 36px 32px;
  border-color: rgba(9, 70, 86, .1); border-radius: 26px;
  box-shadow: 0 14px 42px rgba(4, 52, 65, .06);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.wp-card::after {
  content: ""; position: absolute; right: -65px; bottom: -80px; width: 160px; height: 160px;
  border: 1px solid rgba(18, 201, 223, .12); border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(18, 201, 223, .035), 0 0 0 56px rgba(18, 201, 223, .018);
}
.wp-card:hover {
  transform: translateY(-7px); border-color: rgba(18, 201, 223, .3);
  box-shadow: 0 28px 70px rgba(4, 52, 65, .12);
}
.wp-card-index {
  position: absolute; right: 28px; top: 24px; color: #b8cdd1;
  font-size: 11px; font-weight: 800; letter-spacing: .16em;
}
.wp-card-icon {
  width: 54px; height: 54px; margin-bottom: 44px;
  border-radius: 17px; color: #068fa3;
  background: linear-gradient(145deg, rgba(18, 201, 223, .16), rgba(18, 201, 223, .05));
  box-shadow: inset 0 0 0 1px rgba(18, 201, 223, .09);
}
.wp-card h3 { font-size: 22px; }
.wp-card p { margin-top: 13px; line-height: 1.85; }

/* Trust is a split editorial list, not another card grid */
.wp-trust {
  color: #eefdff;
  background:
    radial-gradient(circle at 0 0, rgba(18, 201, 223, .16), transparent 28rem),
    linear-gradient(145deg, #062c3e, #031c2b 72%);
}
.wp-trust-layout {
  display: grid; grid-template-columns: .78fr 1.22fr; gap: 95px; align-items: start;
}
.wp-trust .wp-section-head { position: sticky; top: 116px; margin: 0; }
.wp-trust .wp-kicker { color: #6be7f2; }
.wp-trust .wp-section-head p { color: rgba(222, 243, 246, .58); }
.wp-trust-list { border-top: 1px solid rgba(203, 246, 250, .15); }
.wp-trust-item {
  display: grid; grid-template-columns: 34px 58px 1fr; gap: 20px; align-items: start;
  padding: 32px 0; border-bottom: 1px solid rgba(203, 246, 250, .15);
}
.wp-trust-num { padding-top: 13px; color: rgba(164, 226, 233, .38); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.wp-trust-item .wp-card-icon { margin: 0; color: #7ceaf3; background: rgba(18, 201, 223, .1); }
.wp-trust-item h3 { font-size: 20px; }
.wp-trust-item p { margin-top: 9px; color: rgba(222, 243, 246, .6); font-size: 14.5px; line-height: 1.8; }

/* Steps become a connected route */
.wp-steps { position: relative; gap: 0; }
.wp-steps::before {
  content: ""; position: absolute; left: 16.6%; right: 16.6%; top: 46px;
  height: 1px; background: linear-gradient(90deg, transparent, #9dd9df 12%, #9dd9df 88%, transparent);
}
.wp-step {
  z-index: 1; padding: 28px 34px 34px; border: 0; border-radius: 0;
  background: transparent; text-align: center;
}
.wp-step-num {
  width: 38px; height: 38px; margin: 0 auto 26px;
  background: #fff; color: #0798ad; border: 1px solid #acdce2;
  box-shadow: 0 0 0 9px var(--wp-foam);
}
.wp-step h3 { font-size: 20px; }
.wp-step p { max-width: 18em; margin: 10px auto 0; line-height: 1.75; }
.wp-notice {
  margin-top: 46px !important; padding: 30px 34px; border: 0; border-left: 0;
  background: #fff; box-shadow: 0 15px 46px rgba(4, 52, 65, .07);
}
.wp-notice::before {
  content: ""; align-self: stretch; width: 3px; border-radius: 3px;
  background: linear-gradient(#f6c453, #e8a82e);
}

/* Closing statement */
.wp-cta {
  background:
    linear-gradient(90deg, rgba(3, 28, 43, .94), rgba(3, 28, 43, .76)),
    url("../landing/whalepod-hero-ocean.png?v=20260822b") center 38% / cover;
}
.wp-cta::before { width: 650px; height: 650px; opacity: .65; }
.wp-cta-inner { padding: 105px 0; }
.wp-cta-inner h2 { font-size: clamp(34px, 4.6vw, 54px); letter-spacing: -.045em; }
.wp-cta-inner p { font-size: 17px; }
.wp-foot { background: #021721; }

@media (prefers-reduced-motion: reduce) {
  .wp-ocean-art img, .wp-current-track { animation: none; }
}
@media (max-width: 1080px) {
  .wp-hero { min-height: auto; }
  .wp-hero-inner { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); min-height: 640px; padding-inline: 24px; }
  .wp-scene { width: calc(100% + 40px); margin-right: -40px; }
  .wp-trust-layout { gap: 55px; }
}
@media (max-width: 900px) {
  .wp-wrap { padding-inline: 24px; }
  .wp-hero-inner { grid-template-columns: 1fr; padding: 76px 24px 64px; }
  .wp-hero-copy { max-width: 700px; }
  .wp-scene { width: 100%; max-width: 720px; margin: -40px auto 0; aspect-ratio: 1.3 / .82; }
  .wp-ocean-art { inset: 0 -5% -5%; border-radius: 32px; mask-image: linear-gradient(180deg, transparent, #000 16%); -webkit-mask-image: linear-gradient(180deg, transparent, #000 16%); }
  .wp-scene-card-main { left: 3%; bottom: 4%; }
  .wp-grid-3 { grid-template-columns: 1fr; }
  .wp-card { min-height: 0; }
  .wp-trust-layout { grid-template-columns: 1fr; gap: 45px; }
  .wp-trust .wp-section-head { position: static; }
}
@media (max-width: 720px) {
  .wp-wrap { padding-inline: 18px; }
  .wp-top-inner { height: 66px; }
  .wp-brand img { width: 110px; height: 32px; }
  .wp-lang { padding: 2px; }
  .wp-lang button { padding: 4px 7px; font-size: 12px; }
  .wp-top .wp-btn-primary { height: 38px; padding-inline: 11px; font-size: 13px; }
  .wp-hero-inner { padding: 62px 18px 48px; }
  .wp-hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .wp-hero-sub { font-size: 15.5px; }
  .wp-chips { grid-template-columns: 1fr; }
  .wp-scene { margin-top: -18px; aspect-ratio: .96 / .82; }
  .wp-ocean-art { inset: 0 -20% -5% -30%; }
  .wp-scene-tag { display: none; }
  .wp-scene-card-main { position: absolute; left: 3%; bottom: 2%; max-width: 92%; margin: 0; }
  .wp-hero::after {
    width: 100%; height: 390px; left: 0; top: 70px; opacity: .2;
    background:
      linear-gradient(90deg, #031c2b 5%, transparent 48%, #031c2b 100%),
      linear-gradient(0deg, #031c2b, transparent 42%, #031c2b),
      url("../landing/whalepod-hero-ocean.png?v=20260822b") 58% center / cover;
  }
  .wp-current { height: 48px; }
  .wp-section { padding: 80px 0; }
  .wp-section-head { margin-bottom: 38px; }
  .wp-section-head h2 { font-size: 34px; }
  .wp-card { padding: 28px 24px; }
  .wp-card-icon { margin-bottom: 30px; }
  .wp-trust-item { grid-template-columns: 28px 48px 1fr; gap: 13px; padding: 27px 0; }
  .wp-trust-item .wp-card-icon { width: 48px; height: 48px; }
  .wp-steps { gap: 16px; }
  .wp-steps::before { display: none; }
  .wp-step { padding: 26px; border-radius: 20px; background: #fff; text-align: left; }
  .wp-step-num { margin: 0 0 20px; box-shadow: none; }
  .wp-step p { margin-left: 0; }
  .wp-notice { padding: 24px; }
  .wp-notice::before { display: none; }
  .wp-cta-inner { padding: 80px 0; }
  .wp-foot-policy { justify-content: flex-start; }
}
@media (min-width: 721px) and (max-width: 900px) {
  .wp-hero-inner {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 12px; min-height: 620px; padding: 68px 24px 62px;
  }
  .wp-hero-copy { max-width: none; }
  .wp-hero h1 { font-size: clamp(42px, 6.8vw, 56px); }
  .wp-hero-sub { font-size: 14px; line-height: 1.75; }
  .wp-chips { grid-template-columns: 1fr; gap: 8px; margin-top: 27px; padding-top: 20px; }
  .wp-chip:nth-child(n+3) { display: none; }
  .wp-scene {
    width: calc(100% + 90px); max-width: none; margin: 0 -90px 0 0;
    aspect-ratio: 1 / 1.08;
  }
  .wp-ocean-art {
    inset: -5% -8% -5% -28%; border-radius: 48% 0 0 48%;
    mask-image: linear-gradient(90deg, transparent 0, #000 18%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%);
  }
  .wp-scene-card-main { left: 4%; bottom: 7%; }
  .wp-scene-tag-a { right: 22%; top: 16%; }
  .wp-scene-tag-b { display: none; }
  .wp-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .wp-card { min-height: 300px; padding: 25px 20px; }
  .wp-card-icon { width: 48px; height: 48px; margin-bottom: 38px; }
  .wp-card h3 { font-size: 18px; }
  .wp-card p { font-size: 13.5px; line-height: 1.72; }
  .wp-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
