:root {
  --ink: #f2f8f8;
  --ink-soft: #e7f1f0;
  --ink-card: #ffffff;
  --ink-card-strong: #fbfefe;
  --ink-card-border: rgba(74, 147, 198, 0.2);
  --water: #3aa7df;
  --water-bright: #257fb8;
  --water-deep: #1a557e;
  --text: #172628;
  --text-soft: rgba(23, 38, 40, 0.82);
  --text-muted: rgba(23, 38, 40, 0.62);
  --surface: #edf5fb;
  --surface-ink: #10233a;
  --success: #70f1b0;
  --warning: #ffd27a;
  --danger: #ff8d8d;
  --shadow: 0 22px 42px rgba(34, 89, 132, 0.14);
  --timing-fluid: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(183, 223, 248, 0.5), transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(148, 201, 238, 0.36), transparent 30%),
    linear-gradient(165deg, #f7fbff 0%, #edf5fb 46%, #f4f9ff 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  text-wrap: pretty;
}

body.water-disabled {
  background:
    radial-gradient(circle at 10% 12%, rgba(182, 223, 248, 0.44), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(145, 199, 238, 0.34), transparent 20%),
    linear-gradient(165deg, #f7fbff 0%, #edf5fb 45%, #f4f9ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.14;
  background-image: radial-gradient(rgba(26, 86, 128, 0.08) 0.8px, transparent 0.8px);
  background-size: 3px 3px;
}

.skip-link {
  position: absolute;
  top: 0.7rem;
  left: 1rem;
  z-index: 120;
  padding: 0.65rem 0.9rem;
  border-radius: 0.8rem;
  background: var(--surface);
  color: var(--surface-ink);
  font-size: 0.82rem;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 240ms var(--timing-fluid);
}

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

a {
  color: inherit;
}

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

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

#water-canvas {
  display: none;
}

.page {
  position: relative;
  z-index: 3;
}

.site-nav {
  position: sticky;
  top: 0.85rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1240px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(74, 147, 198, 0.18);
  box-shadow: 0 14px 28px rgba(38, 103, 156, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
}

.brand strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand span {
  color: var(--water);
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 240ms var(--timing-fluid);
}

.site-nav nav a:hover,
.site-nav nav a:focus-visible {
  color: var(--text);
}

.shell {
  width: min(1120px, calc(100vw - 2.4rem));
  margin: 0 auto;
}

.hero {
  min-height: calc(100dvh - 72px);
  display: flex;
  align-items: center;
  padding: 6.6rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 2.8rem;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 147, 198, 0.2);
  background: rgba(255, 255, 255, 0.86);
  color: var(--water-bright);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--water);
  box-shadow: 0 0 0 5px rgba(58, 167, 223, 0.16);
}

h1,
h2,
h3 {
  margin: 0;
}

.hero h1 {
  margin-top: 1.35rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3rem, 6.2vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 .accent {
  display: inline-block;
  padding-left: 0.08em;
  font-style: italic;
  background: linear-gradient(135deg, #d0ebff 0%, #79c4f4 55%, #3aa7df 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 1.3rem 0 0;
  max-width: 36rem;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.82;
}

.hero-actions,
.preview-actions,
.footer-links {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 360ms var(--timing-fluid),
    box-shadow 360ms var(--timing-fluid),
    border-color 360ms var(--timing-fluid),
    color 360ms var(--timing-fluid),
    background 360ms var(--timing-fluid);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button[aria-disabled="true"] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.button-primary {
  background: linear-gradient(140deg, var(--water-bright), var(--water));
  color: #f9fffe;
  box-shadow: 0 16px 28px rgba(58, 167, 223, 0.3);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--water-bright);
  border-color: rgba(74, 147, 198, 0.24);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--water-deep);
  border-color: rgba(74, 147, 198, 0.42);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: 0;
  padding-inline: 0;
}

.hero-stack {
  position: relative;
  min-height: 640px;
}

.hero-shot {
  position: absolute;
  margin: 0;
  padding: 0.3rem;
  border-radius: 2rem;
  border: 1px solid rgba(74, 147, 198, 0.12);
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 10px 18px rgba(41, 108, 167, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 600ms var(--timing-fluid);
}

.hero-shot img {
  width: 100%;
  height: auto;
  border-radius: 1.6rem;
}

.hero-shot-main {
  top: 0;
  left: 18%;
  width: min(300px, 64vw);
  transform: rotate(-3deg);
}

.hero-shot-top {
  top: 7%;
  left: -3%;
  width: min(232px, 49vw);
  transform: rotate(-11deg);
}

.hero-shot-bottom {
  bottom: 3%;
  right: -2%;
  width: min(232px, 48vw);
  transform: rotate(8deg);
}

.hero-panel:hover .hero-shot-main {
  transform: rotate(-1deg) translateY(-4px);
}

.hero-panel:hover .hero-shot-top {
  transform: rotate(-9deg) translateY(-8px);
}

.hero-panel:hover .hero-shot-bottom {
  transform: rotate(6deg) translateY(-7px);
}

.hero-card-note {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 250px;
  padding: 1.05rem 1.15rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(74, 147, 198, 0.2);
  box-shadow: 0 14px 24px rgba(35, 96, 146, 0.14);
}

.hero-card-note strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.92rem;
}

.hero-card-note p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.6;
}

