/* ============================================================
   TITN — Landing
   Palette mirrors the app: bg #101113, surface #191b1f,
   accent #f97316, text #f4f4f1.
   ============================================================ */

:root {
  --bg: #0b0c0e;
  --bg-2: #101113;
  --surface: #191b1f;
  --surface-2: #202329;
  --border: #2a2d32;
  --text: #f4f4f1;
  --muted: #c9cbc7;
  --subtle: #81868f;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.14);
  --display: "Archivo", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --max: 1240px;
  --pad: clamp(20px, 5vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #0b0c0e; }

/* ---------- type ---------- */

.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow--center { text-align: center; }

.h2 {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.h2--center { text-align: center; }

.accent { color: var(--accent); font-style: normal; }

.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 26px;
}
.lead--center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: 10px;
  overflow: hidden;
  /* transform is GSAP-owned (magnetic hover) — never transition it */
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.3s;
  will-change: transform;
}
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--solid { background: var(--accent); color: #16100a; }
.btn--solid:hover { background: #ff8a33; box-shadow: 0 10px 34px rgba(249, 115, 22, 0.35); }
.btn--ghost { border: 1px solid var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn__apple { width: 20px; height: 20px; flex: none; }

/* shine sweep */
.btn--solid::before {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn--solid:hover::before { left: 130%; }

/* ---------- preloader ---------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: grid;
  place-items: center;
}
.preloader__glyph { width: 84px; opacity: 0; }

/* ---------- embers canvas ---------- */

#embers {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- scroll progress ---------- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  background: linear-gradient(90deg, var(--accent), #ffb066);
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
}

/* ---------- word-mask split (JS-driven headline reveals) ---------- */

.wm {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  /* keep descenders inside the mask */
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.wm .w { display: inline-block; will-change: transform; }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--pad);
  background: rgba(11, 12, 14, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(42, 45, 50, 0.6);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.nav--hidden { transform: translateY(-100%); }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__glyph { height: 30px; width: auto; }
.nav__wordmark { height: 13px; width: auto; opacity: 0.95; }
.nav__links { display: flex; gap: clamp(16px, 3vw, 36px); }
.nav__links a {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 3px;
  background: linear-gradient(var(--accent), var(--accent)) left bottom / 0% 2px no-repeat;
  transition: color 0.2s, background-size 0.3s ease;
}
.nav__links a:hover { color: var(--accent); background-size: 100% 2px; }
.nav__cta { padding: 10px 20px; font-size: 13px; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px var(--pad) 60px;
  overflow: hidden;
  z-index: 1;
}
.hero__glow {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.16) 0%, rgba(249, 115, 22, 0.05) 38%, transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}
.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-bottom: 30px;
}
.hero__brand-glyph { height: clamp(56px, 6.4vw, 84px); width: auto; }
.hero__brand-wordmark { height: clamp(16px, 1.8vw, 22px); width: auto; }

.hero__trial {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(249, 115, 22, 0.4);
  padding: 7px 15px 7px 13px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero__trial-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: trialPulse 2s ease-out infinite;
}
@keyframes trialPulse {
  0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}
.reduced-motion .hero__trial-dot { animation: none; }

.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 110%;
  font-size: clamp(36px, 4.8vw, 69px);
  line-height: 0.97;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 26px;
  white-space: nowrap;
}
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: inline-block; }
.hero__sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--muted);
  max-width: 44ch;
  margin-bottom: 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  list-style: none;
  color: var(--subtle);
  font-size: 14px;
}
.hero__ticks li { display: flex; align-items: center; gap: 8px; }
.hero__ticks li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
  flex: none;
}

