:root {
  --blue: #8dddd5;
  --blue-soft: #dff6f3;
  --blue-pale: #effaf8;
  --tide: #173842;
  --tide-2: #244d58;
  --night: #102b34;
  --berry: #713e52;
  --berry-soft: #f2d8df;
  --slate: #557078;
  --ivory: #fff9f3;
  --paper: #fffdf9;
  --blush: #f5d9dc;
  --blush-soft: #fcebed;
  --champagne: #d4ad66;
  --line: rgba(23, 56, 66, 0.14);
  --shadow: 0 28px 80px rgba(23, 56, 66, 0.13);
  --shadow-small: 0 14px 35px rgba(23, 56, 66, 0.11);
  --radius-large: 36px;
  --radius: 24px;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--tide);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--tide);
  color: white;
  text-decoration: none;
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 249, 243, 0.78);
  box-shadow: 0 8px 30px rgba(23, 56, 66, 0.06);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 243, 0.94);
  box-shadow: 0 12px 42px rgba(23, 56, 66, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  min-width: 48px;
  min-height: 48px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark, .mini-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--tide);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.site-nav { display: flex; gap: 30px; }
.site-nav a, .footer-links a {
  color: var(--slate);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-header > .button { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--tide);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tide), #285560);
  color: white;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(23, 56, 66, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-small { min-height: 48px; padding: 0 19px; font-size: 13px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--tide);
  font-size: 15px;
  font-weight: 750;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 118px);
  width: 100%;
  max-width: none;
  min-height: 790px;
  margin: 0 auto;
  padding: 84px max(24px, calc((100vw - 1160px) / 2)) 104px;
  background:
    radial-gradient(circle at 82% 22%, rgba(245, 217, 220, 0.72), transparent 25%),
    radial-gradient(circle at 12% 78%, rgba(141, 221, 213, 0.2), transparent 27%),
    linear-gradient(135deg, #fffaf5 0%, #fff5f4 52%, #f3fbf9 100%);
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--tide-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(141, 221, 213, 0.25);
}

h1, h2, h3, p { text-wrap: pretty; }

h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 { max-width: 760px; font-size: clamp(56px, 6.35vw, 88px); }
h1 em { color: var(--berry); font-weight: 400; }
h2 { font-size: clamp(42px, 5vw, 68px); }
h3 { margin: 18px 0 10px; font-size: 22px; line-height: 1.2; }

.hero-lede {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--slate);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }

.hero-proof {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-proof div { display: grid; gap: 2px; }
.hero-proof strong { font-family: var(--serif); font-size: 16px; }
.hero-proof span { color: var(--slate); font-size: 12px; }

.disclosure {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.55;
}

.disclosure span { color: var(--champagne); }

.hero-visual { position: relative; z-index: 2; }
.image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.75;
  border: 10px solid rgba(255, 255, 255, 0.84);
  border-radius: 220px 220px 34px 34px;
  background: var(--berry-soft);
  box-shadow: 0 32px 90px rgba(67, 39, 50, 0.2);
}

.image-frame img { height: 100%; object-fit: cover; object-position: center 48%; }
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 20, 29, 0.28), transparent 38%);
  pointer-events: none;
}

.image-glow {
  position: absolute;
  right: -30%;
  bottom: -20%;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(245, 217, 220, 0.5);
  filter: blur(55px);
}

.message-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  background: rgba(255, 250, 247, 0.94);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
}

.message-float p { margin: 0; font-size: 12px; line-height: 1.4; }
.message-float-top {
  top: auto;
  bottom: -82px;
  left: 50%;
  width: min(305px, calc(100vw - 40px));
  transform: translateX(-50%);
}
.message-float-bottom { right: -9%; bottom: 9%; border-radius: 999px; }
.message-float-bottom p { font-weight: 750; }

.avatar-dot {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), var(--berry-soft));
  font-family: var(--serif);
  font-weight: 700;
}

.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #4ba47b; box-shadow: 0 0 0 5px #dff2e9; }

.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { top: 10%; right: 32%; width: 240px; height: 240px; background: rgba(141, 221, 213, 0.18); }
.hero-orb-two { bottom: 8%; left: -18%; width: 330px; height: 330px; background: rgba(113, 62, 82, 0.1); }

