@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Fredoka:wght@500;600;700&display=swap");

:root {
  --ink: #133589;
  --ink-deep: #082b52;
  --teal: #023b5e;
  --cream: #f1f9ed;
  --card: rgba(241, 249, 237, 0.92);
  --card-solid: #eef9e8;
  --green: #8af98a;
  --lime: #d2e565;
  --banana: #ffd53d;
  --line: rgba(8, 43, 82, 0.2);
  --shadow: 0 18px 55px rgba(8, 43, 82, 0.18);
  --font-display: "Fredoka", "Arial Rounded MT Bold", ui-rounded, system-ui, sans-serif;
  --font-body: "Baloo 2", "Arial Rounded MT Bold", ui-rounded, system-ui, sans-serif;
  --content: min(1120px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink-deep);
  background: #68a8dc;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: var(--banana);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 4px solid var(--banana);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3.4rem, 12vw, 7.25rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 6vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border: 2px solid var(--ink-deep);
  border-radius: 99px;
  background: var(--cream);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Shared paywall aquarium */
.aquarium {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #a4f4db 0%,
    #88d2dc 31%,
    #68a8dc 69%,
    #478dda 84%,
    #5d9bdd 100%
  );
  pointer-events: none;
}

.aquarium::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  opacity: 0.15;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 0.7px, transparent 0.8px);
  background-size: 8px 8px;
  mix-blend-mode: soft-light;
}

.aquarium::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(3, 44, 82, 0.02), rgba(2, 43, 82, 0.05));
}

.subpage .aquarium::after {
  background: linear-gradient(180deg, rgba(3, 44, 82, 0.1), rgba(2, 43, 82, 0.24));
}

.sun-rays {
  position: absolute;
  z-index: 1;
  top: -1vw;
  left: -3vw;
  width: 106vw;
  max-width: none;
  opacity: 0.68;
  filter: brightness(0) invert(1);
  animation: ray-shimmer 28s ease-in-out infinite;
  transform-origin: 50% 0;
}

.corals {
  position: absolute;
  z-index: 3;
  right: -3vw;
  bottom: -6px;
  width: 106vw;
  max-width: none;
  animation: coral-sway 13s ease-in-out infinite;
  transform-origin: 50% 100%;
  will-change: transform;
}

