:root {
  --sos-primary: #054432;
  --sos-primary-dark: #004d40;
  --sos-accent: #f2994a;
  --sos-surface: #f4f9f8;
  --sos-surface-alt: #e0f2f1;
  --sos-body: #4f4f4f;
  --sos-heading: #054432;
  --sos-white: #ffffff;
  --sos-shadow: 0 18px 45px rgba(5, 68, 50, 0.08);
  --sos-radius-lg: 1.5rem;
  --sos-radius-md: 1rem;
  --sos-max: 72rem;
  --sos-max-nav: 84rem;
  --sos-font-body: 'Inter', system-ui, sans-serif;
  --sos-font-display: 'Syne', 'Inter', system-ui, sans-serif;
  --sos-wave-green: #c9eadc;
  --sos-wave-blue: #c5e2f2;
  --sos-wave-orange: #fadcb8;
  --sos-wave-base: #eef3f9;
  --sos-glass-bg: rgba(255, 255, 255, 0.52);
  --sos-glass-bg-soft: rgba(255, 255, 255, 0.38);
  --sos-glass-border: rgba(255, 255, 255, 0.78);
  --sos-glass-blur: 18px;
  --sos-glass-shadow: 0 18px 45px rgba(5, 68, 50, 0.08);
  --sos-nav-glass-bg: var(--sos-glass-bg);
  --sos-nav-glass-border: var(--sos-glass-border);
  --sos-nav-glass-blur: var(--sos-glass-blur);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sos-font-body);
  color: var(--sos-body);
  background-color: var(--sos-wave-base);
  line-height: 1.6;
  min-height: 100%;
  overflow-x: hidden;
}

@supports (overflow-x: clip) {
  body {
    overflow-x: clip;
  }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    -45deg,
    var(--sos-wave-green),
    var(--sos-wave-blue),
    var(--sos-wave-orange),
    var(--sos-wave-base)
  );
  background-size: 400% 400%;
  animation: sos-hero-wave 14s ease infinite;
}

h1,
h2,
h3,
h4 {
  font-family: var(--sos-font-display);
  color: var(--sos-heading);
  line-height: 1.15;
}

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

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

.sos-container {
  width: min(100% - max(2rem, env(safe-area-inset-left, 0px) + env(safe-area-inset-right, 0px)), var(--sos-max));
  margin-inline: auto;
}

.sos-section {
  padding: 5rem 0;
  background: transparent;
}

.sos-section--muted,
.sos-section--alt {
  background: transparent;
}

/* Homepage manifesto — wave background, 6-line quote + eyebrow, reference palette */
.manifesto {
  --manifesto-forest: #0d3d2c;
  --manifesto-orange: #ff7300;
  --manifesto-teal: #00a896;
  --manifesto-blue: #0056b3;

  padding: 0;
  padding-block: clamp(4.5rem, 11vw, 7.75rem);
  background: transparent;
  /* Single-axis hidden + visible on a descendant forces overflow-y:auto (scrollbar). Clip here instead. */
  overflow: hidden;
}

.manifesto__inner {
  max-width: min(56rem, 100%);
  margin-inline: auto;
  padding-inline: 0.5rem;
  text-align: center;
}

.manifesto__eyebrow {
  margin: 0 0 clamp(1.25rem, 3vw, 1.85rem);
  font-family: var(--sos-font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--manifesto-orange);
}

.manifesto__quote {
  margin: 0;
  font-family: var(--sos-font-display);
  font-size: clamp(1.2rem, 3.15vw, 2.625rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--manifesto-forest);
}

.manifesto__line {
  display: block;
  margin-inline: auto;
  max-width: 100%;
  white-space: normal;
}

.manifesto__accent--orange {
  color: var(--manifesto-orange);
  font-weight: 800;
}

.manifesto__accent--gradient {
  font-weight: 800;
  background: linear-gradient(
    90deg,
    var(--manifesto-teal) 0%,
    #008aad 48%,
    var(--manifesto-blue) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sos-glass-surface {
  background: var(--sos-glass-bg);
  backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  border: 1px solid var(--sos-glass-border);
  box-shadow:
    var(--sos-glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.sos-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sos-accent);
}

.sos-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 1rem;
}

.sos-title--left {
  text-align: left;
}

.sos-subtitle {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
}

.sos-accent {
  color: var(--sos-accent);
}

.sos-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sos-btn:hover {
  transform: translateY(-1px);
}

.sos-btn--primary {
  background: var(--sos-accent);
  color: var(--sos-white);
  box-shadow: 0 10px 24px rgba(242, 153, 74, 0.35);
}

.sos-btn--secondary {
  background: var(--sos-primary);
  color: var(--sos-white);
}

.sos-btn--outline {
  background: transparent;
  color: var(--sos-primary);
  border-color: var(--sos-primary);
}

.sos-card {
  background: var(--sos-glass-bg);
  backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  border: 1px solid var(--sos-glass-border);
  border-radius: var(--sos-radius-lg);
  box-shadow:
    var(--sos-glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  padding: 2rem;
}

.sos-card--soft {
  background: var(--sos-glass-bg-soft);
  box-shadow:
    0 12px 30px rgba(5, 68, 50, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.sos-grid-2 {
  display: grid;
  gap: 2rem;
}

.sos-grid-3 {
  display: grid;
  gap: 2rem;
}

.sos-grid-4 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sos-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .sos-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.deep-link-banner {
  background: var(--sos-primary-dark);
  color: var(--sos-white);
}

.deep-link-banner[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0 0.5rem;
  background: transparent;
  pointer-events: none;
}

.site-header .sos-container {
  pointer-events: auto;
  width: min(
    100% - max(1.25rem, env(safe-area-inset-left, 0px) + env(safe-area-inset-right, 0px)),
    var(--sos-max-nav)
  );
}

.site-header .site-brand {
  font-family: var(--sos-font-display);
  font-weight: 700;
  font-size: 1.45rem;
  gap: 1rem;
}

.site-header .site-brand img {
  width: 2.65rem;
  height: 2.65rem;
}

.site-header__pill {
  background: var(--sos-nav-glass-bg);
  backdrop-filter: blur(var(--sos-nav-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-nav-glass-blur)) saturate(165%);
  border-radius: 999px;
  box-shadow:
    0 18px 45px rgba(5, 68, 50, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  border: 1px solid var(--sos-nav-glass-border);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding: 0.75rem 1.35rem 0.75rem 1.65rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--sos-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--sos-primary);
  justify-self: start;
}

.site-brand img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.site-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(1.35rem, 2.8vw, 3rem);
}

.site-nav a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--sos-primary);
  white-space: nowrap;
}

.site-nav a.active {
  font-weight: 600;
}

.site-nav a.active::before {
  content: '•';
  margin-right: 0.35rem;
}

.site-nav a:hover {
  color: var(--sos-accent);
}

.site-header__actions {
  display: none;
  align-items: center;
  justify-self: end;
}

.site-header__actions .sos-btn {
  min-height: 2.85rem;
  padding: 0.4rem 0.45rem 0.4rem 1.35rem;
  font-size: 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--sos-primary-dark);
  color: var(--sos-white);
  box-shadow: none;
  gap: 0.85rem;
}

