:root {
  --home-bg: #f4e6d0;
  --home-bg-soft: #fbf3e7;
  --home-surface: rgba(255, 250, 243, 0.72);
  --home-surface-cool: rgba(238, 246, 247, 0.72);
  --home-border: rgba(122, 83, 54, 0.16);
  --home-border-strong: rgba(122, 83, 54, 0.24);
  --home-line: rgba(89, 114, 122, 0.16);
  --home-text-main: #2d201b;
  --home-text-soft: #5d473b;
  --home-text-muted: #7a6255;
  --home-accent: #67e8f9;
  --home-accent-hover: #34d4c8;
  --home-accent-border: rgba(56, 189, 248, 0.28);
  --home-accent-soft: rgba(103, 232, 249, 0.14);
  --home-accent-text: #042430;
  --home-night-bg: #101726;
  --home-night-bg-soft: #152038;
  --home-night-border: rgba(125, 211, 252, 0.2);
  --home-night-text: #f4f8fb;
  --home-night-muted: rgba(215, 230, 240, 0.78);
  --home-shadow: 0 26px 80px rgba(48, 53, 60, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100dvh;
  color: var(--home-text-main);
  font-family: "Avenir Next", "Segoe UI", "Noto Sans", sans-serif;
  background:
    radial-gradient(circle at 10% 0, rgba(255, 248, 237, 0.98) 0%, rgba(255, 248, 237, 0) 24%),
    radial-gradient(circle at 86% 6%, rgba(103, 232, 249, 0.2) 0%, rgba(103, 232, 249, 0) 28%),
    radial-gradient(circle at 92% 10%, rgba(229, 194, 157, 0.24) 0%, rgba(229, 194, 157, 0) 24%),
    radial-gradient(circle at 88% 86%, rgba(103, 232, 249, 0.14) 0%, rgba(103, 232, 249, 0) 26%),
    radial-gradient(circle at 14% 100%, rgba(20, 184, 166, 0.08) 0%, rgba(20, 184, 166, 0) 34%),
    linear-gradient(180deg, #f7ecdb 0%, #f3e5d2 34%, #eadfce 68%, #e4eded 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.home-header {
  position: relative;
}

.home-header::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(89, 114, 122, 0) 0%,
    rgba(89, 114, 122, 0.18) 16%,
    rgba(89, 114, 122, 0.18) 84%,
    rgba(89, 114, 122, 0) 100%
  );
}

.home-header-inner {
  width: min(100% - 40px, 1220px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 16px;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--home-text-soft);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.home-brand:hover,
.home-brand:focus-visible {
  color: #365d68;
}

.home-brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(61, 44, 35, 0.08);
}

.home-header-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.home-header-link {
  color: var(--home-text-soft);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 160ms ease;
}

.home-header-link:hover,
.home-header-link:focus-visible,
.home-header-link-current {
  color: #244f59;
}

.home-page {
  padding-bottom: 88px;
}

.home-hero {
  position: relative;
  overflow: clip;
}

.home-page .home-hero {
  padding-bottom: 18px;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -120px;
  width: min(48vw, 460px);
  height: min(48vw, 460px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 249, 241, 0.92) 0%, rgba(255, 249, 241, 0) 72%);
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 18% 0 auto 52%;
  width: min(46vw, 560px);
  height: min(36vw, 420px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(103, 232, 249, 0.17) 0%, rgba(103, 232, 249, 0) 62%),
    radial-gradient(circle at 34% 66%, rgba(210, 171, 135, 0.14) 0%, rgba(210, 171, 135, 0) 70%);
  pointer-events: none;
}

.home-hero-shell {
  width: min(100% - 40px, 1220px);
  margin: 0 auto;
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.98fr);
  grid-template-areas:
    "copy visual"
    "support visual";
  column-gap: clamp(34px, 4.8vw, 78px);
  row-gap: 30px;
  align-content: center;
  align-items: center;
  padding: clamp(34px, 7vw, 94px) 0 clamp(60px, 8vw, 104px);
}

.home-page .home-hero-shell {
  position: relative;
}

.home-page .home-hero-shell::after {
  content: "";
  position: absolute;
  left: clamp(12px, 2.4vw, 34px);
  right: clamp(52px, 11vw, 190px);
  bottom: 12px;
  height: clamp(60px, 8vw, 104px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 36%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 26%),
    radial-gradient(circle at 72% 72%, rgba(103, 232, 249, 0.08) 0%, rgba(103, 232, 249, 0) 30%),
    linear-gradient(180deg, rgba(255, 248, 240, 0) 0%, rgba(255, 248, 240, 0.34) 54%, rgba(243, 249, 249, 0.12) 100%);
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}

.home-page .home-hero-copy-primary,
.home-page .home-hero-copy-secondary,
.home-page .home-hero-visual {
  position: relative;
  z-index: 1;
}

.home-hero-copy {
  max-width: 34rem;
}

.home-hero-copy-primary {
  grid-area: copy;
}

.home-hero-copy-secondary {
  grid-area: support;
  max-width: 26rem;
  padding-left: 22px;
  border-left: 1px solid rgba(89, 114, 122, 0.2);
}

.home-kicker {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #51707a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-kicker::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(103, 232, 249, 0.92) 0%, rgba(52, 212, 200, 0.84) 100%);
  box-shadow: 0 0 0 6px rgba(103, 232, 249, 0.1);
}

