:root {
  --surface: #f7f9fb;
  --surface-dim: #d8dadc;
  --surface-bright: #f7f9fb;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f2f4f6;
  --surface-container: #eceef0;
  --surface-container-high: #e6e8ea;
  --surface-container-highest: #e0e3e5;
  --on-surface: #191c1e;
  --on-surface-variant: #3f484d;
  --outline: #6f787d;
  --outline-variant: #bfc8cd;
  --primary: #13696a;
  --on-primary: #ffffff;
  --primary-container: #8fd7d8;
  --secondary: #0f5f60;
  --secondary-container: #6ec7c9;
  --tertiary: #0c7b7c;
  --tertiary-container: #9fe1e2;
  --success: #1f7a53;
  --shadow-soft: 0 8px 24px rgba(19, 105, 106, 0.14);
  --shadow-card: 0 10px 30px rgba(19, 105, 106, 0.12);
  --shadow-strong: 0 20px 48px rgba(19, 105, 106, 0.18);
  --radius-sm: 0.75rem;
  --radius: 1rem;
  --radius-xl: 1.5rem;
  --max: 1160px;
  --container-padding: 24px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  color: var(--on-surface);
  background:
    radial-gradient(1200px 700px at 92% -20%, rgba(110, 199, 201, 0.35), transparent 58%),
    radial-gradient(980px 620px at -12% 2%, rgba(143, 215, 216, 0.42), transparent 68%),
    var(--surface);
  line-height: 1.5;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--max), 100% - calc(var(--container-padding) * 2));
  margin-inline: auto;
}

.section {
  padding: 56px 0;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 4px 0 0;
  font-size: clamp(28px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--tertiary);
  font-size: 14px;
  line-height: 1.4;
}

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

.skip-link:focus {
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: color-mix(in srgb, var(--surface-bright) 78%, transparent);
  border-bottom: 1px solid var(--outline-variant);
}

body:not(.legal-page) .site-header {
  position: fixed;
  left: 0;
  right: 0;
  transform: translateY(calc(-100% - 8px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-bottom-color: transparent;
  transition: transform 220ms ease, opacity 180ms ease, border-color 180ms ease, visibility 0s linear 220ms;
}

body:not(.legal-page) .site-header.hero-out {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  border-bottom-color: var(--outline-variant);
  transition-delay: 0s;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--on-surface);
  font-weight: 700;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.header-app-store-badge {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  transform: translateY(-1px);
  transition: max-width 220ms ease, opacity 180ms ease, transform 180ms ease;
}

.header-app-store-badge .app-store-badge {
  width: 112px;
  min-width: 112px;
}

.site-header.hero-out .header-app-store-badge {
  max-width: 130px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.app-store-badge-link:hover,
.app-store-badge-link:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.app-store-badge-link:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--primary) 45%, white);
  outline-offset: 4px;
  border-radius: 0.85rem;
}

.app-store-badge {
  width: min(180px, 56vw);
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-center {
  text-align: center;
  padding-top: 40px;
}

.hero-center-inner {
  max-width: 820px;
}

.hero-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  border-radius: 1.5rem;
  border: 4px solid var(--surface-container-lowest);
  box-shadow: var(--shadow-strong);
}