.site-header__actions .sos-btn::after {
  content: '→';
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: var(--sos-white);
  color: var(--sos-primary-dark);
  font-size: 0.95rem;
  line-height: 1;
}

.site-header__actions .sos-btn:hover {
  transform: none;
  background: var(--sos-primary);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--sos-nav-glass-border);
  border-radius: 999px;
  background: var(--sos-nav-glass-bg);
  backdrop-filter: blur(var(--sos-nav-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-nav-glass-blur)) saturate(165%);
  color: var(--sos-primary);
  justify-self: end;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.75rem;
  padding: 0.85rem 1.15rem 1rem;
  background: var(--sos-nav-glass-bg);
  backdrop-filter: blur(var(--sos-nav-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-nav-glass-blur)) saturate(165%);
  border-radius: 1.25rem;
  box-shadow:
    0 18px 45px rgba(5, 68, 50, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  border: 1px solid var(--sos-nav-glass-border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(5, 68, 50, 0.08);
  color: var(--sos-primary);
  font-weight: 500;
}

@media (min-width: 1024px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1.25rem 2rem;
    padding: 0.85rem 2rem 0.85rem 2.15rem;
  }

  .site-nav,
  .site-header__actions {
    display: flex;
  }

  .site-nav {
    grid-column: 2;
    grid-row: 1;
  }

  .site-header__actions {
    grid-column: 3;
    grid-row: 1;
  }

  .site-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

@keyframes sos-hero-wave {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-backdrop {
  --hero-pleat-period: 2.25rem;
  --hero-pleat-light: #ffffff;
  --hero-pleat-mid: #eceef1;
  --hero-pleat-shadow: #d7d9de;
  --hero-pleat-highlight: #f7f8fa;
  --hero-pleat-fade-top: 14%;
  --hero-pleat-fade-bottom: 18%;
  --hero-backdrop-header-overlap: 5.75rem;
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.hero-backdrop::before {
  content: '';
  position: absolute;
  top: calc(-1 * var(--hero-backdrop-header-overlap));
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.34) 0%,
      rgba(255, 255, 255, 0.1) 34%,
      rgba(255, 255, 255, 0.2) 68%,
      rgba(246, 248, 251, 0.46) 100%
    ),
    repeating-linear-gradient(
      90deg,
      var(--hero-pleat-light) 0,
      var(--hero-pleat-mid) calc(var(--hero-pleat-period) * 0.34),
      var(--hero-pleat-shadow) calc(var(--hero-pleat-period) * 0.5),
      var(--hero-pleat-highlight) calc(var(--hero-pleat-period) * 0.72),
      var(--hero-pleat-light) var(--hero-pleat-period)
    );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.22) calc(var(--hero-pleat-fade-top) * 0.45),
    #000 var(--hero-pleat-fade-top),
    #000 calc(100% - var(--hero-pleat-fade-bottom)),
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.22) calc(var(--hero-pleat-fade-top) * 0.45),
    #000 var(--hero-pleat-fade-top),
    #000 calc(100% - var(--hero-pleat-fade-bottom)),
    transparent 100%
  );
}

.hero-backdrop::after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--hero-backdrop-header-overlap));
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.22) calc(var(--hero-pleat-fade-top) * 0.45),
    #000 var(--hero-pleat-fade-top),
    #000 calc(100% - var(--hero-pleat-fade-bottom)),
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.22) calc(var(--hero-pleat-fade-top) * 0.45),
    #000 var(--hero-pleat-fade-top),
    #000 calc(100% - var(--hero-pleat-fade-bottom)),
    transparent 100%
  );
}

.hero-backdrop > .hero-shell {
  position: relative;
  z-index: 1;
}

.hero-shell {
  position: relative;
  overflow: visible;
  background: transparent;
}