.home-hero-title {
  margin: 0;
  max-width: 14.4ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.62rem, 4.85vw, 4.82rem);
  line-height: 1.03;
  letter-spacing: -0.024em;
  text-wrap: balance;
}

.home-hero-standfirst {
  margin: 18px 0 0;
  max-width: 23rem;
  color: #48626a;
  font-size: clamp(1.06rem, 1.45vw, 1.34rem);
  font-weight: 600;
  line-height: 1.5;
  text-wrap: pretty;
}

.home-hero-body {
  margin: 0;
  max-width: 24rem;
  color: var(--home-text-soft);
  font-size: 1.01rem;
  line-height: 1.82;
  text-wrap: pretty;
}

.home-hero-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.home-cta {
  position: relative;
  isolation: isolate;
  overflow: clip;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--home-accent-border);
  background: linear-gradient(145deg, var(--home-accent) 0%, var(--home-accent-hover) 100%);
  color: var(--home-accent-text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  box-shadow:
    0 14px 32px rgba(29, 78, 97, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.home-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0) 74%);
  transform: translateX(-130%);
  transition: transform 320ms ease;
  pointer-events: none;
  z-index: -1;
}

.home-cta:hover,
.home-cta:focus-visible {
  background: linear-gradient(145deg, #8cf1fb 0%, #4ddccf 100%);
  border-color: rgba(56, 189, 248, 0.34);
  transform: translateY(-1px);
  box-shadow:
    0 18px 36px rgba(20, 104, 118, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.home-cta:hover::before,
.home-cta:focus-visible::before {
  transform: translateX(118%);
}

.home-cta:active {
  transform: translateY(0);
  box-shadow:
    0 12px 24px rgba(20, 104, 118, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.home-trust {
  margin: 0;
  color: var(--home-text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.home-secondary-link {
  color: #2f6672;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-color: rgba(56, 189, 248, 0.28);
  text-underline-offset: 3px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.home-secondary-link:hover,
.home-secondary-link:focus-visible {
  color: #1c4f5c;
  text-decoration-color: rgba(56, 189, 248, 0.5);
}

.home-hero-visual {
  grid-area: visual;
  margin: 0;
  justify-self: end;
  align-self: center;
  width: min(100%, 41rem);
}

.hero-visual-frame {
  position: relative;
  overflow: clip;
  padding: 16px;
  border-radius: 40px;
  border: 1px solid var(--home-border);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.96) 0%, rgba(238, 245, 247, 0.88) 100%);
  box-shadow:
    0 28px 88px rgba(48, 53, 60, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.36) inset;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.hero-visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 12%, rgba(103, 232, 249, 0.18) 0%, rgba(103, 232, 249, 0) 34%),
    radial-gradient(circle at 18% 0, rgba(255, 249, 240, 0.72) 0%, rgba(255, 249, 240, 0) 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 24%);
}

.hero-visual-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  pointer-events: none;
  z-index: 0;
}

.home-hero-visual:hover .hero-visual-frame,
.home-hero-visual:focus-within .hero-visual-frame {
  transform: translateY(-4px);
  box-shadow: 0 32px 88px rgba(39, 54, 67, 0.18);
}

.hero-visual-picture {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.hero-visual-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  z-index: 1;
}

.hero-visual-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(16px, 0, 0) scale(0.99);
  pointer-events: none;
  transition:
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual-slide.active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
  z-index: 1;
}

.hero-visual-picture-slide {
  height: 100%;
  aspect-ratio: auto;
}

.hero-visual-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 16px;
  z-index: 3;
  opacity: 0.46;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.hero-visual-control {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(45, 32, 27, 0.7);
  cursor: pointer;
  font-size: 1.42rem;
  font-weight: 300;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  box-shadow: 0 6px 18px rgba(39, 54, 67, 0.06);
  backdrop-filter: blur(12px);
}

.hero-visual-control span {
  transform: translateY(-1px);
}

.hero-visual-control:hover {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(255, 255, 255, 0.52);
  color: rgba(45, 32, 27, 0.96);
  transform: scale(1.04);
  box-shadow: 0 12px 26px rgba(39, 54, 67, 0.12);
}

.hero-visual-control:active {
  transform: scale(0.98);
}

.hero-visual-control:focus-visible,
.hero-visual-indicator:focus-visible {
  outline: 2px solid rgba(36, 79, 89, 0.54);
  outline-offset: 3px;
}

.hero-visual-indicators {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-visual-indicator {
  appearance: none;
  padding: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(122, 83, 54, 0.12);
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-hero-visual:hover .hero-visual-controls,
.home-hero-visual:focus-within .hero-visual-controls {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .hero-visual-controls {
    opacity: 0;
    pointer-events: none;
  }

  .hero-visual-control {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(45, 32, 27, 0.58);
    box-shadow: 0 4px 14px rgba(39, 54, 67, 0.04);
  }

  .home-hero-visual:hover .hero-visual-controls,
  .home-hero-visual:focus-within .hero-visual-controls {
    pointer-events: auto;
  }
}

.hero-visual-indicator.active {
  background: var(--home-accent);
  width: 16px;
  border-radius: 4px;
}

.hero-visual-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.hero-visual-main,
.hero-visual-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  border: 1px solid rgba(122, 83, 54, 0.12);
  background: var(--home-bg-soft);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 244, 0.84),
    0 1px 0 rgba(255, 250, 244, 0.42);
}

.hero-visual-main {
  z-index: 1;
  transition: opacity 220ms ease;
}

.hero-visual-preview {
  z-index: 2;
  opacity: 0;
  transform: scale(1.015);
  filter: blur(16px);
  transition: opacity 220ms ease;
}

.hero-visual-frame[data-hero-state="loading"] .hero-visual-main,
.hero-visual-slide[data-hero-state="loading"] .hero-visual-main {
  opacity: 0;
}

.hero-visual-frame[data-hero-state="loading"] .hero-visual-preview,
.hero-visual-slide[data-hero-state="loading"] .hero-visual-preview {
  opacity: 1;
}

.home-content {
  width: min(100% - 40px, 1020px);
  margin: 0 auto;
  position: relative;
}

.home-page .home-content {
  --home-rail-offset: clamp(126px, 14vw, 174px);
  --home-coda-offset: clamp(152px, 17vw, 222px);
  width: min(100% - 40px, 1060px);
  margin-top: -32px;
  padding-top: 48px;
  isolation: isolate;
}

.home-page .home-content::before {
  content: "";
  position: absolute;
  top: -28px;
  bottom: 18px;
  left: var(--home-rail-offset);
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(89, 114, 122, 0) 0%,
    rgba(89, 114, 122, 0.12) 8%,
    rgba(89, 114, 122, 0.16) 50%,
    rgba(89, 114, 122, 0.08) 88%,
    rgba(89, 114, 122, 0) 100%
  );
  pointer-events: none;
  z-index: -1;
}

.home-page .home-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(var(--home-rail-offset) - 16px);
  right: -16px;
  height: 124px;
  transform: translateY(-50px);
  border-radius: 48px 48px 0 0;
  background:
    radial-gradient(circle at 18% 100%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 86% 18%, rgba(103, 232, 249, 0.08) 0%, rgba(103, 232, 249, 0) 24%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.78) 0%, rgba(246, 250, 248, 0.28) 56%, rgba(246, 250, 248, 0) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 -16px 34px rgba(255, 248, 240, 0.16);
  pointer-events: none;
  z-index: -1;
}

.home-section {
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  padding: 48px 0 54px;
  border-top: 1px solid rgba(89, 114, 122, 0.16);
}

.home-page .home-section {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, 190px) minmax(0, 1fr);
  gap: clamp(28px, 4.4vw, 58px);
  padding: 58px 0 66px;
  border-top: 0;
}