.hero-title {
  margin: 6px 0 16px;
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  background-image: linear-gradient(90deg, #006781, #13696a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 20px;
  line-height: 1.55;
}

.hero-lead-center {
  margin: 0 auto 24px;
  max-width: 58ch;
}

.hero-actions-center {
  justify-content: center;
  margin-top: 10px;
}

.corner-promo-ribbon {
  position: fixed;
  top: 0;
  right: 0;
  width: 25rem;
  height: 25rem;
  z-index: 80;
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}

body.header-menu-visible .corner-promo-ribbon {
  opacity: 0;
  visibility: hidden;
  transition-delay: 0s;
}

.corner-promo-ribbon-band {
  position: absolute;
  top: 0;
  right: 0;
  width: 28rem;
  padding: 0.85rem 1.6rem 0.95rem;
  transform:
    translateY(-100%)
    rotate(90deg)
    translateX(70.7106781187%)
    rotate(-45deg);
  transform-origin: bottom right;
  border: 1px solid color-mix(in srgb, #a3081f 78%, white);
  background:
    radial-gradient(280px 120px at 18% 8%, rgba(255, 210, 217, 0.62), transparent 62%),
    linear-gradient(120deg, #ff5a73 0%, #ea2142 40%, #c70f2c 73%, #97081f 100%);
  color: #fff4f6;
  box-shadow:
    0 18px 44px rgba(154, 8, 33, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(64, 0, 9, 0.35);
  text-align: center;
  isolation: isolate;
  animation: corner-ribbon-glow 2.8s ease-in-out infinite;
}

.corner-promo-ribbon-band::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(112deg, transparent 30%, rgba(255, 255, 255, 0.76) 50%, transparent 68%);
  transform: translateX(-155%);
  animation: corner-ribbon-sheen 4.2s ease-in-out infinite;
  z-index: 0;
}

.corner-promo-kicker,
.corner-promo-copy {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 1.25;
  max-width: 24rem;
  margin-inline: auto;
  white-space: normal;
}

.corner-promo-kicker {
  font-size: 14px;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.corner-promo-copy {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 650;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 1rem;
  padding: 10px 18px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, var(--tertiary), var(--primary));
  color: var(--on-primary);
  border-color: color-mix(in srgb, var(--primary) 45%, white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #0f6f70, #0b7d9b);
}

.btn-ghost {
  border-color: var(--outline);
  background: var(--surface-container-lowest);
  color: var(--tertiary);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

.story-stack {
  display: grid;
  gap: 72px;
}

.catch-flow {
  display: grid;
  gap: 24px;
  align-items: center;
}

.catch-flow-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.catch-flow-copy p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 18px;
  line-height: 1.55;
}

.catch-flow-trigger {
  margin-top: 18px;
  min-width: 200px;
}

.catch-flow-trigger:disabled {
  opacity: 0.75;
  cursor: default;
  transform: none;
}

.catch-flow-visual {
  position: relative;
  justify-self: center;
}

.flow-phone {
  margin: 0;
  width: min(370px, 100%);
  position: relative;
  aspect-ratio: 430 / 932;
}

.phone-side-button,
.phone-power-button {
  position: absolute;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7b848c 0%, #a1aab1 50%, #727b83 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 2px 6px rgba(15, 28, 40, 0.28);
  pointer-events: none;
}

.phone-side-button {
  left: -3px;
}

.phone-side-button-top {
  top: 21.5%;
  height: 4.3%;
}

.phone-side-button-mid {
  top: 30%;
  height: 6.6%;
}

.phone-side-button-low {
  top: 38.7%;
  height: 6.6%;
}

.phone-power-button {
  right: -3px;
  top: 30%;
  height: 9.1%;
}

.flow-device {
  height: 100%;
  display: flex;
  border-radius: 2.45rem;
  padding: 10px;
  background:
    radial-gradient(circle at 18% 9%, rgba(245, 248, 250, 0.88), transparent 44%),
    linear-gradient(160deg, #8d979f 0%, #c5cdd4 28%, #95a0a8 57%, #d0d7dc 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    inset 0 0 0 2px rgba(68, 78, 88, 0.17),
    0 26px 46px rgba(5, 24, 36, 0.28);
}

.flow-screen {
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
  background: #000;
  position: relative;
}

.flow-phone img {
  width: 100%;
  aspect-ratio: 430 / 932;
  object-fit: cover;
}

.flow-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
}

.story-section {
  position: relative;
}

.story-section-alt {
  background: var(--surface-container-low);
  border-radius: var(--radius-xl);
  padding-block: 40px;
}

.story-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.story-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.story-copy p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 18px;
  line-height: 1.55;
}

.story-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--primary-container) 32%, white);
  margin-bottom: 16px;
}

.story-icon-secondary {
  color: var(--secondary);
  background: color-mix(in srgb, var(--secondary-container) 24%, white);
}

.story-icon-tertiary {
  color: var(--tertiary);
  background: color-mix(in srgb, var(--tertiary-container) 26%, white);
}

.micro-points {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.micro-points li {
  color: var(--on-surface-variant);
  position: relative;
  padding-left: 18px;
}

.micro-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tertiary);
  position: absolute;
  left: 0;
  top: 10px;
}

.story-media {
  display: grid;
  justify-items: center;
  position: relative;
  min-width: 0;
}

.phone-mockup {
  width: min(300px, 100%);
  aspect-ratio: 9 / 19;
  min-height: 540px;
  border-radius: 2.2rem;
  border: 10px solid var(--surface-container-highest);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  background: var(--surface-container-lowest);
}

.phone-mockup img,
.gallery-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup img.is-placeholder,
.gallery-mockup img.is-placeholder {
  background:
    linear-gradient(0deg, rgba(247, 249, 251, 0.88), rgba(247, 249, 251, 0.88)),
    repeating-linear-gradient(
      -45deg,
      rgba(110, 199, 201, 0.22),
      rgba(110, 199, 201, 0.22) 10px,
      rgba(143, 215, 216, 0.2) 10px,
      rgba(143, 215, 216, 0.2) 20px
    );
  border: 1px dashed color-mix(in srgb, var(--primary) 45%, white);
  min-height: 100%;
}

