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

:root {
  --bg: hsl(28, 14%, 6%);
  --bg-elevated: rgba(255, 255, 255, 0.04);
  --bg-elevated-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: hsla(28, 72%, 56%, 0.35);
  --text: hsl(40, 8%, 93%);
  --text-muted: hsl(32, 6%, 58%);
  --text-faint: hsla(32, 6%, 58%, 0.72);
  --accent: hsl(28, 72%, 56%);
  --accent-bright: hsl(32, 78%, 62%);
  --accent-deep: hsl(24, 68%, 48%);
  --accent-glow: hsla(28, 72%, 56%, 0.45);
  --gold: hsl(46, 58%, 58%);
  --serif: Georgia, 'Literata', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --page-max: 68rem;
  --page-pad-x: max(1.25rem, env(safe-area-inset-right), env(safe-area-inset-left));
  --page-pad-top: max(1rem, env(safe-area-inset-top));
  --page-pad-bottom: max(1.25rem, env(safe-area-inset-bottom));
}

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

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient glow — soft, darker */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.32;
  animation: drift 18s var(--ease) infinite alternate;
}

.ambient-orb--1 {
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, hsla(28, 72%, 56%, 0.2) 0%, transparent 70%);
  animation-name: drift-center;
}

.ambient-orb--2 {
  width: min(50vw, 380px);
  height: min(50vw, 380px);
  bottom: 10%;
  right: -10%;
  background: radial-gradient(circle, hsla(46, 58%, 58%, 0.1) 0%, transparent 70%);
  animation-delay: -6s;
  animation-duration: 22s;
}

.ambient-orb--3 {
  width: min(40vw, 280px);
  height: min(40vw, 280px);
  bottom: 35%;
  left: -8%;
  background: radial-gradient(circle, hsla(24, 68%, 48%, 0.12) 0%, transparent 70%);
  animation-delay: -12s;
  animation-duration: 20s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(3%, 4%) scale(1.06); }
}

@keyframes drift-center {
  from { transform: translateX(-50%) scale(1); }
  to   { transform: translateX(calc(-50% + 2%)) scale(1.05); }
}

.ambient-energies {
  position: absolute;
  inset: 0;
}

.ambient-energy {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(var(--sz, 5) * 1px);
  height: calc(var(--sz, 5) * 1px);
  border-radius: 50%;
  background: hsl(var(--hue, 28), 65%, 58%);
  box-shadow: 0 0 calc(var(--sz, 5) * 1.8px) calc(var(--sz, 5) * 0.4px) hsla(var(--hue, 28), 72%, 56%, 0.26);
  opacity: 0;
  animation: energy-spark var(--d, 5s) ease-in-out var(--delay, 0s) infinite;
}

.ambient-energy--wisp {
  width: calc(var(--w, 26) * 1px);
  height: calc(var(--h, 2) * 1px);
  border-radius: 999px;
  filter: blur(1.5px);
}

@keyframes energy-spark {
  0%, 100% { opacity: 0; transform: translate(0, 0) scale(0.3); }
  6%       { opacity: var(--peak, 0.35); transform: translate(0, 0) scale(1); }
  18%      { opacity: 0; transform: translate(var(--dx, 6px), var(--dy, -10px)) scale(0.5); }
}

/* Layout */
.page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--page-pad-top) var(--page-pad-x) var(--page-pad-bottom);
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Header */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0 2.5rem;
  animation: fade-up 0.7s var(--ease) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  display: block;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  filter: drop-shadow(0 0 10px hsla(28, 72%, 56%, 0.35));
  animation: logo-float 5s ease-in-out infinite;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.03em;
  color: #f5ebdd;
  line-height: 1;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 10px hsla(28, 72%, 56%, 0.32)); }
  50%      { transform: translateY(-2px); filter: drop-shadow(0 0 16px hsla(28, 72%, 56%, 0.48)); }
}

.top-link {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  padding: 1rem 0 3.5rem;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.anim-fade-up {
  opacity: 0;
  animation: fade-up 0.85s var(--ease) var(--anim-delay, 0s) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 1.25rem;
  padding: 0.35rem 0.85rem 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: hsla(28, 72%, 56%, 0.1);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.65; transform: scale(0.85); }
}

.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 7vw, 3.25rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero-title em {
  display: block;
  font-style: italic;
  background: linear-gradient(
    120deg,
    hsl(40, 10%, 94%) 0%,
    var(--accent-bright) 35%,
    var(--gold) 55%,
    var(--accent-bright) 75%,
    hsl(40, 10%, 94%) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 9s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 220% center; }
}

.hero-lead {
  margin: 1.25rem auto 0;
  max-width: 34rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  width: 100%;
}