.home-page .home-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(89, 114, 122, 0) 0%,
    rgba(89, 114, 122, 0.1) 14%,
    rgba(89, 114, 122, 0.14) 44%,
    rgba(89, 114, 122, 0.06) 82%,
    rgba(89, 114, 122, 0) 100%
  );
}

.home-section:first-of-type {
  border-top: 0;
}

.home-page .home-section:first-of-type {
  padding-top: 28px;
}

.home-page .home-section:first-of-type::after {
  display: none;
}

.home-section-label {
  margin: 0;
  color: #55717b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-page .home-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: start;
  position: sticky;
  top: 98px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(122, 83, 54, 0.12);
  background: rgba(255, 249, 241, 0.6);
  box-shadow:
    0 10px 22px rgba(48, 53, 60, 0.035),
    0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.home-page .home-section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(103, 232, 249, 0.94) 0%, rgba(52, 212, 200, 0.88) 100%);
  box-shadow: 0 0 0 4px rgba(103, 232, 249, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.home-page .home-section:hover .home-section-label,
.home-page .home-section:focus-within .home-section-label {
  transform: translateX(2px);
  border-color: rgba(103, 232, 249, 0.18);
  box-shadow:
    0 12px 24px rgba(48, 53, 60, 0.045),
    0 0 0 1px rgba(255, 255, 255, 0.26) inset;
}

.home-page .home-section:hover .home-section-label::before,
.home-page .home-section:focus-within .home-section-label::before {
  transform: scale(1.04);
  box-shadow: 0 0 0 5px rgba(103, 232, 249, 0.1);
}

.home-page .home-section:hover::after,
.home-page .home-section:focus-within::after {
  background: linear-gradient(
    90deg,
    rgba(89, 114, 122, 0) 0%,
    rgba(89, 114, 122, 0.14) 12%,
    rgba(89, 114, 122, 0.14) 44%,
    rgba(89, 114, 122, 0.1) 82%,
    rgba(89, 114, 122, 0) 100%
  );
}

.home-page .home-section-steps .home-section-label {
  background: rgba(249, 252, 247, 0.7);
  border-color: rgba(103, 232, 249, 0.16);
}

.home-page .home-section-points .home-section-label {
  background: rgba(255, 248, 241, 0.72);
}

.home-page .home-section-points .home-section-label::before {
  background: linear-gradient(180deg, rgba(224, 167, 111, 0.94) 0%, rgba(214, 140, 99, 0.9) 100%);
  box-shadow: 0 0 0 5px rgba(224, 167, 111, 0.1);
}

.home-page .home-section-testimonials .home-section-label {
  background: rgba(241, 248, 249, 0.74);
  border-color: rgba(103, 232, 249, 0.14);
}

.home-section-content {
  max-width: 34rem;
}

.home-page .home-section-content {
  display: grid;
  align-content: start;
}

.home-section-content-wide {
  max-width: none;
}

.home-section-title {
  margin: 0;
  max-width: 16ch;
  color: var(--home-text-main);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.55vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.home-section-intro {
  margin: 16px 0 0;
  max-width: 42rem;
  color: #4f5d60;
  font-size: 1rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.home-section-content p,
.home-final-copy p {
  margin: 0;
  color: var(--home-text-soft);
  font-size: 1.02rem;
  line-height: 1.92;
  text-wrap: pretty;
}

.home-section-content p + p,
.home-final-copy p + p {
  margin-top: 16px;
}

.home-section-link {
  display: inline-flex;
  margin-top: 22px;
  color: #2f6672;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-color: rgba(56, 189, 248, 0.28);
  text-underline-offset: 3px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.home-section-link:hover,
.home-section-link:focus-visible {
  color: #1c4f5c;
  text-decoration-color: rgba(56, 189, 248, 0.5);
}

.home-feature-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.home-feature-list-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-feature-list-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-feature-item {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(89, 114, 122, 0.14);
  position: relative;
}

.home-feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(103, 232, 249, 0.24);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(226, 244, 247, 0.88) 100%);
  box-shadow:
    0 12px 24px rgba(39, 54, 67, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.36) inset;
  color: #285560;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 1;
}

.home-feature-item p + p {
  margin-top: 0;
}

p.home-feature-item-title,
p.home-feature-item-body {
  margin: 0;
}

p.home-feature-item-title {
  color: var(--home-text-main);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

p.home-feature-item-body {
  color: var(--home-text-soft);
  font-size: 0.96rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.home-section-steps .home-feature-list {
  gap: 24px;
}

.home-section-steps .home-feature-item {
  gap: 10px;
  padding: 0 22px 0 0;
  border-top: 0;
}

.home-section-steps .home-feature-item::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(89, 114, 122, 0.28) 0%, rgba(89, 114, 122, 0.08) 100%);
}

.home-section-steps .home-feature-item:last-child {
  padding-right: 0;
}

.home-section-steps .home-feature-item:last-child::before {
  right: 38px;
}

.home-page .home-section-points .home-section-title {
  max-width: 18ch;
}

.home-page .home-section-points .home-section-intro {
  max-width: 38rem;
}

.home-page .home-section-points .home-feature-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 18px;
}

.home-page .home-section-points .home-feature-item {
  gap: 10px;
  padding-top: 18px;
  padding-right: 18px;
  border-top: 2px solid rgba(103, 232, 249, 0.22);
}

.home-page .home-section-steps::before {
  content: "";
  position: absolute;
  inset: 12px -10px 10px 126px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 86% 20%, rgba(103, 232, 249, 0.1) 0%, rgba(103, 232, 249, 0) 28%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.5) 0%, rgba(242, 248, 249, 0.22) 100%);
  border: 1px solid rgba(122, 83, 54, 0.07);
  box-shadow:
    0 18px 44px rgba(48, 53, 60, 0.03),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  z-index: -1;
  pointer-events: none;
}