.story-fish {
  position: absolute;
  width: clamp(120px, 24vw, 180px);
  pointer-events: none;
  opacity: 0.95;
}

.story-fish-right {
  right: -58px;
  bottom: -24px;
  transform: rotate(-8deg);
}

.story-fish-left {
  left: -72px;
  top: 18%;
  transform: rotate(12deg) scaleX(-1);
}

.glass-panel {
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(110, 199, 201, 0.14)),
    var(--surface-container-lowest);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
}

.glass-panel h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.glass-panel p {
  margin: 10px 0 0;
  color: var(--on-surface-variant);
}

.glass-kicker {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
}

.glass-panel-secondary {
  border-left: 8px solid var(--secondary);
}

.trust-tiles-section {
  padding-top: 6px;
}

.trust-tiles-grid {
  display: grid;
  gap: 16px;
}

.trust-tiles-cta {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.feature-overview-section {
  padding-top: 8px;
}

.feature-overview-head {
  margin-bottom: 18px;
}

.feature-columns {
  display: grid;
  gap: 16px;
}

.feature-column-card {
  border-radius: var(--radius-xl);
  border: 1px solid color-mix(in srgb, var(--primary) 18%, #d9e2ea);
  background:
    linear-gradient(165deg, rgba(110, 199, 201, 0.11), rgba(255, 255, 255, 0.97)),
    var(--surface-container-lowest);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.feature-column-card h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 1.7vw, 24px);
  letter-spacing: -0.01em;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.feature-list li {
  color: var(--on-surface-variant);
  line-height: 1.5;
}

.trust-tile {
  border-radius: var(--radius-xl);
  border: 1px solid color-mix(in srgb, var(--primary) 28%, #e2e8f0);
  background:
    linear-gradient(165deg, rgba(110, 199, 201, 0.14), rgba(255, 255, 255, 0.95)),
    var(--surface-container-lowest);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.trust-tile h3 {
  margin: 0;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.trust-tile p {
  margin: 10px 0 0;
  color: var(--on-surface-variant);
  font-size: 16px;
  line-height: 1.5;
}

.workflow-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.workflow-showcase {
  border-radius: var(--radius-xl);
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--primary) 16%, var(--outline-variant));
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(110, 199, 201, 0.12)),
    var(--surface-container-lowest);
  box-shadow: var(--shadow-card);
}

.tab {
  border: 1px solid var(--outline-variant);
  background: color-mix(in srgb, var(--surface-container-low) 88%, white);
  color: var(--on-surface-variant);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 150ms ease;
}

.tab:hover,
.tab:focus-visible {
  color: var(--primary);
  border-color: color-mix(in srgb, var(--primary) 46%, white);
}

.tab.is-active {
  border-color: transparent;
  background: linear-gradient(120deg, var(--primary), var(--tertiary));
  color: var(--on-primary);
}

.workflow-panel {
  display: grid;
  gap: 16px;
}

.screen-frame {
  margin: 0;
  background: color-mix(in srgb, var(--surface-container-lowest) 68%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  padding: 16px;
  min-height: 22rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
}

.screen-frame img {
  border-radius: var(--radius);
  border: 1px solid var(--outline-variant);
  width: min(100%, 390px);
  min-height: 640px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.screen-frame img.is-placeholder {
  width: min(100%, 380px);
  min-height: 16rem;
  border-style: dashed;
  border-color: color-mix(in srgb, var(--primary) 35%, white);
  background:
    linear-gradient(0deg, rgba(247, 249, 251, 0.88), rgba(247, 249, 251, 0.88)),
    repeating-linear-gradient(
      -45deg,
      rgba(110, 199, 201, 0.2),
      rgba(110, 199, 201, 0.2) 10px,
      rgba(143, 215, 216, 0.18) 10px,
      rgba(143, 215, 216, 0.18) 20px
    );
}

.screen-frame figcaption {
  margin-top: 14px;
  color: var(--on-surface-variant);
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.workflow-steps {
  margin: 0;
  padding: 18px 18px 18px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  background: var(--surface-container-lowest);
  color: var(--on-surface-variant);
  box-shadow: var(--shadow-card);
  align-self: stretch;
}

.workflow-steps li {
  line-height: 1.5;
}

.workflow-steps li + li {
  margin-top: 8px;
}

.gallery-grid {
  display: grid;
  gap: 20px;
}

.gallery-mockup {
  aspect-ratio: 9 / 19;
  min-height: 540px;
  border-radius: 2rem;
  border: 8px solid var(--surface-container-highest);
  overflow: hidden;
  background: var(--surface-container-lowest);
  box-shadow: var(--shadow-strong);
  max-width: 340px;
  margin-inline: auto;
}

.gallery-mockup-offset {
  transform: translateY(-10px);
}

.site-footer {
  border-top: 1px solid var(--outline-variant);
  padding: 20px 0 34px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--on-surface-variant);
}

.footer-rich {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px 18px;
  justify-content: flex-start;
  text-align: left;
}

.footer-links a {
  text-decoration: none;
}

.footer-copy {
  margin: 0;
}

.footer-inner a {
  text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--primary);
}

.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-page .header-app-store-badge {
  max-width: 170px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.legal-main {
  flex: 1;
  padding: 36px 0 20px;
}

.legal-card {
  max-width: 760px;
  width: min(760px, calc(100% - (var(--container-padding) * 2)));
  margin: 48px auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.legal-card h1 {
  margin-top: 0;
  font-size: clamp(28px, 2.2vw, 36px);
  letter-spacing: -0.01em;
}

.legal-card h2 {
  margin: 30px 0 8px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.legal-card p,
.legal-card li {
  color: var(--on-surface-variant);
}

.legal-card ul {
  margin: 8px 0 0;
}

.legal-card a {
  color: var(--primary);
}

@keyframes corner-ribbon-glow {
  0%,
  100% {
    box-shadow:
      0 18px 44px rgba(154, 8, 33, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.38),
      inset 0 -1px 0 rgba(64, 0, 9, 0.35);
  }
  50% {
    box-shadow:
      0 24px 58px rgba(154, 8, 33, 0.48),
      inset 0 1px 0 rgba(255, 255, 255, 0.42),
      inset 0 -1px 0 rgba(64, 0, 9, 0.38);
  }
}

@keyframes corner-ribbon-sheen {
  0%,
  18% {
    transform: translateX(-155%);
  }
  64%,
  100% {
    transform: translateX(155%);
  }
}

@media (min-width: 680px) {
  .workflow-showcase {
    padding: 22px;
  }

  .workflow-panel {
    grid-template-columns: 1.3fr 1fr;
    align-items: stretch;
  }

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

@media (max-width: 679px) {
  .screen-frame img {
    min-height: 520px;
  }

  .phone-mockup,
  .gallery-mockup {
    min-height: 460px;
  }

  .flow-phone {
    width: 224px;
    max-width: 70vw;
  }

  .story-fish {
    display: none !important;
  }
}

@media (max-width: 919px) {
  .page-main {
    padding-top: 0;
  }

  .corner-promo-ribbon {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    z-index: 1;
    overflow: visible;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transition: none;
  }

  .corner-promo-ribbon-band {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 0.9rem 1rem;
    transform: none;
    transform-origin: center;
    border-inline: none;
    border-radius: 0;
    box-shadow:
      0 10px 24px rgba(154, 8, 33, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.38),
      inset 0 -1px 0 rgba(64, 0, 9, 0.3);
  }

  .corner-promo-kicker {
    font-size: 12px;
    max-width: 100%;
  }

  .corner-promo-copy {
    font-size: 14px;
    max-width: 100%;
  }

  body.header-menu-visible .corner-promo-ribbon {
    opacity: 1;
    visibility: visible;
  }

  .hero-lead-center br {
    display: none;
  }

  .hero-center {
    min-height: 100svh;
    padding: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    align-items: stretch;
  }

  .hero-center-inner {
    grid-row: 2;
    margin-inline: auto;
    align-self: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .corner-promo-ribbon {
    grid-row: 1;
  }

  .catch-flow-visual,
  .story-media {
    width: 100%;
    justify-self: center;
  }

  .flow-phone {
    width: min(320px, 82vw);
    margin-inline: auto;
  }

  .story-fish {
    display: none;
  }
}

@media (min-width: 920px) {
  .section {
    padding: 72px 0;
  }

  .catch-flow {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .trust-tiles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-columns {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .story-section-alt .story-copy {
    order: 2;
  }

  .story-section-alt .story-media {
    order: 1;
  }

  .header-app-store-badge .app-store-badge {
    width: 146px;
    min-width: 146px;
  }

  .site-header.hero-out .header-app-store-badge {
    max-width: 170px;
  }

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

  .footer-rich {
    justify-content: space-between;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .corner-promo-ribbon-band,
  .corner-promo-ribbon-band::before {
    animation: none;
  }
}