.hero__device {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

/* ---------- phone mockups ---------- */

.phone {
  position: relative;
  width: min(310px, 72vw);
  aspect-ratio: 1206 / 2622;
  border-radius: clamp(38px, 12%, 52px);
  border: 3px solid #2e3138;
  outline: 6px solid #17181c;
  background: #000;
  overflow: hidden;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.65),
    0 12px 28px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.phone img { width: 100%; height: 100%; object-fit: cover; }

.phone--hero { z-index: 2; transform: rotate(3deg); }
.phone--hero-back {
  position: absolute;
  top: 9%;
  left: 50%;
  width: min(265px, 60vw);
  transform: translateX(-86%) rotate(-9deg) scale(0.96);
  z-index: 1;
  opacity: 0.85;
  filter: brightness(0.7) saturate(0.9);
}

.feature__media .phone--behind {
  position: absolute;
  top: 5%;
  left: 54%;
  width: min(272px, 60vw);
  transform: rotate(8deg);
  filter: brightness(0.65);
  opacity: 0.9;
  z-index: -1;
}

/* ---------- scroll hint ---------- */

.hero__scrollhint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 38px;
  border: 1.5px solid var(--subtle);
  border-radius: 12px;
  opacity: 0.6;
}
.hero__scrollhint span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollhint 1.8s ease-in-out infinite;
}
@keyframes scrollhint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- marquee ---------- */

.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 18px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 115%;
  font-size: clamp(22px, 3.4vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding-right: 0.5em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 244, 241, 0.35);
}
.marquee__track span i { font-style: normal; color: var(--accent); -webkit-text-stroke: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}
/* when GSAP drives the marquee (scroll-velocity reactive), CSS animation is off */
.marquee__track.js-driven { animation: none; }

/* ---------- feature sections ---------- */

.feature {
  position: relative;
  z-index: 1;
  padding: clamp(90px, 12vh, 150px) var(--pad);
}
.feature--panel {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  max-width: var(--max);
  margin: 0 auto;
}
.feature--flip .feature__copy { order: 2; }
.feature--flip .feature__media { order: 1; }

/* "For Women" — recolours the accent to the in-app pink theme (#D4548A)
   for everything scoped inside this section (eyebrow, accent, tick marks). */
.feature--her {
  --accent: #d4548a;
  --accent-soft: rgba(212, 84, 138, 0.14);
  overflow: hidden;
}
.feature--her::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(circle, rgba(212, 84, 138, 0.16) 0%, rgba(212, 84, 138, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.feature--her .feature__inner { position: relative; z-index: 1; }

.feature__media {
  position: relative;
  display: flex;
  justify-content: center;
}

.ticks {
  list-style: none;
  display: grid;
  gap: 13px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 50ch;
}
.ticks li { display: flex; gap: 12px; align-items: baseline; }
.ticks li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: rotate(45deg) translateY(-1px);
  flex: none;
}

.pro-badge {
  display: inline-block;
  background: var(--accent);
  color: #16100a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 3px 9px;
  border-radius: 5px;
  vertical-align: 2px;
  margin-left: 6px;
}

/* ---------- cards grid ---------- */

.grid-section {
  position: relative;
  z-index: 1;
  padding: clamp(90px, 12vh, 150px) var(--pad);
  max-width: calc(var(--max) + 2 * var(--pad));
  margin: 0 auto;
}
.grid-section__head { text-align: center; margin-bottom: clamp(40px, 6vh, 70px); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 28px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(249, 115, 22, 0.55); }
.card__num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 19px;
  margin-bottom: 18px;
}
.card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.card p { color: var(--subtle); font-size: 14.5px; }

/* ---------- pro ---------- */

.pro {
  position: relative;
  z-index: 1;
  padding: clamp(90px, 12vh, 150px) var(--pad);
  background:
    radial-gradient(60% 90% at 50% 0%, rgba(249, 115, 22, 0.12) 0%, transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pro__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.pro__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 44px;
  text-align: left;
}
.pro__points > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 28px;
  display: grid;
  gap: 8px;
}
.pro__points strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pro__points span { color: var(--subtle); font-size: 14.5px; }
.pro__points-pro { border-color: rgba(249, 115, 22, 0.5) !important; }
.pro__points-pro strong { color: var(--accent); }

.pro__trial {
  margin-top: 32px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 2.1vw, 24px);
  letter-spacing: 0.01em;
  color: var(--text);
}

/* ---------- cta ---------- */

