:root {
  --white: #FFFFFF;
  --paper: #F8F7F5;
  --ink: #0F0F12;
  --muted: #6E6E73;
  --border: #E8E4DF;
  --pink: #F42B8C;
  --magenta: #C4008F;
  --orange: #FF8A1F;
  --yellow: #FFD76A;
  --purple: #8E19FF;
  --gradient: linear-gradient(90deg, #FFE46B 0%, #FF8A1F 24%, #F42B8C 55%, #C4008F 100%);
  --font: "Plus Jakarta Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 28px 80px rgba(15, 15, 18, 0.12);
  --soft-shadow: 0 18px 45px rgba(15, 15, 18, 0.08);
  --radius: 8px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ecebea;
  font-family: var(--font);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -90px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.page-shell {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 36px rgba(15, 15, 18, 0.08);
}

.navbar {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
  min-height: 42px;
  display: grid;
  grid-template-columns: 180px 1fr 170px;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  width: 140px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
}

.brand img {
  width: 118px;
  height: auto;
}

.brand-byline {
  margin-left: 34px;
  color: #e96d58;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links a,
.nav-cta {
  text-decoration: none;
}

.nav-links a {
  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  opacity: 1;
}

.nav-cta {
  justify-self: end;
  padding: 9px 16px;
  border: 1px solid rgba(15, 15, 18, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15, 15, 18, 0.06);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.93;
  font-weight: 800;
}

h1 {
  max-width: 640px;
  margin: 0 auto 18px;
  font-size: clamp(3rem, 5.4vw, 5.15rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5.7vw, 5.7rem);
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.12;
}

p {
  color: var(--muted);
}

em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.script-label {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.92rem, 1.6vw, 1.1rem);
  font-style: italic;
}

.hero-section {
  background: var(--white);
}

.hero-shell {
  min-height: 930px;
  padding: 126px 0 80px;
  display: grid;
  align-items: start;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-copy p:not(.script-label) {
  max-width: 610px;
  margin: 0 auto 22px;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
}

.pill-button {
  min-width: 168px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pill-button span {
  font-size: 0.86rem;
  font-weight: 800;
}

.pill-button small {
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0.72;
}

.pill-button.dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(15, 15, 18, 0.16);
}

.pill-button.light {
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  border-color: var(--border);
  cursor: not-allowed;
}

.pill-button.dark:hover,
.pill-button.dark:focus,
.mini-pill:hover,
.mini-pill:focus {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(15, 15, 18, 0.2);
}

.hero-art {
  position: relative;
  min-height: 580px;
  margin-top: -2px;
  display: grid;
  place-items: center;
}

.hero-gradient-band {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 164px;
  height: 260px;
  background: var(--gradient);
  filter: blur(26px);
  opacity: 0.9;
  animation: bandMove 12s ease-in-out infinite alternate;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: min(350px, 68vw);
  height: 650px;
  border: 13px solid #101013;
  border-radius: 48px;
  background: #101013;
  padding: 10px;
  box-shadow: 0 42px 90px rgba(15, 15, 18, 0.28);
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone-image-frame {
  position: relative;
  z-index: 2;
  width: min(430px, 72vw);
  margin: 0;
  animation: phoneFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 42px 70px rgba(15, 15, 18, 0.22));
}

.phone-image-frame img {
  width: 100%;
  border-radius: 44px;
}

.phone-notch {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 50%;
  width: 110px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #101013;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  padding: 48px 24px 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(244, 43, 140, 0.12), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f8f7f5 100%);
}

.app-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 46px;
}

.app-logo-row img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.phone-greeting {
  font-size: 2.05rem;
  line-height: 1;
  font-weight: 800;
}

.phone-screen p {
  margin: 10px 0 22px;
  font-size: 0.9rem;
}

.voice-orb {
  width: 152px;
  height: 152px;
  margin: 26px auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 28px 60px rgba(244, 43, 140, 0.22);
}

.voice-orb span {
  width: 54px;
  height: 72px;
  border-radius: 28px;
  background: var(--white);
  position: relative;
}

.voice-orb span::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: -24px;
  width: 48px;
  height: 22px;
  border: 6px solid var(--white);
  border-top: 0;
  border-radius: 0 0 24px 24px;
}

.phone-card {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.phone-card small,
.phone-card span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.phone-card strong {
  display: block;
  margin: 6px 0;
  font-size: 1rem;
}

.hero-float {
  position: absolute;
  z-index: 3;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  font-size: 0.78rem;
  font-weight: 800;
  animation: cardFloat 5.5s ease-in-out infinite;
}

.hero-float-left {
  left: clamp(4px, 18vw, 280px);
  top: 220px;
}

.hero-float-right {
  right: clamp(4px, 17vw, 260px);
  top: 280px;
  animation-delay: -1.5s;
}

.hero-float-bottom {
  left: clamp(24px, 23vw, 370px);
  bottom: 96px;
  animation-delay: -2.6s;
}

.designed-section {
  padding: 96px 0 86px;
  background: var(--white);
}

.designed-top {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}

.designed-top h2 {
  max-width: 760px;
}

.designed-top p {
  margin-bottom: 24px;
  font-size: 0.98rem;
}

.designed-copy-card {
  display: grid;
  gap: 20px;
}

.designed-photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  margin: 0;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(15, 15, 18, 0.1);
}

.designed-photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: 50% 28%;
}