.home-page .home-section-points::before {
  content: "";
  position: absolute;
  inset: 28px auto 16px 162px;
  width: min(54vw, 520px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 24%, rgba(224, 167, 111, 0.12) 0%, rgba(224, 167, 111, 0) 32%),
    radial-gradient(circle at 84% 74%, rgba(103, 232, 249, 0.12) 0%, rgba(103, 232, 249, 0) 30%);
  z-index: -1;
  pointer-events: none;
}

.home-section-testimonials .home-section-title {
  max-width: 13ch;
}

.home-page .home-section-testimonials::before {
  content: "";
  position: absolute;
  inset: 10px -16px 6px 118px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 88% 12%, rgba(103, 232, 249, 0.14) 0%, rgba(103, 232, 249, 0) 26%),
    linear-gradient(180deg, rgba(244, 250, 250, 0.28) 0%, rgba(255, 248, 241, 0.22) 100%);
  border: 1px solid rgba(122, 83, 54, 0.08);
  box-shadow:
    0 18px 44px rgba(48, 53, 60, 0.03),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  z-index: -1;
  pointer-events: none;
}

.home-testimonial-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 20px;
  justify-items: start;
}

.home-testimonial-item {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 24px 26px 24px 24px;
  border: 1px solid rgba(122, 83, 54, 0.12);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.84) 0%, rgba(237, 245, 247, 0.76) 100%);
  width: min(100%, 58rem);
  box-shadow:
    0 18px 40px rgba(48, 53, 60, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  position: relative;
  overflow: clip;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.home-testimonial-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 44%),
    radial-gradient(circle at 106% 8%, rgba(103, 232, 249, 0.16) 0%, rgba(103, 232, 249, 0) 32%),
    radial-gradient(circle at -10% 100%, rgba(244, 228, 204, 0.26) 0%, rgba(244, 228, 204, 0) 34%);
  pointer-events: none;
}

.home-testimonial-item:nth-child(odd) {
  justify-self: start;
}

.home-testimonial-item:nth-child(even) {
  justify-self: end;
  width: min(100%, 54rem);
  background: linear-gradient(180deg, rgba(245, 250, 250, 0.84) 0%, rgba(255, 248, 241, 0.8) 100%);
}

.home-testimonial-item:nth-child(3n) {
  width: min(100%, 60rem);
}

.home-testimonial-item:nth-child(3n + 2)::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 46%),
    radial-gradient(circle at 0 10%, rgba(103, 232, 249, 0.16) 0%, rgba(103, 232, 249, 0) 28%),
    radial-gradient(circle at 100% 92%, rgba(244, 228, 204, 0.22) 0%, rgba(244, 228, 204, 0) 30%);
}

.home-testimonial-item:hover,
.home-testimonial-item:focus-within {
  transform: translateY(-1px);
  border-color: rgba(103, 232, 249, 0.16);
  box-shadow:
    0 20px 38px rgba(39, 54, 67, 0.065),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
}