.cta {
  position: relative;
  z-index: 1;
  padding: clamp(110px, 16vh, 190px) var(--pad);
  text-align: center;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  height: 70vw;
  max-width: 1100px;
  max-height: 800px;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta__glyph { width: clamp(60px, 8vw, 96px); margin: 0 auto 30px; position: relative; }
.cta__title {
  position: relative;
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 115%;
  font-size: clamp(44px, 8vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.cta__actions { position: relative; display: flex; justify-content: center; gap: 14px; }
.cta__fine { position: relative; margin-top: 22px; color: var(--subtle); font-size: 14px; }

/* ---------- footer ---------- */

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px var(--pad);
  border-top: 1px solid var(--border);
  color: var(--subtle);
  font-size: 13.5px;
}
.footer__wordmark { height: 12px; opacity: 0.7; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__legal a {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--accent); }

/* ============================================================
   Legal / utility pages (privacy, terms, delete account)
   ============================================================ */

.legal {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(120px, 16vh, 180px) var(--pad) clamp(70px, 10vh, 110px);
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 30px;
  transition: color 0.2s;
}
.legal__back:hover { color: var(--accent); }
.legal h1 {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.legal__updated {
  color: var(--subtle);
  font-size: 14px;
  margin-bottom: 48px;
}
.legal__intro {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--muted);
  margin-bottom: 40px;
}
.legal h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.01em;
  margin: 44px 0 14px;
}
.legal h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  margin: 26px 0 10px;
}
.legal p { color: var(--muted); margin-bottom: 16px; }
.legal ul { list-style: none; display: grid; gap: 11px; margin: 0 0 20px; }
.legal ul li { color: var(--muted); display: flex; gap: 12px; align-items: baseline; }
.legal ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: rotate(45deg) translateY(-1px);
  flex: none;
}
.legal a:not(.legal__back):not(.btn) { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--text); }
.legal__contact {
  margin-top: 48px;
  padding: 24px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.legal__contact p { margin-bottom: 0; }

/* ---------- delete-account form ---------- */

.delete-card {
  max-width: 520px;
  margin: 34px 0 0;
  padding: 30px 30px 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
}
.delete-card.is-danger { border-color: rgba(242, 139, 130, 0.5); }
.delete-field { display: grid; gap: 7px; margin-bottom: 18px; }
.delete-field label {
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.delete-field input[type="email"],
.delete-field input[type="password"] {
  font-family: var(--body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  transition: border-color 0.2s;
}
.delete-field input:focus { outline: none; border-color: var(--accent); }
.delete-confirm {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 4px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.delete-confirm input { margin-top: 3px; width: 17px; height: 17px; accent-color: #f28b82; flex: none; }
.btn--danger {
  background: #f28b82;
  color: #2a0e0b;
  width: 100%;
  justify-content: center;
  border: none;
}
.btn--danger:hover { background: #f6a59e; box-shadow: 0 10px 30px rgba(242, 139, 130, 0.3); }
.btn--danger:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }
.delete-status {
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 1.55;
  display: none;
}
.delete-status.is-error { display: block; color: #f28b82; }
.delete-status.is-success {
  display: block;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}

/* ---------- reveal defaults (JS overrides) ---------- */

[data-reveal] { opacity: 0; }
.no-js [data-reveal], .reduced-motion [data-reveal] { opacity: 1; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__links { display: none; }

  .hero { padding-top: 110px; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__copy { text-align: center; }
  .hero__brand { margin-inline: auto; }
  .hero__sub, .lead { margin-inline: auto; }
  .hero__actions, .hero__ticks { justify-content: center; }
  .hero__device { margin-bottom: 20px; }
  .phone--hero-back { display: none; }

  .feature__inner { grid-template-columns: 1fr; gap: 48px; }
  .feature--flip .feature__copy { order: 1; }
  .feature--flip .feature__media { order: 2; }
  .feature__copy { text-align: center; }
  .ticks { text-align: left; margin-inline: auto; }
  .feature__media .phone--behind { display: none; }

  .pro__points { grid-template-columns: 1fr; }

  .footer { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .btn--lg { width: 100%; justify-content: center; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .cta__actions { flex-direction: column; align-items: center; }
  .cta__actions .btn { width: 100%; max-width: 360px; justify-content: center; }
}