.small-feature-row {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 70px);
}

.small-feature-row article {
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.small-feature-row p,
.micro-grid p,
.feature-grid p,
.safety-grid p,
.case-row p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.gradient-block {
  padding: 0 0 96px;
  background: var(--white);
}

.gradient-image-placeholder {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.28), transparent 24%),
    var(--gradient);
  background-size: 160% 160%;
  animation: gradientShift 12s ease-in-out infinite alternate;
}

.gradient-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
}

.gradient-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 84%, rgba(244, 43, 140, 0.62), transparent 34%),
    linear-gradient(90deg, rgba(15, 15, 18, 0.74) 0%, rgba(15, 15, 18, 0.34) 48%, rgba(15, 15, 18, 0.12) 100%);
}

.gradient-image-placeholder::after,
.wide-gradient-card::after,
.square-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
  transform: translateX(-100%);
  animation: shimmerMove 4.5s linear infinite;
}

.gradient-image-placeholder::after {
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 215, 106, 0.2), rgba(244, 43, 140, 0.22));
  transform: none;
  animation: none;
}

.gradient-image-placeholder div {
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.gradient-image-placeholder h2 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  margin-bottom: 16px;
}

.gradient-image-placeholder p,
.gradient-image-placeholder .script-label {
  color: var(--white);
}

.gradient-image-placeholder > span {
  position: relative;
  z-index: 3;
  align-self: center;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  letter-spacing: 0;
}

.editorial-section {
  padding: 82px 0 92px;
  background: var(--paper);
}

.top-card-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) 1fr;
  gap: 18px;
  align-items: stretch;
}

.mini-proof,
.wide-gradient-card,
.built-layout,
.curve-cta,
.work-everyday,
.card-grid article,
.steps-grid article,
.chat-demo,
.case-row article,
.download-panel,
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.mini-proof {
  padding: 22px;
}

.dot-stack {
  display: flex;
  margin-bottom: 18px;
}

.dot-stack span {
  width: 28px;
  height: 28px;
  margin-right: -8px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--gradient);
}

.wide-gradient-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 26px;
  color: var(--white);
  background: var(--gradient);
  background-size: 160% 160%;
  animation: gradientShift 10s ease-in-out infinite alternate;
}

.wide-gradient-card h3,
.wide-gradient-card p {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 340px;
}

.wide-gradient-card > span {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 800;
  opacity: 0.72;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 30px 72px rgba(15, 15, 18, 0.12);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame-square {
  min-height: 430px;
  aspect-ratio: 1;
}

.photo-frame-square figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(14px);
}

.built-layout {
  margin-top: 64px;
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: center;
}

.built-layout h2,
.work-everyday h2 {
  font-size: clamp(2.2rem, 4.7vw, 4.6rem);
}

.side-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.side-list li {
  padding-left: 18px;
  border-left: 3px solid var(--pink);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.square-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 15, 18, 0.92), rgba(255, 255, 255, 0.92)),
    var(--paper);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.square-placeholder span {
  position: relative;
  z-index: 2;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(15, 15, 18, 0.5);
}