.home-testimonial-person {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding-top: 4px;
  position: relative;
  z-index: 1;
}

.home-testimonial-avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(103, 232, 249, 0.28);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(160deg, rgba(255, 253, 249, 0.99) 0%, rgba(244, 228, 204, 0.84) 34%, rgba(225, 244, 246, 0.92) 100%);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(160deg, rgba(255, 253, 249, 0.99) 0%, rgba(244, 228, 204, 0.84) 34%, rgba(225, 244, 246, 0.92) 100%);
  box-shadow:
    0 16px 30px rgba(39, 54, 67, 0.09),
    0 0 0 6px rgba(255, 255, 255, 0.46);
  position: relative;
}

.home-testimonial-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.42) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.home-testimonial-avatar-fallback {
  justify-content: flex-end;
  padding: 0 8px 8px 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(77, 110, 118, 0.34) 0 18%, rgba(77, 110, 118, 0) 18.5%),
    radial-gradient(ellipse 58% 42% at 50% 80%, rgba(77, 110, 118, 0.3) 0 54%, rgba(77, 110, 118, 0) 55%),
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 74% 76%, rgba(103, 232, 249, 0.18) 0%, rgba(103, 232, 249, 0) 54%),
    linear-gradient(160deg, rgba(255, 253, 249, 0.99) 0%, rgba(244, 228, 204, 0.84) 34%, rgba(225, 244, 246, 0.92) 100%);
  color: #285560;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.home-testimonial-item:nth-child(even) .home-testimonial-avatar-fallback {
  background:
    radial-gradient(circle at 50% 34%, rgba(92, 104, 110, 0.32) 0 18%, rgba(92, 104, 110, 0) 18.5%),
    radial-gradient(ellipse 58% 42% at 50% 80%, rgba(92, 104, 110, 0.28) 0 54%, rgba(92, 104, 110, 0) 55%),
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 74% 76%, rgba(244, 228, 204, 0.18) 0%, rgba(244, 228, 204, 0) 54%),
    linear-gradient(160deg, rgba(251, 252, 249, 0.99) 0%, rgba(228, 239, 241, 0.88) 36%, rgba(247, 233, 214, 0.88) 100%);
}

.home-testimonial-avatar-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 255, 255, 0) 56%),
    radial-gradient(circle at 74% 76%, rgba(103, 232, 249, 0.16) 0%, rgba(103, 232, 249, 0) 52%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.home-testimonial-item:nth-child(even) .home-testimonial-avatar-photo::before {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 32%, rgba(255, 255, 255, 0) 54%),
    radial-gradient(circle at 76% 78%, rgba(244, 228, 204, 0.16) 0%, rgba(244, 228, 204, 0) 52%);
}

.home-testimonial-avatar-image {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.02) contrast(1.02);
}

.home-testimonial-meta {
  display: grid;
  gap: 5px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.home-testimonial-meta p + p {
  margin-top: 0;
}

p.home-testimonial-name,
p.home-testimonial-context {
  margin: 0;
}

p.home-testimonial-name {
  color: var(--home-text-main);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
}

p.home-testimonial-context {
  color: #4d7078;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-testimonial-quote {
  margin: 0;
  position: relative;
  padding: 8px 0 0 38px;
  z-index: 1;
}

.home-testimonial-quote::before {
  content: "“";
  position: absolute;
  top: -6px;
  left: 0;
  color: rgba(47, 102, 114, 0.24);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  line-height: 1;
}

.home-testimonial-quote p {
  margin: 0;
  max-width: 40rem;
  color: #33474c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.28vw, 1.22rem);
  line-height: 1.72;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.home-section-story .home-section-content {
  max-width: 33rem;
  padding-left: 24px;
  border-left: 2px solid rgba(103, 232, 249, 0.2);
}

.about-page {
  padding-bottom: 88px;
}

.about-hero {
  position: relative;
}

.about-hero-shell {
  width: min(100% - 40px, 1220px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.54fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: end;
  padding: clamp(28px, 5vw, 56px) 0 46px;
  border-bottom: 1px solid rgba(89, 114, 122, 0.16);
}

.about-hero-copy {
  max-width: 38rem;
}

.about-kicker {
  color: #55717b;
}

.about-hero-title {
  margin: 0;
  max-width: 11ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4.6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.about-hero-standfirst {
  margin: 20px 0 0;
  max-width: 28rem;
  color: #48626a;
  font-size: clamp(1.1rem, 1.5vw, 1.38rem);
  font-weight: 600;
  line-height: 1.52;
  text-wrap: pretty;
}

.about-hero-body {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  max-width: 34rem;
}

.about-hero-body p {
  margin: 0;
  color: var(--home-text-soft);
  font-size: 1rem;
  line-height: 1.82;
  text-wrap: pretty;
}

.about-hero-actions {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.about-hero-note {
  align-self: center;
  padding: 24px 22px 26px;
  border: 1px solid rgba(89, 114, 122, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.82) 0%, rgba(238, 245, 247, 0.76) 100%);
  box-shadow: 0 20px 48px rgba(48, 53, 60, 0.08);
}

.about-note-label {
  margin: 0 0 16px;
  color: #55717b;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.about-note-item {
  padding-top: 12px;
  border-top: 1px solid rgba(89, 114, 122, 0.14);
}

.about-note-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.about-note-item-title {
  margin: 0;
  color: var(--home-text-main);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.42;
}

.about-note-item-body {
  margin: 6px 0 0;
  color: var(--home-text-soft);
  font-size: 0.9rem;
  line-height: 1.64;
}

.about-content {
  margin-top: 8px;
}

.home-final {
  position: relative;
  isolation: isolate;
  overflow: clip;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 22px;
  padding: 52px clamp(24px, 4vw, 38px) 56px;
  border: 1px solid var(--home-night-border);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(16, 23, 38, 0.94) 0%, rgba(11, 18, 34, 0.98) 100%);
  box-shadow: 0 22px 60px rgba(10, 16, 28, 0.16);
}

.home-page .home-final {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 46px);
  align-items: end;
  margin-top: clamp(44px, 6vw, 84px);
  margin-left: var(--home-coda-offset);
  width: calc(100% - var(--home-coda-offset));
  padding: 56px clamp(24px, 4vw, 40px) 60px;
}

.home-final::before {
  content: "";
  position: absolute;
  inset: -28% auto auto 58%;
  width: min(44vw, 360px);
  height: min(34vw, 280px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 232, 249, 0.26) 0%, rgba(103, 232, 249, 0) 72%);
  pointer-events: none;
}

.home-final::after {
  content: "";
  position: absolute;
  inset: auto auto -34% -8%;
  width: min(38vw, 300px);
  height: min(30vw, 220px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 192, 122, 0.12) 0%, rgba(245, 192, 122, 0) 74%);
  pointer-events: none;
}