.promise-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 78px;
  padding: 18px 28px;
  background: var(--tide);
  color: var(--ivory);
  text-align: center;
}

.promise-strip p { margin: 0; font-family: var(--serif); font-size: clamp(15px, 1.6vw, 20px); }
.promise-strip span { color: var(--blue); }

.section { width: min(1160px, calc(100% - 48px)); margin: 0 auto; padding: 130px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr 0.7fr; gap: 80px; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -52px; }
.section-heading p:last-child { margin: 0; color: var(--slate); font-size: 17px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 68px; }
.feature-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 38px rgba(23, 56, 66, 0.045);
}

.feature-card-blue { background: var(--blue-soft); }
.feature-card-blush { background: linear-gradient(145deg, var(--blush-soft), #f8e2e7); }
.feature-number { position: absolute; top: 26px; right: 28px; color: var(--slate); font-family: var(--serif); font-size: 13px; }
.feature-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 18px; background: var(--tide); color: white; font-size: 25px; }
.feature-card p { margin: 0; color: var(--slate); }

.conversation {
  display: grid;
  grid-template-columns: 0.8fr 0.72fr;
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1160px) / 2));
  padding-left: max(24px, calc((100vw - 1160px) / 2));
  background: linear-gradient(145deg, var(--blue-pale), #f4f9f7 58%, #f9e9ec);
}

.conversation-copy > p:not(.eyebrow) { max-width: 580px; margin: 28px 0 0; color: var(--slate); font-size: 18px; }
.check-list { display: grid; gap: 15px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: center; font-weight: 650; }
.check-list span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--blue); font-size: 12px; }