.blue-pink {
  margin-top: 24px;
  min-height: 390px;
  background:
    radial-gradient(circle at 30% 25%, #1397ff, transparent 32%),
    linear-gradient(135deg, #081d51 0%, #1546a8 40%, #f42b8c 100%);
}

.curve-cta {
  position: relative;
  overflow: hidden;
  margin-top: 54px;
  padding: 64px 24px 38px;
  text-align: center;
}

.curve-cta h2 {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
}

.mini-pill {
  display: inline-flex;
  margin-top: 4px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
}

.curve-card-row {
  margin: 42px auto 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  transform: perspective(900px) rotateX(7deg);
}

.curve-card-row div {
  min-height: 170px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--gradient);
  background-size: 180% 180%;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
  animation: cardFloat 6s ease-in-out infinite;
}

.curve-card-row div img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curve-card-row div::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 15, 18, 0.02), rgba(15, 15, 18, 0.46));
}

.curve-card-row div span {
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: start;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(15, 15, 18, 0.12);
}

.curve-card-row div:nth-child(2n) {
  transform: translateY(22px);
  animation-delay: -1.6s;
}

.work-everyday {
  margin-top: 70px;
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.hero-six-frame {
  margin-top: 24px;
  aspect-ratio: 1;
}

.hero-six-frame img {
  object-fit: cover;
}

.work-subtitle {
  margin-bottom: 30px;
  color: var(--ink);
  font-weight: 800;
}

.micro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.micro-grid article span,
.feature-grid article span {
  display: block;
  margin-bottom: 10px;
  color: var(--pink);
  font-weight: 800;
  font-size: 0.78rem;
}

.content-section,
.faq-section,
.download-section {
  padding: 92px 0;
  background: var(--white);
}

.content-section:nth-of-type(odd) {
  background: var(--paper);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.35rem, 5.2vw, 5rem);
}

.section-heading p {
  font-size: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card-grid article,
.steps-grid article,
.case-row article {
  padding: 24px;
}

.problem-grid article {
  min-height: 128px;
  display: flex;
  align-items: end;
  font-weight: 800;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 247, 245, 0.94)),
    radial-gradient(circle at 0 0, rgba(244, 43, 140, 0.16), transparent 38%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.steps-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.chat-demo {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 24px;
  display: grid;
  gap: 12px;
}

.chat-demo p {
  width: fit-content;
  max-width: 86%;
  margin: 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 700;
}

.chat-demo p:nth-of-type(1) {
  justify-self: end;
  background: var(--ink);
  color: var(--white);
}

.chat-demo p:nth-of-type(2) {
  background: var(--paper);
  color: var(--muted);
}

.case-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.download-section {
  background: var(--paper);
}

.download-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 74px) 24px;
  text-align: center;
  background: var(--white);
}

.download-panel::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 44%;
  height: 130px;
  background: var(--gradient);
  filter: blur(38px);
  opacity: 0.46;
  animation: bandMove 10s ease-in-out infinite alternate;
}

.download-panel > * {
  position: relative;
  z-index: 2;
}

.download-panel h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.download-panel p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.download-note {
  margin-top: 16px;
  font-size: 0.9rem;
}

.download-note a {
  color: var(--ink);
  font-weight: 800;
}

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

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  position: relative;
  width: 100%;
  min-height: 68px;
  padding: 20px 58px 20px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
}

.site-footer {
  padding: 58px 0 32px;
  background: #101013;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.8fr;
  gap: 34px;
}

.footer-logo {
  width: 180px;
  filter: invert(1) grayscale(1) brightness(2);
}

.footer-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid nav,
.footer-grid address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus {
  color: var(--white);
}

.copyright {
  width: min(var(--container), calc(100% - 56px));
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.44);
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 132px 24px 80px;
}