.hero-actions .btn {
  width: auto;
  min-width: 12.5rem;
  padding-inline: 2.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.75rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  color: hsl(24, 45%, 10%);
  background: linear-gradient(145deg, var(--accent-bright) 0%, var(--accent) 45%, var(--accent-deep) 100%);
  box-shadow:
    0 0 0 1px hsla(28, 72%, 56%, 0.4),
    0 10px 32px hsla(28, 72%, 56%, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
}

.btn--glow {
  animation: btn-glow 3.5s ease-in-out infinite;
}

@keyframes btn-glow {
  0%, 100% {
    box-shadow:
      0 0 0 1px hsla(28, 72%, 56%, 0.4),
      0 10px 32px hsla(28, 72%, 56%, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 1px hsla(28, 72%, 56%, 0.55),
      0 12px 36px hsla(28, 72%, 56%, 0.38),
      0 0 28px hsla(28, 72%, 56%, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
}

/* Features */
.features {
  display: grid;
  gap: 1rem;
  padding-bottom: 3rem;
}

.anim-reveal {
  opacity: 0;
  transform: translateY(20px);
}

@supports not (animation-timeline: view()) {
  .anim-reveal {
    animation: fade-up 0.8s var(--ease) var(--anim-delay, 0s) both;
  }
}

@supports (animation-timeline: view()) {
  .anim-reveal {
    animation: reveal-in linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 38%;
    animation-delay: var(--anim-delay, 0s);
  }
}

.feature {
  padding: 1.35rem 1.35rem 1.45rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(160deg, hsla(28, 72%, 56%, 0.08) 0%, transparent 55%),
    var(--bg-elevated);
  backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease);
}

@media (hover: hover) {
  .feature:hover {
    border-color: var(--border-strong);
    background:
      linear-gradient(160deg, hsla(28, 72%, 56%, 0.12) 0%, transparent 55%),
      var(--bg-elevated-hover);
    transform: translateY(-2px);
  }

  .btn--primary:hover {
    box-shadow:
      0 0 0 1px hsla(28, 72%, 56%, 0.5),
      0 14px 40px hsla(28, 72%, 56%, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
  }

  .top-link:hover {
    background: var(--bg-elevated-hover);
    border-color: var(--border-strong);
    color: var(--text);
  }
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  color: var(--accent-bright);
  background: hsla(28, 72%, 56%, 0.14);
  border: 1px solid hsla(28, 72%, 56%, 0.22);
  transition: transform 0.35s var(--ease), background 0.25s ease, border-color 0.25s ease;
}

@media (hover: hover) {
  .feature:hover .feature-icon {
    transform: scale(1.06) rotate(-3deg);
    background: hsla(28, 72%, 56%, 0.2);
    border-color: hsla(28, 72%, 56%, 0.38);
  }
}

.feature-title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

/* Pricing */
.pricing {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 3.5rem;
}

.pricing__head {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 42rem;
}

.pricing__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.pricing__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.pricing__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.period-toggle {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.period-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.period-toggle__btn--on {
  background: hsla(28, 72%, 56%, 0.18);
  color: var(--text);
}

.period-toggle__save {
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: hsla(46, 58%, 58%, 0.18);
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 700;
}

.plan-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-group + .plan-group {
  padding-top: 0.5rem;
}

.plan-group--couple {
  max-width: 44rem;
  margin-inline: auto;
  padding-top: 1.25rem;
}

.plan-group--couple .plan-group__head {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.plan-group--couple .plan-group__hint {
  margin-top: 0.45rem;
}

.plans--couple {
  grid-template-columns: minmax(0, 1fr);
}

.plan-group--couple .plan-card--couple {
  padding: 1.35rem 1.35rem 1.45rem;
}

.plan-group--couple .plan-card__icon {
  background: hsla(210, 45%, 58%, 0.16);
}

.plan-group--couple .plan-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 720px) {
  .plan-group--couple .plan-card--couple {
    display: grid;
    grid-template-columns: 1fr minmax(11.5rem, 14rem);
    grid-template-rows: auto auto auto auto 1fr;
    column-gap: 1.5rem;
    align-items: start;
  }

  .plan-group--couple .plan-card__head,
  .plan-group--couple .plan-card__audience,
  .plan-group--couple .plan-metrics,
  .plan-group--couple .plan-card__credits,
  .plan-group--couple .plan-benefits {
    grid-column: 1;
  }

  .plan-group--couple .plan-card__footer {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: stretch;
    justify-content: center;
    margin-top: 0;
    padding-top: 0;
    padding-left: 1.35rem;
    border-left: 1px solid hsla(210, 45%, 58%, 0.22);
  }

  .plan-group--couple .plan-benefits {
    columns: 1;
  }
}

@media (max-width: 719px) {
  .plan-group--couple .plan-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 379px) {
  .plan-group--couple .plan-card--couple {
    padding: 1.15rem;
  }
}

.plan-group__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.plan-group__hint {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.plans {
  display: grid;
  gap: 1rem;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.2rem 1.2rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(160deg, hsla(28, 72%, 56%, 0.06) 0%, transparent 55%),
    var(--bg-elevated);
}

.plan-card--featured {
  border-color: hsla(28, 72%, 56%, 0.42);
  box-shadow:
    0 0 0 1px hsla(28, 72%, 56%, 0.12),
    0 8px 28px hsla(28, 72%, 56%, 0.12);
}

.plan-card--premium {
  border-color: hsla(46, 58%, 58%, 0.32);
}

.plan-card--couple {
  border-color: hsla(210, 45%, 58%, 0.32);
  background:
    linear-gradient(160deg, hsla(210, 45%, 58%, 0.08) 0%, transparent 55%),
    var(--bg-elevated);
}

.plan-card__ribbon {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: hsla(28, 72%, 56%, 0.2);
  color: var(--accent-bright);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-card__head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.plan-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: hsla(28, 72%, 56%, 0.14);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.plan-card__name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.plan-card__tagline,
.plan-card__audience,
.plan-card__credits,
.plan-price__note,
.plan-price__save {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.plan-card__tagline {
  margin-top: 0.2rem;
}

.plan-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  margin: 0;
}

.plan-metrics div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.plan-metrics dt {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-metrics dd {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
}

.plan-benefits {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.plan-benefits li + li {
  margin-top: 0.35rem;
}

.plan-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.plan-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.plan-price__amount {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.plan-price__period {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
}

.plan-price--free {
  font-size: 1.25rem;
  font-weight: 700;
}

.plan-price__save {
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 600;
}

.btn--secondary {
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: none;
}

.plan-card .btn {
  width: 100%;
}

@media (min-width: 900px) {
  .plans--trio {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (hover: hover) {
  .period-toggle__btn:hover {
    color: var(--text);
  }

  .btn--secondary:hover {
    border-color: var(--border-strong);
    background: var(--bg-elevated-hover);
    transform: translateY(-1px);
  }
}

/* Footer */
.foot {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-faint);
  animation: fade-up 0.8s var(--ease) 0.28s both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive — small phones */
@media (max-width: 379px) {
  :root {
    --page-pad-x: max(1rem, env(safe-area-inset-right), env(safe-area-inset-left));
  }

  .top {
    padding-bottom: 1.75rem;
  }

  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding-inline: 0.7rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 9vw, 2.1rem);
  }

  .feature {
    padding: 1.15rem;
  }
}

/* Responsive — tablets portrait */
@media (min-width: 640px) {
  :root {
    --page-pad-x: 2rem;
  }

  .hero {
    max-width: 36rem;
    margin-inline: auto;
  }

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

  .feature:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    align-items: start;
  }

  .feature:last-child .feature-icon {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }
}

/* Responsive — tablets landscape / small laptops */
@media (min-width: 768px) {
  .hero {
    max-width: 42rem;
    padding-top: 1.5rem;
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.25rem);
  }

  .features {
    gap: 1.15rem;
  }

  .feature:last-child {
    display: block;
  }

  .feature:last-child .feature-icon {
    margin-bottom: 1rem;
  }
}

/* Responsive — desktop */
@media (min-width: 1024px) {
  :root {
    --page-pad-x: 2.5rem;
  }

  .page {
    padding-top: max(1.5rem, env(safe-area-inset-top));
  }

  .top {
    padding-bottom: 3.5rem;
  }

  .hero {
    max-width: 46rem;
    padding-top: 2rem;
    padding-bottom: 5rem;
  }

  .features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    padding-bottom: 3rem;
  }

  .feature:last-child {
    grid-column: auto;
  }
}

/* Responsive — wide screens */
@media (min-width: 1280px) {
  :root {
    --page-max: 72rem;
    --page-pad-x: 3rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-lead {
    font-size: 1.1875rem;
    max-width: 38rem;
  }

  .features {
    gap: 1.5rem;
  }

  .feature {
    padding: 1.5rem 1.5rem 1.6rem;
  }
}

/* Responsive — landscape phones */
@media (orientation: landscape) and (max-height: 520px) {
  .top {
    padding-bottom: 1.25rem;
  }

  .hero {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
  }

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

  .features {
    padding-bottom: 1.5rem;
  }
}

/* Responsive — very wide / ultrawide */
@media (min-width: 1600px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .anim-fade-up,
  .anim-reveal {
    opacity: 1;
    transform: none;
  }

  .ambient-orb,
  .ambient-energy {
    animation: none !important;
  }

  .ambient-energy {
    opacity: 0;
  }

  html {
    scroll-behavior: auto;
  }
}