.home-final-copy {
  position: relative;
  z-index: 1;
  max-width: 33rem;
}

.home-page .home-final-copy {
  max-width: 28rem;
}

.home-final .home-cta {
  position: relative;
  z-index: 1;
  justify-self: start;
  min-height: 58px;
  padding: 0 26px;
  box-shadow: 0 18px 40px rgba(18, 89, 104, 0.24);
}

.home-page .home-final .home-cta {
  align-self: end;
  justify-self: end;
  min-width: 13.5rem;
  box-shadow:
    0 16px 34px rgba(18, 89, 104, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.home-page .home-final .home-cta:hover,
.home-page .home-final .home-cta:focus-visible {
  box-shadow:
    0 20px 42px rgba(18, 89, 104, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.home-final-title {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  max-width: 13ch;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--home-night-text);
  text-wrap: balance;
}

.home-final-copy p {
  color: var(--home-night-muted);
}

.home-moments {
  max-width: 44rem;
  margin-top: 26px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(89, 114, 122, 0.14);
}

.home-page .home-moments {
  max-width: 40rem;
  margin-top: 38px;
  margin-left: var(--home-coda-offset);
  padding-top: 28px;
}

.home-moments-label {
  margin: 0 0 16px;
  color: var(--home-text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-moments-intro {
  margin: 0 0 16px;
  max-width: 38rem;
  color: var(--home-text-soft);
  font-size: 0.98rem;
  line-height: 1.76;
  text-wrap: pretty;
}

.home-moments-list {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 52px;
}

.home-moments-list li {
  break-inside: avoid;
  margin: 0 0 10px;
}

.home-moment-link {
  display: inline-block;
  color: rgba(97, 91, 83, 0.92);
  font-size: 0.88rem;
  line-height: 1.55;
  border-bottom: 1px solid transparent;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.home-moment-link:hover,
.home-moment-link:focus-visible {
  color: #2f6672;
  border-color: rgba(56, 189, 248, 0.24);
  transform: translateX(2px);
}

@media (prefers-reduced-motion: no-preference) {
  .home-hero-copy-primary {
    animation: homeFadeUp 780ms cubic-bezier(0.2, 1, 0.28, 1) both;
  }

  .home-hero-copy-secondary {
    animation: homeFadeUp 840ms 80ms cubic-bezier(0.2, 1, 0.28, 1) both;
  }

  .home-hero-visual {
    animation: homeFadeSide 920ms 80ms cubic-bezier(0.2, 1, 0.28, 1) both;
  }

  @supports (animation-timeline: view()) {
    .home-section,
    .home-final,
    .home-moments {
      animation: homeSectionReveal linear both;
      animation-timeline: view();
      animation-range: entry 12% cover 30%;
    }
  }
}

@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homeFadeSide {
  from {
    opacity: 0;
    transform: translate3d(24px, 18px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes homeSectionReveal {
  from {
    opacity: 0.2;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .about-hero-shell {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 34px;
  }

  .about-hero-note {
    max-width: 28rem;
  }

  .home-hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "support";
    row-gap: 24px;
    align-content: start;
    align-items: start;
    padding-top: 28px;
  }

  .home-page .home-content {
    margin-top: 0;
    padding-top: 0;
  }

  .home-page .home-hero {
    padding-bottom: 0;
  }

  .home-page .home-hero-shell::after {
    display: none;
  }

  .home-page .home-content::before,
  .home-page .home-content::after,
  .home-page .home-section::before {
    display: none;
  }

  .home-section,
  .home-page .home-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-page .home-section {
    padding: 42px 0 46px;
  }

  .home-page .home-section-label {
    position: static;
    top: auto;
    padding: 8px 12px;
    backdrop-filter: none;
  }

  .home-feature-list-steps,
  .home-feature-list-points {
    grid-template-columns: 1fr;
  }

  .home-page .home-section-points .home-feature-list {
    grid-template-columns: 1fr;
  }

  .home-final,
  .home-page .home-final {
    grid-template-columns: 1fr;
    align-items: start;
    margin-top: 22px;
    margin-left: 0;
    width: auto;
  }

  .home-page .home-final .home-cta {
    justify-self: start;
    align-self: start;
    min-width: 0;
  }

  .home-page .home-moments {
    margin-left: 0;
    max-width: 44rem;
    margin-top: 26px;
    padding-top: 24px;
  }

  .home-moments-list {
    columns: 1;
  }

  .home-hero-visual {
    justify-self: stretch;
    width: 100%;
  }

  .home-hero-copy-secondary {
    max-width: none;
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid rgba(89, 114, 122, 0.14);
  }

  .home-section-steps .home-feature-list {
    gap: 18px;
  }

  .home-section-steps .home-feature-item {
    min-height: 56px;
    padding: 0 0 0 72px;
  }

  .home-section-steps .home-feature-item::before {
    top: 54px;
    left: 25px;
    right: auto;
    bottom: -18px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(89, 114, 122, 0.28) 0%, rgba(89, 114, 122, 0.06) 100%);
  }

  .home-section-steps .home-feature-item:last-child::before {
    bottom: 0;
  }

  .home-section-steps .home-feature-index {
    position: absolute;
    top: 0;
    left: 0;
  }

  .home-page .home-section-points .home-feature-item {
    padding-right: 0;
  }

  .home-testimonial-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 18px 18px;
    border-radius: 26px;
    width: 100%;
    justify-self: stretch;
  }

  .home-testimonial-item:nth-child(even),
  .home-testimonial-item:nth-child(odd),
  .home-testimonial-item:nth-child(3n) {
    width: 100%;
    justify-self: stretch;
  }

  .home-testimonial-quote {
    padding: 16px 0 0 30px;
    border-top: 1px solid rgba(89, 114, 122, 0.12);
  }

  .home-testimonial-quote::before {
    top: 8px;
    font-size: 3.2rem;
  }

  .home-section-story .home-section-content {
    padding-left: 18px;
  }

  .home-hero::after {
    inset: 44% auto auto 56%;
    width: min(62vw, 420px);
    height: min(46vw, 280px);
  }
}

@media (max-width: 640px) {
  .home-header-inner,
  .home-hero-shell,
  .home-content,
  .about-hero-shell {
    width: min(100% - 24px, 100%);
  }

  .home-header-inner {
    gap: 16px;
    padding: 14px 0 12px;
  }

  .home-header-nav {
    gap: 14px;
  }

  .home-header-link {
    font-size: 0.82rem;
  }

  .home-page {
    padding-bottom: 72px;
  }

  .about-page {
    padding-bottom: 72px;
  }

  .about-hero-shell {
    row-gap: 20px;
    padding-top: 18px;
    padding-bottom: 30px;
  }

  .about-hero-title {
    max-width: 11.5ch;
    font-size: clamp(2.18rem, 9.3vw, 3.36rem);
    line-height: 0.98;
  }

  .about-hero-standfirst {
    margin-top: 16px;
    max-width: 20rem;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .about-hero-body {
    gap: 12px;
    margin-top: 18px;
  }

  .about-hero-body p {
    font-size: 0.95rem;
    line-height: 1.74;
  }

  .about-hero-actions {
    margin-top: 20px;
  }

  .about-hero-note {
    padding: 20px 18px 22px;
    border-radius: 24px;
  }

  .about-note-item-title {
    font-size: 0.94rem;
  }

  .about-note-item-body {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .home-hero-shell {
    position: relative;
    row-gap: 20px;
    padding-top: 18px;
    padding-bottom: 34px;
  }

  .home-hero-copy {
    max-width: none;
  }

  .home-hero-copy-secondary {
    padding-top: 16px;
  }

  .home-kicker {
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .home-hero-title {
    max-width: 12.2ch;
    font-size: clamp(2.18rem, 9vw, 3.44rem);
    line-height: 1.01;
    letter-spacing: -0.028em;
  }

  .home-hero-standfirst {
    margin-top: 16px;
    max-width: 20rem;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .home-hero-body {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.74;
  }

  .home-hero-actions {
    margin-top: 18px;
    width: auto;
    max-width: none;
    gap: 12px;
  }

  .home-secondary-link {
    font-size: 0.84rem;
  }

  .home-cta {
    width: auto;
    min-width: 15.75rem;
    min-height: 54px;
    padding: 0 30px;
    font-weight: 680;
    background: linear-gradient(145deg, #9ceef6 0%, #6eddd2 100%);
    box-shadow:
      0 10px 24px rgba(29, 78, 97, 0.12),
      0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  }

  .home-trust {
    max-width: 15.75rem;
    font-size: 0.74rem;
    letter-spacing: 0.01em;
    line-height: 1.65;
  }

  .home-hero-visual {
    justify-self: stretch;
    width: 100%;
    margin-inline: auto;
  }

  .home-section-title {
    max-width: 14ch;
    font-size: clamp(1.54rem, 8vw, 2.1rem);
  }

  .home-section-intro {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.76;
  }

  .home-section {
    gap: 12px;
    padding: 30px 0 34px;
  }

  .home-page .home-section {
    padding: 34px 0 38px;
  }

  .home-section-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .home-page .home-section-label {
    gap: 8px;
    padding: 7px 11px;
  }

  .home-page .home-section-label::before {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 4px rgba(103, 232, 249, 0.08);
  }

  .home-section-link {
    margin-top: 18px;
    font-size: 0.86rem;
  }

  .home-section-content p,
  .home-final-copy p {
    line-height: 1.76;
  }

  .home-feature-list {
    margin-top: 18px;
    gap: 14px;
  }

  .home-feature-item {
    gap: 6px;
    padding-top: 14px;
  }

  p.home-feature-item-title {
    font-size: 0.98rem;
  }

  p.home-feature-item-body,
  .home-moments-intro {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .home-section-steps .home-feature-item {
    padding-left: 64px;
  }

  .home-section-steps .home-feature-item::before {
    left: 23px;
  }

  .home-feature-index {
    width: 48px;
    height: 48px;
    font-size: 0.74rem;
  }

  .home-testimonial-list {
    margin-top: 24px;
    gap: 14px;
  }

  .home-testimonial-avatar {
    width: 54px;
    height: 54px;
    box-shadow:
      0 12px 22px rgba(39, 54, 67, 0.08),
      0 0 0 5px rgba(255, 255, 255, 0.44);
  }

  .home-testimonial-avatar-fallback {
    padding: 0 7px 7px 0;
    font-size: 0.52rem;
  }

  p.home-testimonial-name {
    font-size: 0.96rem;
  }

  p.home-testimonial-context {
    font-size: 0.68rem;
  }

  .home-testimonial-quote {
    padding-left: 26px;
  }

  .home-testimonial-quote::before {
    top: 10px;
    font-size: 2.8rem;
  }

  .home-testimonial-quote p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .home-section-content p + p,
  .home-final-copy p + p {
    margin-top: 14px;
  }

  .home-final {
    gap: 16px;
    margin-top: 10px;
    padding: 32px 18px 24px;
    border-radius: 26px;
  }

  .home-final-copy {
    max-width: 18rem;
  }

  .home-final-title {
    margin-bottom: 10px;
    max-width: 10ch;
    font-size: clamp(1.95rem, 10vw, 2.6rem);
    line-height: 0.96;
  }

  .home-final-copy p {
    max-width: 16rem;
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .home-final .home-cta {
    width: 100%;
    max-width: 18rem;
    min-height: 56px;
  }

  .home-moments {
    max-width: none;
    margin-top: 14px;
    padding-top: 18px;
  }

  .home-moments-label {
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .home-moments-intro {
    margin-bottom: 14px;
  }

  .home-moments-list {
    display: grid;
    gap: 0;
    max-width: 19rem;
  }

  .home-moments-list li {
    margin: 0;
  }

  .home-moments-list li + li {
    padding-top: 9px;
    border-top: 1px solid rgba(89, 107, 117, 0.12);
  }

  .home-moment-link {
    display: block;
    padding: 7px 0 8px;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .hero-visual-frame {
    padding: 10px;
    border-radius: 26px;
  }

  .hero-visual-slides {
    aspect-ratio: 5 / 4;
  }

  .hero-visual-picture {
    aspect-ratio: 5 / 4;
  }

  .hero-visual-picture-slide {
    aspect-ratio: auto;
  }

  .hero-visual-controls {
    padding: 0 12px;
  }

  .hero-visual-control {
    width: 32px;
    height: 32px;
    font-size: 1.28rem;
  }

  .hero-visual-indicators {
    bottom: 16px;
    gap: 6px;
  }

  .home-hero-body,
  .home-section-content,
  .home-moments-intro {
    max-width: none;
  }
}

@media (max-width: 380px) {
  .home-hero-shell,
  .home-content,
  .home-header-inner,
  .about-hero-shell {
    width: min(100% - 20px, 100%);
  }

  .about-hero-title {
    font-size: clamp(2rem, 11.5vw, 3rem);
  }

  .home-hero-title {
    font-size: clamp(2.1rem, 11.8vw, 3.08rem);
    line-height: 1.02;
  }

  .home-final-copy,
  .home-final .home-cta,
  .home-moments-list {
    max-width: 16.5rem;
  }

  .home-final {
    padding: 28px 16px 22px;
  }

  .home-section {
    padding: 28px 0 30px;
  }

  .home-section-content p + p,
  .home-final-copy p + p {
    margin-top: 12px;
  }

  .home-final-title {
    font-size: clamp(1.82rem, 10.5vw, 2.3rem);
  }

  .home-final-copy p,
  .home-moment-link,
  p.home-feature-item-body,
  .home-moments-intro {
    font-size: 0.8rem;
  }

  .home-testimonial-item {
    padding: 18px 14px 16px;
    border-radius: 22px;
  }

  .home-testimonial-person {
    gap: 12px;
  }

  .home-testimonial-avatar {
    width: 46px;
    height: 46px;
    box-shadow:
      0 10px 18px rgba(39, 54, 67, 0.08),
      0 0 0 4px rgba(255, 255, 255, 0.42);
  }

  .home-testimonial-avatar-fallback {
    padding: 0 6px 6px 0;
    font-size: 0.46rem;
  }

  p.home-testimonial-name {
    font-size: 0.9rem;
  }

  p.home-testimonial-context {
    font-size: 0.64rem;
  }

  .home-testimonial-quote {
    padding-top: 14px;
    padding-left: 22px;
  }

  .home-testimonial-quote::before {
    top: 10px;
    font-size: 2.4rem;
  }

  .home-testimonial-quote p {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .home-hero-body,
  .home-hero-actions,
  .home-trust {
    max-width: 16.5rem;
  }

  .home-section-title {
    font-size: clamp(1.42rem, 8.6vw, 1.9rem);
  }

  .home-hero-visual {
    width: 100%;
  }
}