.legal-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.legal-card h1 {
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card a {
  font-weight: 800;
}

.back-home {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes gradientShift {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes bandMove {
  from {
    transform: translateX(-4%) scaleX(0.96);
  }
  to {
    transform: translateX(4%) scaleX(1.04);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes shimmerMove {
  to {
    transform: translateX(100%);
  }
}

/* Polished unified redesign */
body {
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 228, 107, 0.24), transparent 24%),
    radial-gradient(circle at 12% 28%, rgba(244, 43, 140, 0.08), transparent 30%),
    radial-gradient(circle at 88% 44%, rgba(142, 25, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #faf8f6 42%, #ffffff 100%);
}

main {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 96px;
}

.hero-section,
.designed-section,
.gradient-block,
.editorial-section,
.content-section,
.faq-section,
.download-section {
  background: transparent !important;
}

.designed-section,
.editorial-section,
.content-section,
.faq-section,
.download-section {
  position: relative;
}

.designed-section::before,
.editorial-section::before,
.content-section::before,
.faq-section::before,
.download-section::before {
  content: "";
  position: absolute;
  inset: 20px -2vw;
  z-index: -1;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5)),
    radial-gradient(circle at 12% 20%, rgba(244, 43, 140, 0.055), transparent 34%),
    radial-gradient(circle at 88% 60%, rgba(255, 138, 31, 0.07), transparent 30%);
}

.editorial-section::before,
.download-section::before {
  background:
    linear-gradient(180deg, rgba(248, 247, 245, 0.9), rgba(255, 255, 255, 0.7)),
    radial-gradient(circle at 18% 16%, rgba(244, 43, 140, 0.08), transparent 32%),
    radial-gradient(circle at 80% 40%, rgba(255, 215, 106, 0.16), transparent 30%);
}

.content-section:nth-of-type(odd) {
  background: transparent;
}

.mini-proof,
.wide-gradient-card,
.built-layout,
.curve-cta,
.work-everyday,
.card-grid article,
.steps-grid article,
.chat-demo,
.case-row article,
.download-panel,
.faq-item,
.legal-card {
  border: 1px solid rgba(232, 228, 223, 0.64);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at 12% 0%, rgba(244, 43, 140, 0.08), transparent 38%);
  box-shadow: 0 24px 70px rgba(15, 15, 18, 0.075);
  backdrop-filter: blur(18px);
}

.wide-gradient-card {
  background:
    linear-gradient(90deg, rgba(15, 15, 18, 0.68), rgba(244, 43, 140, 0.34)),
    url("../assets/images/image-hero-3.jpg") center / cover;
}

.wide-gradient-card h3,
.wide-gradient-card p,
.wide-gradient-card > span {
  color: var(--white);
}

.card-grid article,
.case-row article,
.steps-grid article,
.micro-grid article,
.small-feature-row article {
  position: relative;
  overflow: hidden;
}

.card-grid article::after,
.case-row article::after,
.steps-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 43, 140, 0.14), transparent 66%);
}

.card-icon,
.case-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 46px;
  margin-bottom: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 15, 18, 0.92), rgba(15, 15, 18, 0.78)),
    var(--gradient);
  box-shadow: 0 14px 28px rgba(15, 15, 18, 0.18);
  font-size: 0.78rem;
  font-weight: 800;
}

.case-icon {
  color: var(--pink);
  background: rgba(244, 43, 140, 0.1);
  box-shadow: none;
}

.problem-grid article {
  min-height: 250px;
  display: block;
  padding: 30px;
}

.problem-grid article h3,
.problem-grid article p {
  position: relative;
  z-index: 1;
}

.problem-grid article p {
  max-width: 360px;
  margin-bottom: 0;
}

.steps-grid article {
  min-height: 236px;
  padding: 28px;
}

.steps-grid article p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 0.86rem;
}

.steps-grid span {
  width: 48px;
  height: 48px;
  box-shadow: 0 12px 28px rgba(15, 15, 18, 0.18);
}

.chat-demo {
  position: relative;
  max-width: 900px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 247, 245, 0.78)),
    radial-gradient(circle at 72% 0%, rgba(255, 138, 31, 0.15), transparent 38%);
}

.chat-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(244, 43, 140, 0.1);
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-grid article {
  min-height: 250px;
  padding: 30px;
}

.feature-grid article span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(244, 43, 140, 0.1);
}

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

.case-row article {
  min-height: 220px;
  padding: 28px;
}

.safety-grid article {
  min-height: 230px;
  padding: 28px;
}

.curve-cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 248, 246, 0.78)),
    radial-gradient(circle at 50% 110%, rgba(244, 43, 140, 0.13), transparent 42%);
}

.curve-card-row div {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(244, 43, 140, 0.12);
}

.curve-card-row div::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  pointer-events: none;
}

.work-everyday {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 247, 245, 0.86)),
    radial-gradient(circle at 18% 90%, rgba(19, 151, 255, 0.12), transparent 36%);
}

.micro-grid article {
  padding: 18px 0 18px 22px;
  border-left: 2px solid rgba(244, 43, 140, 0.18);
}

.download-panel {
  border-radius: 32px;
}