.hero {
  position: relative;
  z-index: 1;
  padding: clamp(2.75rem, 7vw, 4.5rem) 0 clamp(3.25rem, 9vw, 5rem);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  display: grid;
  gap: 1.5rem;
  align-content: center;
  max-width: 38rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin: 0;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--sos-glass-border);
  border-radius: 999px;
  background: var(--sos-glass-bg);
  backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  color: var(--sos-primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow:
    var(--sos-glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.hero__badge-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.hero__title {
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero__title-line {
  display: block;
}

.hero__title-line--social {
  background: linear-gradient(180deg, #0b5a43 0%, #1f9d6c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__title-line--private {
  background: linear-gradient(180deg, #1f9d6c 0%, #2ec4d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__copy {
  margin: 0;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(79, 79, 79, 0.92);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__btn {
  min-height: 3.1rem;
  padding-inline: 1.35rem;
}

.hero__btn-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.hero__btn--demo {
  background: var(--sos-glass-bg);
  backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  color: var(--sos-primary);
  border: 1px solid var(--sos-glass-border);
  box-shadow:
    var(--sos-glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.hero__btn--demo:hover {
  background: rgba(255, 255, 255, 0.68);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(5, 68, 50, 0.72);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero__trust-icon {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--sos-glass-bg-soft);
  border: 1px solid var(--sos-glass-border);
  color: var(--sos-primary);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.hero__mockup {
  margin: 0 auto;
  justify-self: center;
  width: min(100%, 17.5rem);
  max-width: 100%;
  transform: translate(0, 0.35rem);
  filter: drop-shadow(0 24px 48px rgba(5, 68, 50, 0.16));
}

@media (min-width: 960px) {
  .hero__mockup {
    margin: 0;
    justify-self: start;
    transform: translate(8.35rem, 1rem);
  }
}

.phone-device {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 18.5;
  padding: 0.32rem;
  border-radius: 2.15rem;
  background: linear-gradient(155deg, #4b5563 0%, #111827 42%, #0f172a 100%);
  box-shadow:
    0 28px 60px rgba(5, 68, 50, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-device__shell {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.phone-device__button {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.phone-device__button--silent {
  top: 6.5rem;
  left: -0.18rem;
  width: 0.18rem;
  height: 1.35rem;
}

.phone-device__button--volume {
  top: 8.5rem;
  left: -0.18rem;
  width: 0.18rem;
  height: 2.2rem;
}

.phone-device__button--power {
  top: 7.5rem;
  right: -0.18rem;
  width: 0.18rem;
  height: 2.6rem;
}

.phone-device__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 1.75rem;
  background: #f7faf9;
}

.phone-device__viewport {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #eef6f3;
}

.phone-device__track {
  display: flex;
  flex-direction: column;
  height: 100%;
  will-change: transform;
}

.phone-device__slide {
  flex: 0 0 100%;
  min-height: 100%;
}

.phone-device__slide--screenshot {
  display: flex;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #eef6f3;
}

.phone-device__screenshot-img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
}

.phone-device__slide--panel {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 1.1rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(41, 156, 122, 0.18), transparent 42%),
    linear-gradient(180deg, #f7faf9 0%, #e8f3ef 100%);
}

.phone-device__panel {
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  text-align: center;
}

.phone-device__panel-eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sos-primary);
}

.phone-device__panel-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  background: rgba(5, 68, 50, 0.1);
  font-size: 1.15rem;
}

.phone-device__panel-title {
  margin: 0;
  font-family: var(--sos-font-display);
  font-size: 1.15rem;
  color: var(--sos-heading);
}

.phone-device__panel-copy {
  margin: 0;
  max-width: 12.5rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--sos-body);
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.phone-story-rail {
  display: none;
}

.phone-story-rail__frame {
  margin: 0;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(5, 68, 50, 0.18));
}

@media (min-width: 1024px) {
  .phone-story-rail {
    position: fixed;
    top: 50%;
    right: clamp(4.5rem, calc((100vw - var(--sos-max)) / 2 + 4.25rem), 10.5rem);
    width: min(17.5rem, 30vw);
    transform: translate3d(var(--phone-offset-x, 0px), calc(-50% + 1.75rem + var(--phone-offset-y, 0px)), 0) scale(var(--phone-scale, 1)) rotate(var(--phone-rotate, 0deg));
    transform-origin: center center;
    transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), opacity 400ms ease;
    opacity: var(--phone-opacity, 1);
    z-index: 12;
    pointer-events: none;
  }

  html.phone-scroll-enabled .phone-story-rail:not([hidden]) {
    display: block;
  }

  html.phone-scroll-enabled .hero__mockup--inline {
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
    background-position: 0% 50%;
  }

  .phone-story-rail {
    transition: none;
  }
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: rgba(242, 153, 74, 0.15);
  color: var(--sos-accent);
  margin-bottom: 1rem;
}

.feature-icon--rose {
  background: rgba(255, 182, 193, 0.35);
  color: #c2415c;
}

.feature-icon--mint {
  background: rgba(224, 242, 241, 0.95);
  color: var(--sos-primary);
}

.why-story__header {
  text-align: center;
  width: 100%;
  margin: 0 auto 3rem;
}

.why-story__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--sos-font-display);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--sos-primary);
  margin: 0 auto 1rem;
  text-align: center;
}

.why-story__title-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  white-space: nowrap;
}

.why-story__title-accent {
  color: var(--sos-accent);
  white-space: nowrap;
}

.why-story__intro {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #6b7280;
}

.why-story__cards {
  margin-bottom: 3rem;
}

.why-story__card {
  border-radius: var(--sos-radius-lg);
  padding: 2rem;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
}

.why-story__card--light {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 20px 48px rgba(5, 68, 50, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(5, 68, 50, 0.04);
}

.why-story__card--dark {
  background: #0e2320;
  border-color: rgba(88, 196, 168, 0.28);
  box-shadow: 0 14px 36px rgba(2, 18, 14, 0.45);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.why-story__card h3 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  color: var(--sos-primary);
}

.why-story__card p {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.65;
}

.why-story__card--dark h3 {
  color: #43f0a6;
}

.why-story__card--dark p {
  color: rgba(224, 242, 236, 0.72);
}

.why-story__card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}

.why-story__card-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.why-story__card-icon--rose {
  background: rgba(251, 191, 204, 0.9);
  color: #b4234f;
}

.why-story__card-icon--mint {
  background: rgba(67, 240, 166, 0.14);
  color: #58e8b0;
  box-shadow:
    0 0 0 1px rgba(67, 240, 166, 0.25),
    0 0 24px rgba(67, 240, 166, 0.2);
}

.why-story__split {
  align-items: center;
}

.why-story__seeks {
  display: grid;
  gap: 1.15rem;
}

.why-story__seek {
  width: min(100%, 30rem);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  border: 1px solid var(--sos-glass-border);
  border-radius: 999px;
  padding: 1.15rem 1.5rem;
  box-shadow:
    0 12px 30px rgba(5, 68, 50, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.why-story__seek:nth-child(1),
.why-story__seek:nth-child(3) {
  justify-self: start;
}

.why-story__seek:nth-child(2) {
  justify-self: end;
}

.why-story__seek--alt {
  background: rgba(214, 244, 235, 0.82);
}

.why-story__seek-text {
  margin: 0 0 0.35rem;
  font-family: var(--sos-font-display);
  font-weight: 700;
  color: var(--sos-primary);
  font-size: 1.05rem;
  line-height: 1.45;
}

.why-story__seek-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.why-story__seek-meta-icon {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
  flex-shrink: 0;
}

.why-story__headline {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.05;
}

.why-story__headline-line {
  display: block;
  color: var(--sos-primary);
}

.why-story__headline-accent {
  display: block;
  background: linear-gradient(90deg, #2ec4d9 0%, #2dd4a6 48%, #1f9d6c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-story__copy-lead {
  margin: 0 0 1.75rem;
  color: #6b7280;
  font-size: 1.05rem;
  max-width: 34rem;
}

.why-story__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.35rem;
}

.why-story__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
}

.why-story__feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(31, 157, 108, 0.12);
  color: #1f9d6c;
}

.why-story__feature-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.why-story__feature-copy {
  display: grid;
  gap: 0.2rem;
}

.why-story__feature-copy strong {
  font-family: var(--sos-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f9d6c;
}

.why-story__feature-copy span {
  color: #6b7280;
  font-size: 0.98rem;
}

@media (min-width: 768px) {
  .why-story__copy {
    padding-left: 1rem;
  }
}

@media (max-width: 639px) {
  .why-story__header {
    margin: 0 auto 1.75rem;
  }

  .why-story__title {
    font-size: clamp(1.4rem, 6.2vw, 2.65rem);
  }

  .why-story__intro {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .why-story__cards {
    margin-bottom: 2rem;
  }

  .why-story__card {
    padding: 1.35rem 1.1rem;
  }

  .why-story__card h3 {
    font-size: 1.25rem;
  }

  .why-story__seek {
    width: 100%;
    max-width: none;
    padding: 0.9rem 1.1rem;
    border-radius: 1.15rem;
  }

  .why-story__seek:nth-child(1),
  .why-story__seek:nth-child(2),
  .why-story__seek:nth-child(3) {
    justify-self: stretch;
  }

  .why-story__seek-text {
    font-size: 0.98rem;
  }

  .why-story__headline {
    font-size: clamp(1.3rem, 5.5vw, 2.2rem);
  }

  .why-story__copy-lead {
    font-size: 0.98rem;
  }

  .why-story__feature {
    gap: 0.75rem;
  }

  .why-story__feature-icon {
    width: 2.65rem;
    height: 2.65rem;
  }
}

.conversation-panel {
  min-height: 18rem;
  border-radius: var(--sos-radius-lg);
  background: var(--sos-glass-bg-soft);
  backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  border: 1px solid var(--sos-glass-border);
  box-shadow:
    var(--sos-glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  align-content: center;
}

.chat-bubble {
  max-width: 85%;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: var(--sos-glass-bg);
  backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  border: 1px solid var(--sos-glass-border);
  box-shadow:
    0 10px 24px rgba(5, 68, 50, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.chat-bubble__author {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sos-primary);
  margin-bottom: 0.35rem;
}

.chat-bubble--right {
  justify-self: end;
  background: rgba(255, 255, 255, 0.44);
}

/* See it — expanding horizontal image panels (accordion-style flex) */
.see-expand {
  width: 100%;
  max-width: min(100%, 76rem);
  margin: 0 auto 0.5rem;
}

.see-expand__row {
  display: flex;
  gap: 0.45rem;
  align-items: stretch;
  min-height: min(46vh, 19rem);
  max-height: min(56vh, 30rem);
}

@media (min-width: 768px) {
  .see-expand__row {
    min-height: min(48vh, 22rem);
    max-height: min(54vh, 32rem);
    gap: 0.55rem;
  }
}

.see-expand__panel {
  position: relative;
  flex: 1 1 0;
  min-width: 2.65rem;
  border: none;
  padding: 0;
  border-radius: 1.05rem;
  cursor: pointer;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.12);
  box-shadow:
    0 14px 36px rgba(5, 68, 50, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition:
    flex-grow 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    min-width 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.see-expand__panel.is-active {
  flex-grow: 5;
  z-index: 2;
  box-shadow:
    0 22px 52px rgba(5, 68, 50, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.see-expand__panel:focus-visible {
  outline: 2px solid var(--sos-accent);
  outline-offset: 3px;
}

@media (max-width: 599px) {
  .see-expand__panel.is-active {
    flex-grow: 3.25;
  }

  .see-expand__panel {
    min-width: 2.35rem;
  }
}

/* Scroll portrait screenshots when a panel is expanded (collapsed panels stay cropped thumbnails). */
.see-expand__scroll {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.see-expand__panel.is-active .see-expand__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.see-expand__panel.is-active .see-expand__scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.see-expand__panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.see-expand__panel.is-active img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center top;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .see-expand__panel,
  .see-expand__panel img {
    transition-duration: 0.01ms;
  }
}

.see-expand__strip {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 0.5rem;
  font-family: var(--sos-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.see-expand__panel:not(.is-active) .see-expand__strip {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  left: auto;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.2rem;
  font-size: 0.65rem;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.42));
}

.media-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .media-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.media-actions__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: var(--sos-glass-bg);
  backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  border: 1px solid var(--sos-glass-border);
  color: var(--sos-primary);
  font-weight: 600;
  box-shadow:
    0 10px 24px rgba(5, 68, 50, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.media-actions__icon {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(5, 68, 50, 0.08);
}

.expertise-story__header {
  text-align: center;
  width: 100%;
  margin: 0 auto 3rem;
}

.expertise-story__title {
  font-family: var(--sos-font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--sos-primary);
  margin: 0 0 1rem;
}

.expertise-story__intro {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #6b7280;
}

.expertise-story__cards {
  align-items: stretch;
}

.expertise-story__card {
  border-radius: var(--sos-radius-lg);
  padding: 2.25rem;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
}

.expertise-story__card--light {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 20px 48px rgba(5, 68, 50, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(5, 68, 50, 0.04);
  text-align: center;
}

.expertise-story__card--dark {
  background: #0e2320;
  border-color: rgba(88, 196, 168, 0.28);
  box-shadow: 0 14px 36px rgba(2, 18, 14, 0.45);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: left;
}

.expertise-story__card h3 {
  font-size: 1.5rem;
  margin: 0 0 0.85rem;
  color: var(--sos-primary);
}

.expertise-story__card p {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.65;
}

.expertise-story__card--dark h3 {
  color: #43f0a6;
}

.expertise-story__card--dark p {
  color: rgba(224, 242, 236, 0.72);
}

.expertise-story__card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}

.expertise-story__card--light .expertise-story__card-icon {
  margin-inline: auto;
}

.expertise-story__card-icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.expertise-story__card-icon--medal {
  background: rgba(255, 214, 153, 0.9);
  color: #e67e22;
}

.expertise-story__card-icon--shield {
  background: rgba(46, 196, 217, 0.16);
  color: #2ec4d9;
  box-shadow:
    0 0 0 1px rgba(46, 196, 217, 0.28),
    0 0 24px rgba(46, 196, 217, 0.18);
}

.expertise-story__tags {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.expertise-story__tags li {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(31, 157, 108, 0.12);
  color: var(--sos-primary);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Homepage dual-row review marquee (above FAQ) */
.sos-section.reviews-marquee {
  overflow-x: hidden;
}

@supports (overflow-x: clip) {
  .sos-section.reviews-marquee {
    overflow-x: clip;
  }
}

.reviews-marquee__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.reviews-marquee__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0b5cab;
}

.reviews-marquee__title {
  margin: 0;
  font-size: clamp(1.05rem, 0.45vw + 0.92rem, 1.42rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--sos-heading);
}

@media (min-width: 720px) {
  .reviews-marquee__title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.reviews-marquee__sub {
  margin: 0.65rem 0 0;
  max-width: 36rem;
  color: var(--sos-body);
  font-size: 0.95rem;
  line-height: 1.5;
}

.reviews-marquee__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.reviews-marquee__arrows {
  display: flex;
  gap: 0.5rem;
}

.reviews-marquee__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(5, 68, 50, 0.22);
  background: var(--sos-white);
  color: var(--sos-primary);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.reviews-marquee__arrow:hover {
  background: var(--sos-surface);
  border-color: var(--sos-primary);
}

.reviews-marquee__arrow:active {
  transform: scale(0.96);
}

.reviews-marquee__viewport {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-inline: calc(-1 * max(0px, (100vw - min(100vw - 2rem, var(--sos-max))) / 2));
  padding-inline: max(1rem, (100vw - min(100vw - 2rem, var(--sos-max))) / 2);
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 3%,
    #000 97%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 3%,
    #000 97%,
    transparent
  );
}

.reviews-marquee__row {
  overflow: hidden;
  width: 100%;
}

.reviews-marquee__track {
  display: flex;
  width: max-content;
  animation: reviews-marquee-scroll 24s linear infinite;
  will-change: transform;
}

.reviews-marquee__row--reverse .reviews-marquee__track {
  animation-direction: reverse;
}

.reviews-marquee:hover .reviews-marquee__track {
  animation-play-state: paused;
}

@keyframes reviews-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.reviews-marquee__group {
  display: flex;
  flex-shrink: 0;
  gap: 1.25rem;
  align-items: stretch;
  padding-inline: 0.35rem;
}

.reviews-marquee__card {
  flex: 0 0 min(23.5rem, 86vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1.35rem 1.15rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 2px 8px rgba(15, 23, 42, 0.05),
    0 14px 36px rgba(5, 68, 50, 0.07);
}

.reviews-marquee__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.reviews-marquee__stars {
  flex-shrink: 0;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #f4b000;
}

.reviews-marquee__date {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.45);
  white-space: nowrap;
}

.reviews-marquee__quote {
  flex: 1 1 auto;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.9);
}

.reviews-marquee__meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem 0.85rem;
  align-items: center;
  margin-top: auto;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.reviews-marquee__avatar {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--sos-primary);
  background: rgba(5, 68, 50, 0.08);
  border: 1px solid rgba(5, 68, 50, 0.1);
}

.reviews-marquee__who {
  min-width: 0;
}

.reviews-marquee__name {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--sos-heading);
}

.reviews-marquee__source {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.22rem 0.5rem;
  border-radius: 0.35rem;
  background: rgba(15, 23, 42, 0.05);
  color: rgba(15, 23, 42, 0.52);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .reviews-marquee__header {
    grid-template-columns: 1fr;
  }

  .reviews-marquee__actions {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee__track {
    animation: none;
    transform: none;
  }

  .reviews-marquee__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .reviews-marquee__row {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .reviews-marquee__row::-webkit-scrollbar {
    display: none;
  }

  .reviews-marquee__card {
    scroll-snap-align: start;
  }
}

.how-it-story__header {
  text-align: center;
  margin: 0 auto 2.75rem;
}

.how-it-story__title {
  font-family: var(--sos-font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--sos-primary);
  margin: 0;
}

.how-it-story__subtitle {
  margin: 0.75rem auto 0;
  max-width: 42rem;
  text-align: center;
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  line-height: 1.5;
  font-weight: 500;
  color: #4b5563;
}

.how-it-story__grid {
  display: grid;
  gap: 1.75rem;
  align-items: stretch;
}

.how-it-story__card {
  border-radius: var(--sos-radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  background: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 20px 48px rgba(5, 68, 50, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(5, 68, 50, 0.04);
}

.how-it-story__card h3 {
  font-size: 1.65rem;
  margin: 0 0 0.75rem;
}

.how-it-story__card--seek h3 {
  color: var(--sos-primary);
}

.how-it-story__card--solve h3 {
  color: #0d9488;
}

.how-it-story__card--say h3 {
  color: var(--sos-primary);
}

.how-it-story__lead {
  margin: 0 0 1.25rem;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
}

.how-it-story__card-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.how-it-story__card-icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.how-it-story__card-icon--seek {
  background: rgba(242, 153, 74, 0.22);
  color: #ea580c;
}

.how-it-story__card-icon--solve {
  background: rgba(45, 212, 191, 0.22);
  color: #0d9488;
}

.how-it-story__card-icon--say {
  background: rgba(31, 157, 108, 0.18);
  color: var(--sos-primary);
}

.how-it-story__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.how-it-story__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
}

.how-it-story__bullets li::before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--sos-accent);
  flex-shrink: 0;
}

.how-it-story__card--solve .how-it-story__bullets li::before {
  background: #14b8a6;
}

.how-it-story__card--say .how-it-story__bullets li::before {
  background: var(--sos-primary);
}

@media (min-width: 900px) and (max-width: 1023px) {
  .how-it-story__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* Large screens: Seek / Solve / Say in one horizontal row */
@media (min-width: 1024px) {
  .how-it-story__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 899px) {
  .how-it-story__bullets li {
    justify-content: center;
  }
}

/* Seek product detail (plain grid on wave + radar visual) */
.seek-detail__grid {
  align-items: center;
}

.seek-detail__copy {
  text-align: left;
}

.seek-detail__title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1rem;
  font-family: var(--sos-font-display);
  font-size: clamp(1.05rem, 2.85vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.seek-detail__title-mark {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  background: rgba(242, 153, 74, 0.22);
  color: #ea580c;
}

.seek-detail__title-mark svg {
  width: 1.5rem;
  height: 1.5rem;
}

.seek-detail__title-text {
  color: var(--sos-accent);
  white-space: nowrap;
}

.seek-detail__intro {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.65;
}

.seek-detail__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.35rem;
}

.seek-detail__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.seek-detail__feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(167, 243, 208, 0.65);
  border: 1px solid rgba(31, 157, 108, 0.22);
  color: var(--sos-primary);
}

.seek-detail__feature-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.seek-detail__feature-body {
  display: grid;
  gap: 0.25rem;
}

.seek-detail__feature-body strong {
  font-family: var(--sos-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sos-primary);
}

.seek-detail__feature-body span {
  color: #6b7280;
  font-size: 0.98rem;
  line-height: 1.55;
}

.seek-detail__visual {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.seek-detail__radar {
  position: relative;
  width: min(100%, 20rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.seek-detail__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(15, 80, 60, 0.12);
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.seek-detail__ring--outer {
  width: 100%;
  height: 100%;
}

.seek-detail__ring--inner {
  width: 72%;
  height: 72%;
}

.seek-detail__pin-core {
  position: relative;
  z-index: 1;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(204, 251, 241, 0.95);
  border: 1px solid rgba(31, 157, 108, 0.18);
  box-shadow: 0 12px 28px rgba(5, 68, 50, 0.1);
}

.seek-detail__pin-icon {
  width: 52%;
  height: 52%;
  color: var(--sos-primary);
}

.seek-detail__badge {
  position: absolute;
  top: 6%;
  right: 2%;
  z-index: 2;
  margin: 0;
  padding: 0.45rem 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sos-accent);
  background: #fff;
  border: 1px solid rgba(15, 80, 60, 0.08);
  box-shadow: 0 8px 18px rgba(5, 68, 50, 0.1);
}

/* Solve product detail (glass stat + subcards) */
.solve-detail__grid {
  align-items: stretch;
  gap: 2rem;
}

.solve-detail__stat-card {
  border-radius: var(--sos-radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  background: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 22px 50px rgba(5, 68, 50, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(5, 68, 50, 0.05);
}

.solve-detail__stat {
  margin: 0 0 0.65rem;
  font-size: clamp(3.25rem, 11vw, 5.75rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #0d9488 0%, #2ec4d9 52%, #0284c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.solve-detail__stat-head {
  margin: 0 0 1rem;
  font-size: 1.65rem;
  font-weight: 600;
  color: #0f7669;
}

.solve-detail__stat-copy {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  color: #6b7280;
}

.solve-detail__side {
  text-align: left;
  min-width: 0;
}

.solve-detail__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  font-family: var(--sos-font-display);
  font-size: clamp(1.05rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.solve-detail__title-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: #0d9488;
}

.solve-detail__title-icon svg {
  width: 2.35rem;
  height: 2.35rem;
}

.solve-detail__title-text {
  color: #0d9488;
  white-space: nowrap;
}

.solve-detail__intro {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  color: #6b7280;
}

.solve-detail__subcards {
  display: grid;
  gap: 1rem;
}

.solve-detail__subcard {
  margin: 0;
  padding: 1.35rem 1.5rem;
  border-radius: var(--sos-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px) saturate(175%);
  -webkit-backdrop-filter: blur(18px) saturate(175%);
  background: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 14px 36px rgba(5, 68, 50, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.solve-detail__subcard h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0d9488;
}

.solve-detail__subcard p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.55;
  color: #6b7280;
}

/* Say product detail — header + paired glass cards (no outer shell) */
.say-detail__header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.say-detail__icon {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  color: var(--sos-primary);
}

.say-detail__icon svg {
  width: 2.25rem;
  height: 2.25rem;
}

.say-detail__title {
  margin: 0 0 0.85rem;
  font-family: var(--sos-font-display);
  font-size: clamp(1.2rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--sos-primary);
}

.say-detail__lead {
  margin: 0 auto;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #6b7280;
}

.say-detail__cards {
  gap: 1.25rem;
}

.say-detail__card {
  margin: 0;
  padding: 1.35rem 1.5rem;
  border-radius: var(--sos-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  background: var(--sos-glass-bg-soft);
  box-shadow:
    0 8px 24px rgba(5, 68, 50, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.say-detail__card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sos-primary);
}

.say-detail__card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #6b7280;
}

/* How it Works — depth blocks below Say (split row + three tiles) */
.howit-depth {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.howit-depth__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}

@media (min-width: 900px) {
  .howit-depth__split {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

.howit-depth__block-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.howit-depth__block-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  color: var(--sos-primary);
}

.howit-depth__block-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.howit-depth__block-icon--code svg {
  width: 1.65rem;
  height: 1.65rem;
}

.howit-depth__block-title {
  margin: 0;
  font-family: var(--sos-font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: var(--sos-primary);
}

.howit-depth__surface {
  border-radius: var(--sos-radius-lg);
  padding: 0.25rem 0;
}

.howit-depth__surface--light {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 20px rgba(5, 68, 50, 0.05);
}

.howit-depth__accordion {
  padding: 0.35rem 1rem 0.5rem;
}

.howit-depth__disclosure {
  border-bottom: 1px solid rgba(5, 68, 50, 0.1);
}

.howit-depth__disclosure:last-child {
  border-bottom: none;
}

.howit-depth__disclosure summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.25rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--sos-primary);
}

.howit-depth__disclosure summary::-webkit-details-marker {
  display: none;
}

.howit-depth__disclosure summary::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--sos-primary);
  border-bottom: 2px solid var(--sos-primary);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: -0.2rem;
  transition: transform 0.2s ease;
}

.howit-depth__disclosure[open] summary::after {
  transform: rotate(225deg);
  margin-top: 0.15rem;
}

.howit-depth__disclosure-body {
  padding: 0 0.25rem 1rem;
}

.howit-depth__disclosure-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4b5563;
}

.howit-depth__glass {
  margin: 0;
  padding: clamp(1.25rem, 3vw, 1.65rem);
  border-radius: var(--sos-radius-lg);
  background: var(--sos-glass-bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  box-shadow:
    0 8px 24px rgba(5, 68, 50, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.howit-depth__glass-lead {
  margin: 0 0 1.15rem;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--sos-primary);
}

.howit-depth__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.howit-depth__checklist li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--sos-primary);
}

.howit-depth__check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.05rem;
  color: var(--sos-accent);
}

.howit-depth__check svg {
  display: block;
  width: 100%;
  height: 100%;
}

.howit-depth__trio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .howit-depth__trio {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: stretch;
  }
}

.howit-depth__tile {
  margin: 0;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border-radius: var(--sos-radius-lg);
  background: var(--sos-glass-bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  box-shadow:
    0 8px 24px rgba(5, 68, 50, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.howit-depth__tile--featured {
  background: rgba(167, 243, 208, 0.38);
  border-color: rgba(255, 255, 255, 0.48);
}

.howit-depth__tile-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: var(--sos-primary);
  color: var(--sos-white);
}

.howit-depth__tile-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.howit-depth__tile-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.howit-depth__tile-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  color: var(--sos-accent);
}

.howit-depth__tile-mark svg {
  width: 1.25rem;
  height: 1.25rem;
}

.howit-depth__tile-title {
  margin: 0 0 0.75rem;
  font-family: var(--sos-font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  color: var(--sos-primary);
}

.howit-depth__tile-title--inline {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.howit-depth__tile-copy {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--sos-primary);
}

.howit-depth__tile-copy--muted {
  color: #5b6470;
}

.howit-depth__tile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--sos-primary);
  text-decoration: none;
}

.howit-depth__tile-link:hover {
  text-decoration: underline;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-card__number {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--sos-primary);
  color: var(--sos-white);
  font-weight: 700;
}

/* Why We Are Different — 4 + reserved slot + 4, pill cards, curved offsets */
.pillars-story__header {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 48rem;
}

.pillars-story__title {
  margin: 0 0 0.65rem;
}

.pillars-story__subtitle {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
}

.pillars-story__rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 22rem) minmax(0, 1fr);
  gap: 0 clamp(1.25rem, 3vw, 2.75rem);
  align-items: center;
}

.pillars-story__slot {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 100%;
  max-width: 22rem;
  min-height: clamp(18rem, 52vh, 34rem);
  pointer-events: none;
}

/* Static brand preview — centered in the card rail, nudged down; not a scroll-linked device host */
.pillars-story__phone.phone-device {
  width: min(100%, 13.75rem);
  max-width: 100%;
  flex-shrink: 0;
  transform: translateY(clamp(1.35rem, 3.5vh, 3rem));
}

.pillars-story__phone .phone-device__screen {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  background: #f6f3eb;
}

.pillars-story__brand-screen {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.pillars-story__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.pillars-story__col--left {
  align-items: flex-end;
}

.pillars-story__col--right {
  align-items: flex-start;
}

@media (min-width: 960px) {
  .pillars-story__col--left .pillars-story__card:nth-child(1),
  .pillars-story__col--left .pillars-story__card:nth-child(4) {
    transform: translateX(0.7rem);
  }

  .pillars-story__col--left .pillars-story__card:nth-child(2),
  .pillars-story__col--left .pillars-story__card:nth-child(3) {
    transform: translateX(-1.05rem);
  }

  .pillars-story__col--right .pillars-story__card:nth-child(1),
  .pillars-story__col--right .pillars-story__card:nth-child(4) {
    transform: translateX(-0.7rem);
  }

  .pillars-story__col--right .pillars-story__card:nth-child(2),
  .pillars-story__col--right .pillars-story__card:nth-child(3) {
    transform: translateX(1.05rem);
  }
}

.pillars-story__card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  max-width: 15.75rem;
  margin: 0;
  padding: 0.8rem 1rem 0.8rem 0.8rem;
  border-radius: 999px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px) saturate(175%);
  -webkit-backdrop-filter: blur(18px) saturate(175%);
  background: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 10px 28px rgba(5, 68, 50, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillars-story__card:hover {
  box-shadow:
    0 18px 42px rgba(5, 68, 50, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.pillars-story__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(167, 243, 208, 0.5);
  border: 1px solid rgba(31, 157, 108, 0.22);
  color: var(--sos-primary);
}

.pillars-story__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.pillars-story__body {
  min-width: 0;
}

.pillars-story__card h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--sos-primary);
  line-height: 1.2;
}

.pillars-story__card p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #4b5563;
}

@media (max-width: 959px) {
  .pillars-story__rail {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pillars-story__slot {
    display: none;
  }

  .pillars-story__col--left,
  .pillars-story__col--right {
    align-items: stretch;
  }

  .pillars-story__card {
    max-width: min(22rem, 100%);
    margin-inline: auto;
  }

  .pillars-story__col--left .pillars-story__card,
  .pillars-story__col--right .pillars-story__card {
    transform: none !important;
  }
}

/* Narrow phones / small tablets: allow long marketing titles to wrap */
@media (max-width: 479px) {
  .why-story__title-line,
  .why-story__title-accent {
    white-space: normal;
  }

  .seek-detail__title,
  .solve-detail__title {
    flex-wrap: wrap;
    white-space: normal;
  }

  .seek-detail__title-text,
  .solve-detail__title-text {
    white-space: normal;
  }

  .how-it-story__card {
    padding: 1.5rem 1.2rem;
  }

  .expertise-story__card {
    padding: 1.65rem 1.25rem;
  }
}

/* Reach real neighbors — split promo card (below Why We Are Different) */
.reach-neighbors {
  padding-block: clamp(2.1rem, 4.2vw, 3.25rem);
}

.reach-neighbors__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.6vw, 2.35rem);
  align-items: center;
  max-width: min(64rem, 100%);
  margin-inline: auto;
  padding: clamp(1.35rem, 2.8vw, 2.15rem);
  border-radius: clamp(1.15rem, 2.2vw, 1.65rem);
  background: var(--sos-glass-bg-soft);
  backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 8px 24px rgba(5, 68, 50, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

@media (min-width: 900px) {
  .reach-neighbors__card {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(1.35rem, 2.6vw, 2.5rem);
  }
}

.reach-neighbors__content {
  display: grid;
  gap: clamp(0.95rem, 2vw, 1.25rem);
  align-content: center;
  text-align: left;
  max-width: 36rem;
}

.reach-neighbors__title {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.reach-neighbors__title-line {
  display: block;
}

.reach-neighbors__title-line--primary {
  color: var(--sos-primary);
}

.reach-neighbors__title-line--accent {
  color: #ff7300;
}

.reach-neighbors__copy {
  margin: 0;
  font-size: clamp(0.9375rem, 1.45vw, 1.0625rem);
  line-height: 1.52;
  color: var(--sos-body);
}

.reach-neighbors__btn {
  justify-self: start;
  border-radius: 999px;
  padding-inline: 1.45rem;
}

.reach-neighbors__visual {
  display: grid;
  place-items: center;
  width: 100%;
}

.reach-neighbors__visual-frame {
  width: 100%;
  max-width: min(13.5rem, 72vw);
  aspect-ratio: 626 / 845;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(14px) saturate(155%);
  -webkit-backdrop-filter: blur(14px) saturate(155%);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  overflow: hidden;
}

@media (min-width: 900px) {
  .reach-neighbors__visual-frame {
    max-width: min(100%, 16.5rem);
    margin-inline: auto 0;
  }
}

.reach-neighbors__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--sos-glass-border);
  border-radius: var(--sos-radius-md);
  background: var(--sos-glass-bg);
  backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  box-shadow:
    0 10px 24px rgba(5, 68, 50, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

.faq-item__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: 0;
  text-align: left;
  font: inherit;
  font-weight: 600;
  color: var(--sos-primary);
  cursor: pointer;
}

.faq-item__icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__panel {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--sos-body);
}

.faq-item.open .faq-item__panel {
  display: block;
}

.faq-item__panel p,
.faq-item__panel ul {
  margin: 0 0 0.75rem;
}

.faq-item__panel ul {
  padding-left: 1.25rem;
}

.cta-banner {
  border: 1px solid var(--sos-glass-border);
  border-radius: 1.5rem;
  background: var(--sos-glass-bg);
  backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--sos-glass-blur)) saturate(165%);
  padding: 1.45rem 1.35rem;
  display: grid;
  gap: 0.85rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    var(--sos-glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  align-content: center;
  max-width: 30rem;
  padding-inline-start: 0.5rem;
}

.cta-banner__title {
  margin: 0;
  font-family: var(--sos-font-display);
  font-size: clamp(1.875rem, 3.6vw, 2.625rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--sos-primary);
  text-align: left;
}

.cta-banner__copy {
  margin: 0;
  max-width: 24.5rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--sos-body);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cta-banner__btn {
  min-height: 2.625rem;
  padding-inline: 1.05rem;
  font-size: 0.9375rem;
}

.cta-banner__btn-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.cta-banner__mockup {
  margin: 0;
  justify-self: center;
  width: min(100%, 14.25rem);
  filter: drop-shadow(0 18px 36px rgba(5, 68, 50, 0.12));
}

.cta-banner__mockup img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 959px) {
  .cta-banner {
    padding-bottom: clamp(5.25rem, 30vw, 9rem);
    padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
  }

  .cta-banner__content {
    max-width: 100%;
    padding-inline-end: clamp(0.25rem, 2vw, 0.75rem);
  }

  .cta-banner__mockup {
    position: absolute;
    right: max(0.25rem, env(safe-area-inset-right, 0px));
    bottom: max(0.35rem, env(safe-area-inset-bottom, 0px));
    width: min(11.5rem, 46vw);
    max-width: 48%;
    justify-self: unset;
    margin: 0;
    z-index: 0;
    pointer-events: none;
  }

  .cta-banner__mockup img {
    object-fit: contain;
    object-position: bottom right;
  }
}

@media (min-width: 960px) {
  .cta-banner {
    /* Second track sized to art (not a loose fr column) so copy sits tight to the phone */
    grid-template-columns: minmax(0, 1fr) min(21.5rem, 36vw);
    align-items: stretch;
    column-gap: 0;
    row-gap: 0;
    min-height: 17.5rem;
    padding: 1.5rem 0 0 1.5rem;
  }

  .cta-banner__content {
    padding-inline-start: clamp(0.65rem, 2vw, 1.2rem);
    padding-inline-end: 0.3rem;
  }

  .cta-banner__mockup {
    align-self: stretch;
    justify-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin: 0 0 -1.5rem 0;
    z-index: auto;
    pointer-events: none;
  }

  .cta-banner__mockup img {
    width: 100%;
    max-width: none;
    height: auto;
    max-height: 27.5rem;
    object-fit: contain;
    object-position: bottom right;
  }
}

.site-footer {
  position: relative;
  background: var(--sos-primary-dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 3.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover {
  color: var(--sos-white);
}

.site-footer .site-brand {
  color: var(--sos-white);
}

.site-footer__main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem 3rem;
  padding-bottom: 2.5rem;
}

.site-footer__brand {
  flex: 1 1 16rem;
  max-width: 26rem;
}

.site-footer__summary {
  margin: 1rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__back-to-top-icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--sos-white);
  font-size: 0.95rem;
  line-height: 1;
}

.site-footer__links {
  flex: 1 1 28rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: end;
}

.site-footer h3 {
  color: var(--sos-white);
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.site-footer__bottom {
  padding: 1.25rem 0 max(1.75rem, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-left: auto;
}

.site-footer__social a {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--sos-white);
  transition: background 0.2s ease, color 0.2s ease;
}

.site-footer__social a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--sos-white);
}

.site-footer__social svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.site-footer__watermark-wrap {
  width: 100%;
  overflow: hidden;
  max-height: clamp(3.75rem, 14vw, 11rem);
  background: var(--sos-primary-dark);
}

.site-footer__watermark {
  margin: 0;
  width: 100%;
  text-align: center;
  font-family: var(--sos-font-display);
  font-size: clamp(2.85rem, min(16vw, 11vh), 16rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.12);
  transform: translateY(12%);
  user-select: none;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .site-footer__watermark-wrap {
    max-height: clamp(5rem, 16vw, 11rem);
  }

  .site-footer__watermark {
    font-size: clamp(4.25rem, min(18vw, 12vh), 16rem);
    transform: translateY(15%);
  }
}

@media (min-width: 900px) {
  .site-footer__watermark {
    font-size: clamp(7rem, 24vw, 16rem);
    transform: translateY(18%);
  }
}

@media (max-width: 767px) {
  .site-footer__links {
    grid-template-columns: 1fr;
  }
}

.back-to-top {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 0;
  background: var(--sos-primary);
  color: var(--sos-white);
  box-shadow: var(--sos-shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.sos-secondary-page {
  --sos-orange: #f5a623;
  --sos-green: #299c7a;
}

/* --- Secondary HTML pages (support, FAQ, download, safety, legal): marketing shell + Tailwind utilities --- */
body.sos-secondary-page .text-shadow-strong {
  text-shadow: none;
}

body.sos-secondary-page .text-slate-100,
body.sos-secondary-page .text-white {
  color: var(--sos-heading) !important;
}

body.sos-secondary-page .text-slate-200,
body.sos-secondary-page .text-slate-300,
body.sos-secondary-page .text-slate-400 {
  color: var(--sos-body) !important;
}

body.sos-secondary-page .hover\:text-white:hover {
  color: var(--sos-primary) !important;
}

body.sos-secondary-page .support-section,
body.sos-secondary-page .safety-section,
body.sos-secondary-page .feature-card {
  background: var(--sos-glass-bg);
  backdrop-filter: blur(var(--sos-glass-blur));
  -webkit-backdrop-filter: blur(var(--sos-glass-blur));
  border: 1px solid var(--sos-glass-border);
  box-shadow: var(--sos-glass-shadow);
  color: var(--sos-body);
}

body.sos-secondary-page .support-section:hover,
body.sos-secondary-page .safety-section:hover,
body.sos-secondary-page .feature-card:hover {
  background: var(--sos-glass-bg-soft);
  border-color: var(--sos-glass-border);
}

body.sos-secondary-page .download-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.78), rgba(244, 249, 248, 0.95));
  backdrop-filter: blur(var(--sos-glass-blur));
  -webkit-backdrop-filter: blur(var(--sos-glass-blur));
  border: 1px solid var(--sos-glass-border);
  box-shadow: var(--sos-glass-shadow);
  border-radius: 2rem;
  padding: 3rem;
}

@media (max-width: 768px) {
  body.sos-secondary-page .download-card {
    padding: 2rem 1.5rem;
  }
}

body.sos-secondary-page .faq-card {
  background: var(--sos-glass-bg);
  backdrop-filter: blur(var(--sos-glass-blur));
  -webkit-backdrop-filter: blur(var(--sos-glass-blur));
  border: 1px solid var(--sos-glass-border);
  box-shadow: var(--sos-glass-shadow);
}

body.sos-secondary-page .faq-question {
  color: var(--sos-heading);
}

body.sos-secondary-page .faq-answer {
  color: var(--sos-body);
}

body.sos-secondary-page .faq-card.active {
  border-color: rgba(242, 153, 74, 0.65);
}

body.sos-secondary-page .faq-card.active .faq-question {
  color: var(--sos-primary);
}

body.sos-secondary-page .faq-answer strong {
  color: var(--sos-primary);
}

body.sos-secondary-page .faq-answer em {
  color: var(--sos-primary-dark);
  font-style: italic;
}

body.sos-secondary-page .faq-search-bar {
  position: relative;
  max-width: min(36rem, 100%);
  margin-inline: auto;
  margin-bottom: 2rem;
  border-radius: 0.625rem;
  background: rgba(118, 118, 128, 0.12);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

body.sos-secondary-page .faq-search-bar:focus-within {
  background: rgba(118, 118, 128, 0.18);
  box-shadow:
    0 0 0 2px rgba(11, 92, 171, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

body.sos-secondary-page .faq-search-bar__icon {
  position: absolute;
  left: 0.72rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(60, 60, 67, 0.55);
  pointer-events: none;
}

body.sos-secondary-page .faq-search-bar__icon svg {
  display: block;
}

body.sos-secondary-page .faq-search-bar__input {
  display: block;
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  border-radius: 0.625rem;
  padding: 0.72rem 0.85rem 0.72rem 2.55rem;
  font: inherit;
  font-size: 1.02rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--sos-heading);
  -webkit-appearance: none;
  appearance: none;
}

body.sos-secondary-page .faq-search-bar__input:focus {
  outline: none;
}

body.sos-secondary-page .faq-search-bar__input::placeholder {
  color: rgba(60, 60, 67, 0.48);
}

body.sos-secondary-page .faq-search-bar__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  height: 1rem;
  width: 1rem;
  margin-right: 0.15rem;
  cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E")
    center / 0.85rem no-repeat;
}

body.sos-secondary-page .email-link {
  color: var(--sos-accent);
  text-decoration: underline;
}

body.sos-secondary-page .email-link:hover {
  color: var(--sos-primary);
}

body.sos-secondary-page main ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

body.sos-secondary-page main ul li {
  margin-top: 0.5rem;
}

body.sos-secondary-page .section-heading {
  background: linear-gradient(135deg, var(--sos-accent), var(--sos-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.sos-secondary-page .scrollable-content,
body.sos-secondary-page .privacy-content,
body.sos-secondary-page .terms-content {
  --sos-doc-blue: #2596be;
  --sos-doc-green: #299c7a;
  --sos-doc-orange: #f2994a;
}

body.sos-secondary-page .scrollable-content {
  max-height: 70vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 2rem;
  background: var(--sos-glass-bg);
  backdrop-filter: blur(var(--sos-glass-blur));
  -webkit-backdrop-filter: blur(var(--sos-glass-blur));
  border: 1px solid var(--sos-glass-border);
  border-radius: var(--sos-radius-md);
  box-shadow: var(--sos-glass-shadow);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body.sos-secondary-page .scrollable-content a {
  color: var(--sos-primary);
  text-decoration: underline;
}

body.sos-secondary-page .scrollable-content::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body.sos-secondary-page .pulse-glow {
  animation: sos-secondary-pulse-glow 4s ease-in-out infinite;
}

@keyframes sos-secondary-pulse-glow {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(5, 68, 50, 0.15));
  }

  50% {
    transform: scale(1.03);
    filter: drop-shadow(0 0 18px rgba(5, 68, 50, 0.22));
  }
}

@media (prefers-reduced-motion: reduce) {
  body.sos-secondary-page .pulse-glow {
    animation: none;
  }
}

body.sos-secondary-page main .safety-section a {
  color: var(--sos-accent);
  text-decoration: underline;
}

body.sos-secondary-page main .safety-section a:hover {
  color: var(--sos-primary);
}