.section {
  padding: 6rem 0;
}

.section-copy {
  max-width: 42rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--water);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-copy p,
.preview-copy p,
.legal-prose p,
.legal-prose li {
  color: var(--text-soft);
}

.feature-grid,
.steps-grid,
.support-grid,
.widget-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.step-card,
.waitlist-shell,
.legal-card,
.contact-card {
  border-radius: 24px;
  border: 1px solid var(--ink-card-border);
  background: var(--ink-card);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 1.5rem;
}

.feature-card strong {
  display: block;
  margin: 0.85rem 0 0.4rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.66;
}

.feature-icon {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 167, 223, 0.12);
  color: var(--water-deep);
  font-size: 1rem;
  font-weight: 700;
}

.feature-icon img {
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
}

.screen-bento {
  display: grid;
  gap: 0.85rem;
  margin-top: 2.4rem;
}

.preview-rotator {
  gap: 0.75rem;
}

.preview-stage {
  display: grid;
}

.preview-frame {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1800ms var(--timing-fluid);
}

.preview-frame.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.preview-tile {
  border-radius: 1.3rem;
  border: 1px solid rgba(74, 147, 198, 0.2);
  background: var(--ink-card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-shot {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: transparent;
  border-color: rgba(74, 147, 198, 0.24);
}

.preview-shot img {
  width: 100%;
  height: auto;
  max-height: min(66vh, 460px);
  object-fit: contain;
  object-position: center;
  border-radius: 1rem;
  background: transparent;
}

.preview-copy {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  border: none;
  background: transparent;
  box-shadow: none;
}

.preview-copy h3 {
  margin-top: 1.1rem;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.preview-copy p {
  margin: 0.9rem 0 0;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.72;
}

.screen-story-kicker,
.screen-story-index {
  display: inline;
}

.screen-story-index {
  margin: 0 0.45em 0 0;
  color: rgba(58, 167, 223, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.screen-story-kicker {
  color: var(--water-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.preview-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
}

.preview-dot {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(74, 147, 198, 0.24);
  cursor: pointer;
  transition:
    transform 240ms var(--timing-fluid),
    background-color 240ms var(--timing-fluid);
}

.preview-dot.is-active {
  background: rgba(37, 127, 184, 0.92);
  transform: scale(1.2);
}

.widget-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.widget-card {
  border-radius: 24px;
  border: 1px solid var(--ink-card-border);
  background: var(--ink-card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.widget-shot {
  margin: 0;
  padding: 0.5rem;
  border-bottom: 1px solid rgba(74, 147, 198, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.86));
}

.widget-shot img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}

.widget-card-wide {
  grid-column: 1 / -1;
}

.widget-shot-compact {
  padding: 0.8rem;
}

.widget-shot-compact img {
  max-height: 140px;
  object-fit: contain;
  margin-inline: auto;
}

.widget-copy {
  padding: 1.05rem 1.15rem 1.25rem;
}

.widget-copy h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.widget-copy p {
  margin: 0.62rem 0 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.steps-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  padding: 1.45rem;
}

.step-card span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: rgba(58, 167, 223, 0.58);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.step-card h3 {
  font-size: 1rem;
}

.step-card p {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.66;
}

.waitlist-shell {
  padding: 1.55rem;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 1.5rem;
  align-items: center;
}

.waitlist-copy p {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.72;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.field-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
}

.field-input {
  width: 100%;
  min-height: 52px;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(74, 147, 198, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
}

.field-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(26, 85, 126, 0.75) 50%),
    linear-gradient(135deg, rgba(26, 85, 126, 0.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}

.field-input::placeholder {
  color: rgba(23, 38, 40, 0.4);
}

.field-input[aria-invalid="true"] {
  border-color: rgba(201, 53, 49, 0.72);
  box-shadow: 0 0 0 2px rgba(201, 53, 49, 0.12);
}

.field-error {
  margin: -0.22rem 0 0.25rem;
  color: var(--danger);
  font-size: 0.8rem;
  font-weight: 600;
}

.field-input:focus-visible,
.button:focus-visible,
.footer-links a:focus-visible,
.site-nav nav a:focus-visible,
.brand:focus-visible {
  outline: 2px solid rgba(58, 167, 223, 0.62);
  outline-offset: 2px;
}

.field--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.waitlist-status {
  min-height: 1.3rem;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
}

.waitlist-status[data-state="success"] {
  color: var(--success);
}

.waitlist-status[data-state="duplicate"] {
  color: var(--warning);
}

.waitlist-status[data-state="error"] {
  color: var(--danger);
}

.testflight-unlock {
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(74, 147, 198, 0.24);
  background: rgba(58, 167, 223, 0.09);
}

.testflight-unlock strong {
  font-size: 0.93rem;
}

.testflight-unlock p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.83rem;
}

.testflight-unlock .button {
  width: fit-content;
}

.testflight-unlock.is-attention {
  border-color: rgba(201, 53, 49, 0.34);
  background: rgba(201, 53, 49, 0.08);
}

.footer {
  padding: 2.8rem 0 3.5rem;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(74, 147, 198, 0.2);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.84rem;
}

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

.legal-page {
  min-height: 100vh;
}

.legal-hero {
  padding: 3.2rem 0 1.5rem;
}

.legal-hero h1 {
  margin-top: 0.9rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.legal-hero p {
  max-width: 46rem;
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.78;
}

.legal-card {
  padding: 1.75rem;
  background: var(--ink-card-strong);
}

.legal-prose h2 {
  margin: 1.75rem 0 0.7rem;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.legal-prose h3 {
  margin: 1.1rem 0 0.5rem;
  font-size: 1rem;
}

.legal-prose p,
.legal-prose li {
  font-size: 0.95rem;
  line-height: 1.78;
}

.legal-prose ul {
  padding-left: 1.25rem;
}

.support-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  padding: 1.35rem;
}

.contact-card h2 {
  font-size: 1.05rem;
}

.contact-card p {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.contact-card a {
  color: var(--water-deep);
}

.response-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.response-card {
  width: min(560px, 100%);
  padding: 1.8rem;
  border-radius: 28px;
  background: var(--ink-card-strong);
  border: 1px solid var(--ink-card-border);
  box-shadow: var(--shadow);
}

.response-card h1 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
}

.response-card p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 560ms var(--timing-fluid),
    transform 560ms var(--timing-fluid);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .waitlist-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

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

  .screen-bento {
    gap: 1rem;
  }

  .preview-frame {
    grid-template-columns: minmax(200px, 250px) minmax(0, 1fr);
  }

  .preview-shot {
    min-height: 320px;
  }

  .hero {
    min-height: auto;
    padding: 4.8rem 0 2.8rem;
  }

  .hero-grid {
    gap: 2.2rem;
  }

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

  .hero-panel {
    display: block;
    width: 100%;
    max-width: none;
  }

  .hero-stack {
    min-height: 560px;
  }

  .hero-card-note {
    position: absolute;
    left: 0.2rem;
    bottom: -0.6rem;
    width: min(100%, 340px);
  }
}

@media (max-width: 720px) {
  .site-nav {
    top: 0.55rem;
    width: calc(100vw - 1rem);
    padding: 0.82rem 0.9rem;
    gap: 0.75rem;
    border-radius: 1rem;
  }

  .site-nav nav {
    display: none;
  }

  .site-nav .button {
    min-height: 42px;
    padding: 0.7rem 0.95rem;
    font-size: 0.8rem;
  }

  .brand strong {
    font-size: 1rem;
  }

  .shell {
    width: min(100vw - 1.4rem, 1120px);
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-grid {
    gap: 1.6rem;
  }

  .pill {
    max-width: 100%;
    font-size: 0.67rem;
    letter-spacing: 0.06em;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
    line-height: 0.97;
  }

  .hero p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .feature-grid,
  .steps-grid,
  .widget-grid {
    grid-template-columns: 1fr;
  }

  .screen-bento {
    gap: 0.82rem;
  }

  .preview-frame {
    grid-template-columns: 1fr;
  }

  .preview-shot {
    min-height: 360px;
  }

  .preview-copy {
    padding: 1.5rem 1.25rem;
  }

  .preview-copy h3 {
    font-size: 1.75rem;
  }

  .hero-stack {
    min-height: 470px;
  }

  .hero-shot-main {
    left: 14%;
    width: min(236px, 61vw);
  }

  .hero-shot-top {
    top: 9%;
    left: 0;
    width: min(176px, 45vw);
  }

  .hero-shot-bottom {
    right: 0;
    width: min(176px, 45vw);
  }

  .hero-card-note {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 0.8rem;
  }

  .footer-bar {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .reveal,
  .button,
  .site-nav nav a,
  .footer-links a {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
