:root {
  --paper: #fbfaf6;
  --mist: #eef3ed;
  --sage: #54786f;
  --sage-deep: #284e47;
  --cedar: #b96245;
  --brass: #d5aa58;
  --ink: #23241f;
  --muted: #686d62;
  --line: #dedbd0;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(56, 62, 51, 0.16);
  --soft-shadow: 0 14px 36px rgba(56, 62, 51, 0.1);
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    linear-gradient(90deg, rgba(84, 120, 111, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(84, 120, 111, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px, 42px 42px, auto;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(238, 243, 237, 0.78), rgba(251, 250, 246, 0.88) 42%, rgba(242, 237, 226, 0.64));
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  height: 74px;
  margin: 0 auto;
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.02rem;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--paper);
  font-family: "Fraunces", serif;
  font-weight: 650;
  background: var(--sage-deep);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(40, 78, 71, 0.22);
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a,
.nav-cta {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--sage-deep);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 11px 18px;
  color: var(--paper);
  font-weight: 800;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(35, 36, 31, 0.16);
}

.section-band,
.problem-section,
.workflow,
.custom-assistants,
.pricing {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 56px;
  min-height: 760px;
  padding: 48px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cedar);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Fraunces", serif;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: 4.9rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.1rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-subtitle,
.section-intro p,
.problem-item p,
.capability-card p,
.timeline-item p,
.trust-item p,
.plan p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--sage-deep);
  box-shadow: 0 18px 34px rgba(40, 78, 71, 0.22);
}

.button-primary:hover {
  box-shadow: 0 22px 42px rgba(40, 78, 71, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(84, 120, 111, 0.26);
}

.button-whatsapp {
  color: var(--paper);
  background: #1d7f58;
  box-shadow: 0 16px 30px rgba(29, 127, 88, 0.2);
}

.button-whatsapp:hover {
  box-shadow: 0 20px 38px rgba(29, 127, 88, 0.25);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.proof-strip span {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(84, 120, 111, 0.16);
  border-radius: 999px;
}

.hero-visual {
  min-width: 0;
}

.ambient-panel {
  position: relative;
  display: grid;
  min-height: 640px;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 16%, rgba(213, 170, 88, 0.17), transparent 30%),
    linear-gradient(135deg, rgba(238, 243, 237, 0.92), rgba(255, 255, 255, 0.84) 48%, rgba(233, 226, 211, 0.78));
  border: 1px solid rgba(84, 120, 111, 0.16);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ambient-panel::before {
  position: absolute;
  inset: 32px;
  content: "";
  border: 1px solid rgba(84, 120, 111, 0.16);
  border-radius: 24px;
}

.phone {
  position: relative;
  z-index: 1;
  width: 330px;
  min-height: 620px;
  padding: 14px;
  color: var(--ink);
  background: #1f211d;
  border-radius: 38px;
  box-shadow: 0 30px 80px rgba(35, 36, 31, 0.28);
}

.phone-main {
  transform: rotate(-2deg);
}

.phone-side {
  width: 312px;
  min-height: 590px;
  transform: rotate(2deg);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  padding: 0 14px;
  color: rgba(251, 250, 246, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
}

.phone-status {
  color: #b8dbc9;
}

.app-screen {
  min-height: 560px;
  padding: 22px;
  background: linear-gradient(180deg, #f7f5ed, #ffffff 52%, #eef3ed);
  border-radius: 28px;
  overflow: hidden;
}

.compact-screen {
  min-height: 530px;
}

.assistant-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.assistant-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--paper);
  font-family: "Fraunces", serif;
  font-size: 1.32rem;
  font-weight: 650;
  background: var(--sage-deep);
  border-radius: 50%;
}

.app-label,
.brief-heading,
.floating-card p,
.brief-preview p,
.reply-panel p,
.plan-name {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.assistant-row h2 {
  margin: 2px 0 0;
  font-size: 1.55rem;
  line-height: 1.08;
}

.brief-panel,
.voice-card,
.reply-panel,
.brief-preview,
.mini-item,
.action-row {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(84, 120, 111, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
}

.brief-panel {
  padding: 18px;
  margin-bottom: 14px;
  background: var(--sage-deep);
  color: var(--paper);
}

.brief-heading {
  display: flex;
  justify-content: space-between;
  color: rgba(251, 250, 246, 0.76);
}

.brief-panel p {
  margin: 14px 0 0;
  color: rgba(251, 250, 246, 0.94);
  line-height: 1.55;
}

.voice-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  margin-bottom: 14px;
}

.voice-card strong,
.floating-card strong,
.reply-panel strong,
.brief-preview strong {
  display: block;
  margin-top: 4px;
  line-height: 1.4;
}

.voice-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 48px;
  background: rgba(213, 170, 88, 0.18);
  border-radius: 14px;
}

.voice-wave span {
  display: block;
  width: 4px;
  height: 18px;
  background: var(--cedar);
  border-radius: 999px;
  animation: voicePulse 1.5s ease-in-out infinite;
}

.voice-wave span:nth-child(2) { height: 28px; animation-delay: 120ms; }
.voice-wave span:nth-child(3) { height: 38px; animation-delay: 240ms; }
.voice-wave span:nth-child(4) { height: 26px; animation-delay: 360ms; }
.voice-wave span:nth-child(5) { height: 16px; animation-delay: 480ms; }

.mini-list,
.action-stack {
  display: grid;
  gap: 10px;
}

.mini-item,
.action-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.mini-item strong,
.action-row strong {
  display: block;
  font-size: 0.9rem;
}

.mini-item p,
.action-row p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.mini-icon,
.capability-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--sage-deep);
  background: rgba(84, 120, 111, 0.12);
  border-radius: 50%;
}