.fish {
  --flip: 1;
  position: absolute;
  z-index: 2;
  top: var(--depth);
  left: 0;
  width: var(--size);
  opacity: var(--opacity, 0.88);
  animation-duration: var(--duration);
  animation-delay: var(--delay);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.fish img {
  width: 100%;
  height: auto;
  animation: fish-bob var(--bob, 5.5s) ease-in-out var(--delay) infinite;
  filter: saturate(0.97) drop-shadow(0 4px 7px rgba(5, 54, 99, 0.13));
  will-change: transform;
}

.fish--ltr {
  animation-name: swim-right;
}

.fish--rtl {
  --flip: -1;
  animation-name: swim-left;
}

@keyframes swim-right {
  0% { transform: translate3d(calc(0px - var(--size) - 8vw), 0, 0); }
  43% { transform: translate3d(calc(108vw + var(--size)), 0, 0); }
  43.01%, 100% { transform: translate3d(calc(108vw + var(--size)), 0, 0); }
}

@keyframes swim-left {
  0% { transform: translate3d(calc(108vw + var(--size)), 0, 0); }
  43% { transform: translate3d(calc(0px - var(--size) - 8vw), 0, 0); }
  43.01%, 100% { transform: translate3d(calc(0px - var(--size) - 8vw), 0, 0); }
}

@keyframes fish-bob {
  0%, 100% { transform: translateY(-5px) rotate(-1.5deg) scaleX(var(--flip)); }
  50% { transform: translateY(6px) rotate(1.5deg) scaleX(var(--flip)); }
}

@keyframes coral-sway {
  0%, 100% { transform: rotate(-0.55deg) scaleY(0.996); }
  50% { transform: rotate(0.55deg) scaleY(1.004); }
}

@keyframes ray-shimmer {
  0%, 100% { opacity: 0.58; transform: translateX(-8px) scaleX(1.01); }
  50% { opacity: 0.76; transform: translateX(8px) scaleX(0.995); }
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 0;
}

.nav-shell {
  display: flex;
  width: var(--content);
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 10px 8px 12px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 22px;
  background: rgba(241, 249, 237, 0.78);
  box-shadow: 0 8px 32px rgba(8, 43, 82, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 4px 12px rgba(8, 43, 82, 0.16);
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 12px;
  border-radius: 99px;
  color: var(--teal);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(138, 249, 138, 0.7);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 15px;
  color: var(--ink);
  background: rgba(138, 249, 138, 0.65);
  font: inherit;
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Hero */
.hero {
  position: relative;
  z-index: 5;
  display: grid;
  width: var(--content);
  min-height: 100svh;
  margin: 0 auto;
  padding: 126px 0 clamp(190px, 25vw, 310px);
  place-items: center;
  text-align: center;
}

.hero-content {
  width: min(790px, 100%);
  margin-bottom: 3vh;
}

.hero-icon {
  width: clamp(76px, 13vw, 112px);
  margin: 0 auto 16px;
  border: 4px solid rgba(241, 249, 237, 0.8);
  border-radius: 26%;
  box-shadow: 0 14px 38px rgba(8, 43, 82, 0.2);
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 14px;
  align-items: center;
  border: 1px solid rgba(8, 43, 82, 0.18);
  border-radius: 99px;
  color: var(--teal);
  background: rgba(241, 249, 237, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero h1 {
  margin-bottom: 0;
  text-shadow: 0 3px 0 rgba(241, 249, 237, 0.62);
}

.tagline {
  margin: 8px 0 14px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
}

.hero-copy {
  width: min(640px, 100%);
  margin: 0 auto 24px;
  color: #073a5f;
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  line-height: 1.5;
}

.focus-motif {
  display: inline-flex;
  gap: 12px;
  margin-bottom: 22px;
  padding: 11px 18px 10px;
  align-items: center;
  border: 2px solid rgba(19, 53, 137, 0.82);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(241, 249, 237, 0.82);
  box-shadow: 0 8px 0 rgba(19, 53, 137, 0.13);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.focus-time {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1;
}

.focus-mode {
  padding-left: 12px;
  border-left: 2px solid rgba(19, 53, 137, 0.25);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.store-cta {
  display: flex;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
}

.store-link {
  display: block;
  border-radius: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.store-link img {
  width: 166px;
  height: auto;
}

.coming-soon {
  padding: 7px 11px;
  border: 1px solid rgba(8, 43, 82, 0.16);
  border-radius: 99px;
  color: var(--teal);
  background: rgba(241, 249, 237, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.cta-note {
  min-height: 1.5em;
  margin: 10px 0 0;
  color: var(--teal);
  font-size: 0.87rem;
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  right: 50%;
  bottom: clamp(138px, 18vw, 225px);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-shadow: 0 1px 7px rgba(8, 43, 82, 0.45);
  text-transform: uppercase;
  transform: translateX(50%);
}

.scroll-cue span {
  display: block;
  font-size: 1.2rem;
}

/* Main sections */
.page-section {
  position: relative;
  z-index: 5;
  padding: clamp(72px, 10vw, 130px) 0;
}

.section-shell,
.page-shell {
  width: var(--content);
  margin: 0 auto;
}

.section-card {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: clamp(28px, 5vw, 50px);
  background: var(--card);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.section-heading {
  width: min(690px, 100%);
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.kicker {
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  gap: 18px;
}

.feature {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.48);
}

.feature:nth-child(2) {
  background: rgba(210, 229, 101, 0.27);
}

.feature:nth-child(3) {
  background: rgba(138, 249, 138, 0.23);
}

.feature:nth-child(4) {
  background: rgba(255, 213, 61, 0.22);
}

.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  border: 2px solid rgba(19, 53, 137, 0.7);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 0 7px 0 rgba(19, 53, 137, 0.1);
  font-size: 1.75rem;
}

.feature p {
  margin-bottom: 0;
}

.pro-card {
  display: grid;
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.pro-copy ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pro-copy li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 32px;
}

.pro-copy li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "✓";
  color: var(--ink);
  font-weight: 800;
}

.pricing {
  display: grid;
  gap: 12px;
}

.price {
  display: flex;
  gap: 12px;
  min-height: 76px;
  padding: 14px 16px;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid rgba(19, 53, 137, 0.38);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.46);
}

.price.best {
  border: 2px solid var(--ink);
  background: var(--lime);
  box-shadow: 0 7px 0 rgba(19, 53, 137, 0.12);
}

.price-name,
.price-value {
  font-family: var(--font-display);
  font-weight: 700;
}

.price-name small,
.price-value small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.1;
}

.challenge-teaser {
  text-align: center;
}

.challenge-teaser .section-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(255, 213, 61, 0.95), rgba(210, 229, 101, 0.94));
}

.challenge-teaser .section-card::after {
  position: absolute;
  right: -42px;
  bottom: -74px;
  width: 210px;
  height: 210px;
  border: 22px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
}

.challenge-teaser p {
  width: min(620px, 100%);
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
}

.button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 54px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink-deep);
  border-radius: 99px;
  color: var(--ink-deep);
  background: var(--green);
  box-shadow: 0 7px 0 rgba(8, 43, 82, 0.15);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  box-shadow: 0 4px 0 rgba(8, 43, 82, 0.15);
  text-decoration: none;
  transform: translateY(3px);
}

/* Subpages */
.page-main {
  position: relative;
  z-index: 5;
  min-height: 100svh;
  padding: 132px 0 110px;
}

.page-hero {
  width: min(850px, 100%);
  margin: 0 auto 38px;
  color: var(--cream);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 16px;
  color: var(--cream);
  font-size: clamp(2.9rem, 9vw, 5.75rem);
  text-shadow: 0 4px 0 rgba(19, 53, 137, 0.45);
}

.page-hero p {
  width: min(680px, 100%);
  margin: 0 auto;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  text-shadow: 0 2px 10px rgba(8, 43, 82, 0.45);
}

.content-card {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: clamp(26px, 5vw, 42px);
  background: var(--card);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.content-card + .content-card {
  margin-top: 24px;
}

.content-card > :last-child {
  margin-bottom: 0;
}

.content-card h2 {
  margin-top: 42px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card h3 {
  margin-top: 28px;
}

.content-card ul,
.content-card ol {
  padding-left: 1.3em;
}

.steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.step {
  position: relative;
  min-height: 82px;
  padding: 18px 18px 18px 72px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.46);
  counter-increment: step;
}

.step::before {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--ink);
  background: var(--banana);
  content: counter(step);
  font-family: var(--font-display);
  font-weight: 800;
}

.step strong {
  color: var(--ink);
}

.hashtags {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.hashtag {
  padding: 5px 10px;
  border-radius: 99px;
  color: var(--ink);
  background: rgba(210, 229, 101, 0.62);
  font-size: 0.84rem;
  font-weight: 700;
}

.reward-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.reward {
  padding: 22px;
  border: 2px solid rgba(19, 53, 137, 0.42);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.48);
  text-align: center;
}

.reward:nth-child(2) {
  background: rgba(210, 229, 101, 0.42);
}

.reward:nth-child(3) {
  border-color: var(--ink);
  background: rgba(138, 249, 138, 0.48);
}

.reward-likes {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
}

.reward-term {
  display: block;
  margin-top: 3px;
  font-weight: 700;
}

.callout {
  margin: 26px 0;
  padding: 18px 20px;
  border-left: 6px solid var(--green);
  border-radius: 8px 18px 18px 8px;
  background: rgba(138, 249, 138, 0.2);
}

.callout p:last-child {
  margin-bottom: 0;
}

.pro-tips {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pro-tips li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.36);
}

.pro-tips li::before {
  position: absolute;
  top: 13px;
  left: 16px;
  content: "✦";
  color: var(--ink);
}

.closing-line {
  margin-top: 32px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.42);
}

.faq-item summary {
  position: relative;
  padding: 19px 54px 19px 20px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 17px;
  right: 18px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.legal-card {
  font-size: 1rem;
}

.legal-card .updated {
  margin-bottom: 28px;
  color: #45647e;
  font-size: 0.88rem;
}

.legal-card .lead {
  font-size: 1.12rem;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 6;
  padding: 54px 0 34px;
  color: var(--cream);
  background: rgba(5, 42, 76, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.footer-shell {
  display: grid;
  width: var(--content);
  gap: 28px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
}

.footer-brand strong {
  display: block;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.footer-brand span {
  color: rgba(241, 249, 237, 0.74);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  list-style: none;
}

.footer-links a {
  color: var(--cream);
  font-size: 0.92rem;
}

.copyright {
  margin: 0;
  color: rgba(241, 249, 237, 0.65);
  font-size: 0.82rem;
}

@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pro-card {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .reward-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-shell {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .footer-links {
    justify-content: flex-end;
  }

  .copyright {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 780px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 88px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 5px;
    padding: 12px;
    visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(241, 249, 237, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 15px;
    font-size: 1rem;
  }

  .sun-rays {
    width: auto;
    height: 32vh;
  }

  .corals {
    right: -23vw;
    width: 146vw;
  }
}

@media (max-width: 520px) {
  :root {
    --content: min(100% - 22px, 1120px);
  }

  body {
    font-size: 17px;
  }

  .brand span {
    font-size: 1.02rem;
  }

  .hero {
    padding-top: 118px;
    padding-bottom: 190px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .tagline {
    font-size: 1.65rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .store-cta {
    flex-direction: column;
  }

  .scroll-cue {
    bottom: 126px;
  }

  .feature,
  .section-card,
  .content-card {
    padding: 24px;
  }

  .page-main {
    padding-top: 120px;
  }

  .page-hero h1 {
    font-size: 2.8rem;
  }

  .step {
    padding: 70px 18px 18px;
  }

  .step::before {
    top: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .sun-rays,
  .corals,
  .fish,
  .fish img {
    animation: none !important;
  }

  .fish {
    display: none;
  }

  .fish:nth-of-type(1),
  .fish:nth-of-type(3),
  .fish:nth-of-type(6),
  .fish:nth-of-type(9) {
    display: block;
  }

  .fish:nth-of-type(1) { transform: translateX(8vw); }
  .fish:nth-of-type(3) { transform: translateX(37vw); }
  .fish:nth-of-type(6) { transform: translateX(63vw); }
  .fish:nth-of-type(9) { transform: translateX(83vw); }

  .fish--rtl img {
    transform: scaleX(-1);
  }
}