.phone-wrap { display: grid; justify-items: center; }
.phone {
  overflow: hidden;
  width: min(390px, 100%);
  border: 9px solid var(--tide);
  border-radius: 42px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.phone-topbar { display: flex; justify-content: center; gap: 4px; height: 27px; padding-top: 8px; background: var(--tide); }
.phone-topbar span:first-child { width: 44px; height: 4px; border-radius: 99px; background: #70848a; }
.phone-topbar span:last-child { width: 4px; height: 4px; border-radius: 50%; background: #70848a; }
.chat-head { display: flex; align-items: center; gap: 11px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.chat-avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--blue); font-family: var(--serif); font-weight: 700; }
.chat-head div { display: grid; line-height: 1.3; }
.chat-head div span { display: flex; align-items: center; gap: 5px; color: var(--slate); font-size: 11px; }
.chat-head i { width: 6px; height: 6px; border-radius: 50%; background: #4ba47b; }
.chat-head button { margin-left: auto; border: 0; background: transparent; color: var(--slate); }
.chat-body { display: flex; flex-direction: column; min-height: 430px; padding: 24px 17px 16px; background: linear-gradient(180deg, #fffdfa, #f9fffe); }
.time-label { margin: 0 auto 22px; color: #82959a; font-size: 10px; }
.bubble { max-width: 82%; margin-bottom: 13px; padding: 12px 14px; border-radius: 17px; font-size: 13px; line-height: 1.5; }
.bubble-ashlin { align-self: flex-start; border-bottom-left-radius: 5px; background: linear-gradient(145deg, var(--blue-soft), #f5e6ea); }
.bubble-you { align-self: flex-end; border-bottom-right-radius: 5px; background: var(--tide); color: white; }
.typing { align-self: flex-start; display: flex; gap: 4px; width: 50px; padding: 12px; border-radius: 17px; background: var(--berry-soft); }
.typing span { width: 5px; height: 5px; border-radius: 50%; background: #6f8c91; animation: bounce 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: 120ms; }
.typing span:nth-child(3) { animation-delay: 240ms; }
.chat-compose { display: flex; align-items: center; justify-content: space-between; margin: 12px; padding: 8px 8px 8px 14px; border: 1px solid var(--line); border-radius: 999px; color: #8aa0a5; font-size: 12px; }
.chat-compose b { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%; background: var(--tide); color: white; }
.sample-note { margin: 18px 0 0; color: var(--slate); font-size: 12px; }

@keyframes bounce { 0%, 70%, 100% { transform: translateY(0); } 35% { transform: translateY(-4px); } }

.day-in-life {
  display: grid;
  grid-template-columns: 0.85fr 0.72fr;
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1160px) / 2));
  padding-left: max(24px, calc((100vw - 1160px) / 2));
  color: var(--ivory);
  background:
    radial-gradient(circle at 18% 22%, rgba(113, 62, 82, 0.48), transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(141, 221, 213, 0.12), transparent 26%),
    linear-gradient(135deg, #0c2730, #173842 58%, #332634);
}
.day-gallery { position: relative; min-height: 670px; }
.day-image { overflow: hidden; margin: 0; border: 8px solid rgba(255, 249, 243, 0.92); background: var(--blue-soft); box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28); }
.day-image img { height: 100%; object-fit: cover; }
.day-image-main { position: absolute; inset: 0 25% 5% 0; border-radius: 160px 160px 28px 28px; }
.day-image-main img { object-position: center 42%; }
.day-image-small { position: absolute; right: 0; bottom: 0; width: 44%; height: 52%; border-radius: 24px; transform: rotate(3deg); }
.day-image-small img { object-position: center 38%; }
.hand-note { position: absolute; z-index: 2; right: 0; top: 15%; color: var(--blush); font-family: "Segoe Script", "Bradley Hand", cursive; font-size: 20px; transform: rotate(-7deg); }
.day-copy .eyebrow { color: var(--blue); }
.day-copy > p:not(.eyebrow) { margin: 28px 0 0; color: #cedbdd; font-size: 18px; }
.day-copy blockquote { margin: 38px 0 0; padding: 28px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.18); color: var(--blush); font-family: var(--serif); font-size: 26px; font-style: italic; line-height: 1.35; }

.trust { padding-top: 30px; }
.trust-card { display: grid; grid-template-columns: 1fr 0.82fr; gap: 90px; padding: clamp(38px, 6vw, 76px); border-radius: var(--radius-large); background: var(--tide); color: var(--ivory); }
.trust-card .eyebrow { color: var(--blue); }
.trust-copy > p { margin: 0; color: #c6d3d5; font-size: 17px; }
.trust-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 22px; }
.trust-points span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #e7eeee; font-size: 12px; }
.trust-card .text-link { color: var(--blue); }

.early-access { width: 100%; max-width: none; padding-right: 24px; padding-left: 24px; background: linear-gradient(135deg, var(--blue-soft), var(--blush-soft) 58%, #f7e5dc); }
.early-access-inner { display: grid; justify-items: center; max-width: 780px; margin: 0 auto; text-align: center; }
.mini-mark { width: 58px; height: 58px; margin-bottom: 26px; background: var(--blue); color: var(--tide); }
.early-access-inner > p:not(.eyebrow) { max-width: 650px; margin: 24px auto 0; color: var(--slate); font-size: 17px; }
.waitlist-form { width: min(650px, 100%); margin-top: 34px; padding: 22px; border: 1px solid rgba(23,56,66,.12); border-radius: 26px; background: rgba(255,255,255,.68); box-shadow: var(--shadow-small); text-align: left; }
.waitlist-row { display: grid; grid-template-columns: .9fr 1.15fr auto; gap: 10px; }
.waitlist-row input { min-width: 0; min-height: 54px; padding: 0 18px; border: 1px solid rgba(23,56,66,.22); border-radius: 999px; background: white; color: var(--tide); font-size: 16px; }
.waitlist-row input::placeholder { color: #758b91; }
.waitlist-row .button { min-height: 54px; border: 0; }
.waitlist-row .button:disabled { cursor: wait; opacity: .7; transform: none; }
.consent-copy { margin: 15px 0 0 !important; color: var(--tide-2); font-size: 12px !important; line-height: 1.5; }
.honeypot { display: none !important; }
.form-privacy { display: flex; flex-wrap: wrap; align-items: center; gap: 0 4px; margin: 8px 0 -7px !important; color: var(--slate); font-size: 12px !important; }
.form-privacy a { display: inline-flex; align-items: center; min-height: 44px; text-underline-offset: 3px; }
.form-status { min-height: 0; margin: 13px 0 0 !important; font-size: 13px !important; font-weight: 700; }
.form-status:empty { display: none; }
.form-status.is-success { color: #236b51; }
.form-status.is-error { color: #9b3343; }
.follow-label { margin-top: 28px !important; font-size: 13px !important; font-weight: 700; }
.follow-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; }
.follow-label + .follow-actions { margin-top: 14px; }
.button-secondary { border: 1px solid rgba(23,56,66,.18); background: white; color: var(--tide); box-shadow: var(--shadow-small); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 50px 0;
}
.site-footer > div:first-child > p { margin: 13px 0 0; color: var(--slate); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 22px; }
.footer-links a { display: inline-flex; align-items: center; justify-content: center; min-width: 48px; min-height: 48px; }
.copyright { grid-column: 1 / -1; margin: 20px 0 0; padding-top: 22px; border-top: 1px solid var(--line); color: var(--slate); font-size: 11px; }

.legal-page { min-height: 100vh; background: var(--ivory); }
.legal-wrap { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 110px; }
.legal-wrap h1 { max-width: 760px; margin-top: 70px; font-size: clamp(48px, 8vw, 76px); }
.legal-wrap h2 { margin-top: 54px; font-family: var(--sans); font-size: 25px; font-weight: 750; letter-spacing: -0.025em; }
.legal-wrap p, .legal-wrap li { color: var(--slate); }
.legal-wrap .back-link { font-weight: 750; text-underline-offset: 5px; }
.legal-callout { margin: 34px 0; padding: 24px; border-left: 5px solid var(--blue); border-radius: 0 16px 16px 0; background: var(--blue-pale); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal[data-delay="1"] { transition-delay: 120ms; }
.reveal[data-delay="2"] { transition-delay: 240ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { grid-template-columns: 1fr 0.78fr; gap: 38px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .conversation, .day-in-life, .trust-card { gap: 50px; }
}

@media (max-width: 760px) {
  .site-header { width: calc(100% - 24px); margin-top: 10px; }
  .brand-name { font-size: 14px; }
  .button-small { padding: 0 14px; }
  .hero { display: flex; flex-direction: column; align-items: stretch; width: 100%; padding: 70px max(16px, calc((100% - 560px) / 2)) 85px; }
  .hero-copy { display: contents; }
  .hero-copy.reveal { opacity: 1; transform: none; }
  .hero-copy > .eyebrow { order: 1; }
  .hero-copy > h1 { order: 2; }
  .hero-visual { order: 3; }
  .hero-copy > .hero-lede { order: 4; }
  .hero-copy > .hero-actions { order: 5; }
  .hero-copy > .hero-proof { order: 6; }
  .hero-copy > .disclosure { order: 7; }
  h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero-visual { width: min(88%, 420px); margin: 24px auto 106px; }
  .message-float-top { max-width: 305px; }
  .message-float-bottom { right: -5%; }
  .promise-strip { flex-direction: column; gap: 6px; padding: 22px; }
  .promise-strip span { display: none; }
  .section { width: min(100% - 32px, 560px); padding: 90px 0; }
  .conversation { grid-template-columns: 1fr; width: 100%; max-width: none; padding: 90px max(16px, calc((100% - 560px) / 2)); }
  .phone-wrap { margin-top: 12px; }
  .day-in-life { grid-template-columns: 1fr; width: 100%; max-width: none; padding-right: max(16px, calc((100% - 560px) / 2)); padding-left: max(16px, calc((100% - 560px) / 2)); }
  .day-gallery { min-height: 580px; }
  .trust { width: min(100% - 24px, 580px); }
  .trust-card { grid-template-columns: 1fr; padding: 38px 27px; }
  .follow-actions { width: 100%; }
  .waitlist-form { padding: 18px; }
  .waitlist-row { grid-template-columns: 1fr; }
  .waitlist-row .button { width: 100%; }
  .follow-actions .button { flex: 1 1 150px; }
  .follow-actions .text-link { flex-basis: 100%; justify-content: center; }
  .site-footer { grid-template-columns: 1fr; align-items: start; padding-bottom: calc(50px + env(safe-area-inset-bottom)); }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 420px) {
  .site-header .brand-name { display: none; }
  .hero-proof { gap: 16px; }
  .hero-proof strong { font-size: 14px; }
  .message-float-bottom { right: -2%; }
  .day-gallery { min-height: 500px; }
  .hand-note { font-size: 17px; }
  .hero-actions { display: grid; gap: 10px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
}

@media (hover: hover) {
  .site-nav a:hover, .footer-links a:hover { color: var(--tide); }
  .button:hover {
    transform: translateY(-2px);
    background: var(--tide-2);
    box-shadow: 0 15px 32px rgba(23, 56, 66, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