.mini-icon::before,
.mini-icon::after,
.capability-icon::before,
.capability-icon::after {
  position: absolute;
  content: "";
}

.icon-alarm::before {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-alarm::after {
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: translate(3px, -1px) rotate(45deg);
  transform-origin: left center;
}

.icon-mail::before {
  width: 19px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-mail::after {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-4px) rotate(45deg);
}

.icon-voice::before {
  width: 8px;
  height: 19px;
  background: currentColor;
  border-radius: 999px;
}

.icon-voice::after {
  width: 19px;
  height: 19px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-radius: 0 0 12px 12px;
  transform: translateY(2px);
}

.icon-brief::before,
.icon-calendar::before {
  width: 19px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.icon-brief::after {
  width: 11px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(2px);
}

.icon-calendar::after {
  width: 15px;
  height: 2px;
  background: currentColor;
  transform: translateY(-5px);
}

.icon-memory::before {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-memory::after {
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: -9px 5px 0 -1px currentColor, 9px 5px 0 -1px currentColor;
  transform: translateY(-2px);
}

.icon-insight::before {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-insight::after {
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(3px, -2px) rotate(-45deg);
}

.icon-task::before {
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.icon-task::after {
  width: 11px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(1px, -1px) rotate(-45deg);
}

.icon-reply::before {
  width: 20px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.icon-reply::after {
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-3px, 8px) rotate(-16deg);
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: 232px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(84, 120, 111, 0.16);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(35, 36, 31, 0.16);
  backdrop-filter: blur(18px);
}

.notification-card {
  top: 94px;
  right: 30px;
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
}

.notif-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  background: var(--cedar);
  border-radius: 50%;
}

.alarm-card {
  bottom: 64px;
  left: 26px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.card-actions button {
  min-height: 34px;
  color: var(--sage-deep);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(84, 120, 111, 0.1);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.problem-section,
.capabilities,
.workflow,
.trust,
.custom-assistants,
.pricing,
.final-cta {
  padding: 96px 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-intro p {
  max-width: 650px;
  font-size: 1rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(84, 120, 111, 0.2);
  border: 1px solid rgba(84, 120, 111, 0.2);
  border-radius: var(--radius-lg);
}

.problem-item {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.66);
}

.problem-number {
  display: block;
  margin-bottom: 70px;
  color: var(--cedar);
  font-weight: 800;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.capability-card {
  min-height: 240px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(84, 120, 111, 0.16);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 28px rgba(56, 62, 51, 0.07);
}

.capability-icon {
  margin-bottom: 28px;
}

.day-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 58px;
  align-items: center;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  position: relative;
  padding: 24px 24px 24px 34px;
  background: rgba(255, 255, 255, 0.58);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.timeline-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--cedar);
  font-size: 0.78rem;
  font-weight: 800;
}

.workflow-visual {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(84, 120, 111, 0.18), rgba(255, 255, 255, 0.72) 50%, rgba(185, 98, 69, 0.12)),
    repeating-linear-gradient(90deg, rgba(84, 120, 111, 0.12) 0 1px, transparent 1px 22px);
  border: 1px solid rgba(84, 120, 111, 0.16);
  box-shadow: var(--shadow);
}

.reply-panel {
  margin-top: 16px;
  padding: 16px;
  background: #fff8ea;
}

.brief-preview {
  position: absolute;
  right: 24px;
  bottom: 56px;
  width: 230px;
  padding: 18px;
}

.trust-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-item,
.plan {
  min-height: 220px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(84, 120, 111, 0.16);
  border-radius: var(--radius-sm);
}

.custom-assistants {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: center;
}

.custom-copy {
  max-width: 610px;
}

.custom-copy p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.custom-system {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(238, 243, 237, 0.92)),
    repeating-linear-gradient(135deg, rgba(84, 120, 111, 0.1) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(84, 120, 111, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.system-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.system-header strong {
  display: block;
  margin-top: 2px;
  font-size: 1.05rem;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.system-grid article {
  min-height: 190px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(84, 120, 111, 0.14);
  border-radius: var(--radius-sm);
}

.system-grid .mini-icon {
  margin-bottom: 24px;
}

.system-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.plan-featured {
  color: var(--paper);
  background: var(--sage-deep);
  box-shadow: var(--shadow);
}

.plan-featured p,
.plan-featured .plan-name {
  color: rgba(251, 250, 246, 0.78);
}

.download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(84, 120, 111, 0.16);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 28px rgba(56, 62, 51, 0.07);
}

.download-panel .eyebrow,
.download-panel h3 {
  margin-bottom: 0;
}

.download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.final-cta {
  padding-top: 30px;
}

.final-inner {
  display: grid;
  min-height: 390px;
  align-content: center;
  justify-items: center;
  padding: 56px 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(40, 78, 71, 0.94), rgba(84, 120, 111, 0.88)),
    var(--sage-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.final-inner h2 {
  max-width: 780px;
  color: var(--paper);
}

.final-inner .eyebrow {
  color: #f1c777;
}

.final-inner .button-primary {
  background: var(--paper);
  color: var(--sage-deep);
}

.download-cta {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.download-cta.is-open {
  opacity: 1;
  pointer-events: auto;
}

.download-cta-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 36, 31, 0.42);
  backdrop-filter: blur(12px);
}

.download-cta-card {
  position: relative;
  width: min(100%, 460px);
  padding: 34px;
  text-align: right;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 237, 0.94)),
    var(--white);
  border: 1px solid rgba(84, 120, 111, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 28px 90px rgba(35, 36, 31, 0.28);
  transform: translateY(14px) scale(0.98);
  transition: transform 220ms ease;
}

.download-cta.is-open .download-cta-card {
  transform: translateY(0) scale(1);
}

.download-cta-close {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--sage-deep);
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  background: rgba(84, 120, 111, 0.1);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.download-cta-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--paper);
  font-family: "Fraunces", serif;
  font-size: 1.75rem;
  font-weight: 650;
  background: var(--sage-deep);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(40, 78, 71, 0.22);
}

.download-cta-card h2 {
  margin-bottom: 16px;
  font-size: 2.05rem;
  line-height: 1.08;
}

.download-cta-copy {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.65;
}

.download-cta-action {
  width: 100%;
}

.download-cta-alt {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.download-cta-alt a {
  color: var(--sage-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

body.download-cta-open {
  overflow: hidden;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(84, 120, 111, 0.16);
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes voicePulse {
  0%, 100% { transform: scaleY(0.66); }
  50% { transform: scaleY(1); }
}

@media (max-width: 1060px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero,
  .day-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

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

  .problem-grid,
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 28px, 1180px);
    height: 66px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .section-band,
  .problem-section,
  .workflow,
  .custom-assistants,
  .pricing,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    gap: 34px;
    padding: 28px 0 46px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .ambient-panel,
  .workflow-visual {
    min-height: 590px;
    border-radius: 22px;
  }

  .ambient-panel::before {
    inset: 16px;
  }

  .phone,
  .phone-side {
    width: 292px;
    min-height: 568px;
    transform: none;
  }

  .app-screen,
  .compact-screen {
    min-height: 510px;
    padding: 18px;
  }

  .floating-card {
    width: 205px;
    padding: 13px;
  }

  .notification-card {
    top: 58px;
    right: 8px;
  }

  .alarm-card {
    bottom: 22px;
    left: 8px;
  }

  .problem-section,
  .capabilities,
  .workflow,
  .trust,
  .custom-assistants,
  .pricing,
  .final-cta {
    padding: 64px 0;
  }

  .problem-grid,
  .capability-grid,
  .custom-assistants,
  .trust-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .download-panel,
  .download-links {
    align-items: stretch;
    flex-direction: column;
  }

  .download-cta-card {
    padding: 30px 22px 24px;
  }

  .download-cta-card h2 {
    font-size: 1.62rem;
  }

  .custom-assistants {
    gap: 28px;
  }

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

  .problem-item,
  .capability-card,
  .system-grid article,
  .trust-item,
  .plan {
    min-height: auto;
  }

  .problem-number {
    margin-bottom: 34px;
  }

  .brief-preview {
    right: 12px;
    bottom: 24px;
    width: 210px;
  }

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

@media (max-width: 430px) {
  h1 {
    font-size: 2.58rem;
  }

  h2 {
    font-size: 1.86rem;
  }

  .ambient-panel,
  .workflow-visual {
    min-height: 540px;
  }

  .phone,
  .phone-side {
    width: 264px;
    min-height: 520px;
    padding: 10px;
    border-radius: 30px;
  }

  .phone-top {
    height: 28px;
  }

  .app-screen,
  .compact-screen {
    min-height: 472px;
    padding: 14px;
    border-radius: 22px;
  }

  .assistant-row h2 {
    font-size: 1.22rem;
  }

  .voice-card {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: relative;
    inset: auto;
    width: min(100% - 34px, 238px);
    margin: -18px auto 0;
  }

  .notification-card {
    display: none;
  }

  .alarm-card {
    z-index: 3;
  }

  .workflow-visual {
    padding: 22px 0 88px;
  }

  .brief-preview {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}