.faq-item {
  border-radius: 18px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 86px 0 34px;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 43, 140, 0.34), transparent 34%),
    radial-gradient(circle at 86% 32%, rgba(255, 138, 31, 0.22), transparent 28%),
    linear-gradient(145deg, #111114 0%, #191316 58%, #0f0f12 100%);
  color: rgba(255, 255, 255, 0.78);
}

.footer-glow {
  position: absolute;
  left: 50%;
  top: -80px;
  width: 680px;
  height: 180px;
  transform: translateX(-50%);
  background: var(--gradient);
  filter: blur(70px);
  opacity: 0.35;
}

.footer-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.42fr) minmax(230px, 0.52fr);
  gap: clamp(28px, 7vw, 90px);
}

.footer-logo {
  width: 190px;
  margin-bottom: 30px;
}

.footer-brand-block h2 {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.2rem, 4.8vw, 5rem);
}

.footer-brand-block p {
  max-width: 460px;
  margin-bottom: 24px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink) !important;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(255, 255, 255, 0.12);
}

.footer-links {
  align-content: start;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 10px;
  color: var(--white);
}

.footer-links span {
  color: rgba(255, 255, 255, 0.56);
}

.footer-links a,
.footer-links span {
  line-height: 1.45;
}

.copyright {
  position: relative;
  z-index: 1;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-page {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 215, 106, 0.18), transparent 26%),
    radial-gradient(circle at 12% 44%, rgba(244, 43, 140, 0.08), transparent 30%),
    #ffffff;
}

.legal-main {
  max-width: var(--container);
  padding: 142px 0 92px;
}

.legal-hero {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.legal-hero h1 {
  max-width: 900px;
}

.legal-hero p:not(.script-label) {
  max-width: 640px;
  margin: 0 auto;
}

.legal-card {
  padding: clamp(28px, 5vw, 56px);
}

.legal-note {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(248, 247, 245, 0.86);
}

.legal-note p {
  margin: 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.legal-grid article {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(232, 228, 223, 0.72);
}

.legal-grid h2 {
  margin-top: 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.1;
}

@media (max-width: 1080px) {
  .navbar {
    grid-template-columns: 150px 1fr auto;
  }

  .hero-shell {
    min-height: auto;
  }

  .designed-top,
  .built-layout,
  .work-everyday {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 860px) {
  .page-shell,
  .navbar,
  .copyright {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    padding: 12px 0;
  }

  .navbar {
    grid-template-columns: 1fr auto auto;
  }

  .brand {
    width: 126px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 70px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px;
    opacity: 1;
  }

  .hero-shell {
    padding-top: 104px;
  }

  .hero-art {
    min-height: 540px;
    margin-top: 8px;
  }

  .hero-gradient-band {
    left: -6%;
    right: -6%;
    top: 150px;
  }

  .hero-float-left {
    left: 4px;
  }

  .hero-float-right {
    right: 4px;
  }

  .hero-float-bottom {
    left: 20px;
  }

  .top-card-row,
  .small-feature-row,
  .card-grid,
  .micro-grid {
    grid-template-columns: 1fr;
  }

  .curve-card-row {
    grid-template-columns: repeat(3, 1fr);
    transform: none;
  }

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

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .hero-copy p:not(.script-label) {
    font-size: 0.94rem;
  }

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

  .pill-button {
    width: 100%;
  }

  .phone-mockup {
    width: min(310px, 86vw);
    height: 590px;
  }

  .hero-art {
    min-height: 508px;
  }

  .phone-screen {
    padding-left: 20px;
    padding-right: 20px;
  }

  .phone-greeting {
    font-size: 1.78rem;
  }

  .voice-orb {
    width: 136px;
    height: 136px;
  }

  .hero-float {
    padding: 10px 12px;
    font-size: 0.68rem;
  }

  .gradient-image-placeholder {
    min-height: 460px;
    display: grid;
    align-content: end;
  }

  .gradient-image-placeholder > span {
    justify-self: start;
  }

  .built-layout,
  .work-everyday,
  .curve-cta,
  .download-panel {
    padding: 26px;
  }

  .square-placeholder,
  .blue-pink {
    min-height: 310px;
  }

  .steps-grid,
  .case-row,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .curve-card-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .curve-card-row div {
    min-height: 140px;
  }

  .content-section,
  .faq-section,
  .download-section,
  .designed-section,
  .editorial-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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