@font-face { font-family: 'Nunito'; src: url('assets/Nunito-Regular.ttf') format('truetype'); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: 'Nunito'; src: url('assets/Nunito-SemiBold.ttf') format('truetype'); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: 'Nunito'; src: url('assets/Nunito-Bold.ttf') format('truetype'); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: 'Nunito'; src: url('assets/Nunito-ExtraBold.ttf') format('truetype'); font-style: normal; font-weight: 800; font-display: swap; }

:root {
  --background: #fff8f2;
  --surface: #ffffff;
  --surface-raised: #f8e9df;
  --text: #30221e;
  --text-secondary: #7a655d;
  --primary: #b65334;
  --primary-dark: #914027;
  --on-primary: #fff9f5;
  --primary-soft: #f5d7c8;
  --accent: #e6a54a;
  --border: #ead7cc;
  --success: #4d8065;
  --shadow: 0 24px 70px rgba(90, 48, 31, 0.13);
  --shadow-soft: 0 12px 35px rgba(90, 48, 31, 0.08);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --page: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: 'Nunito', ui-rounded, 'SF Pro Rounded', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image: radial-gradient(circle at 15% 5%, rgba(230, 165, 74, 0.13), transparent 25%), radial-gradient(circle at 94% 38%, rgba(182, 83, 52, 0.08), transparent 23%);
  content: '';
  pointer-events: none;
}

img { max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid rgba(182, 83, 52, 0.35);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--on-primary);
  background: var(--primary);
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }
.container { width: var(--page); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(234, 215, 204, 0.76);
  background: rgba(255, 248, 242, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img { width: 42px; height: 42px; border-radius: 12px; box-shadow: 0 7px 18px rgba(182, 83, 52, 0.18); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-secondary); font-size: 14px; font-weight: 700; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current='page'] { color: var(--primary); }

.nav-cta, .button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--on-primary) !important;
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(182, 83, 52, 0.22);
  font-weight: 800;
  text-decoration: none;
  transition: 180ms ease;
}

.nav-cta { min-height: 42px; padding-inline: 18px; }
.nav-cta:hover, .button:hover { background: var(--primary-dark); transform: translateY(-2px); }
.button.secondary { color: var(--primary) !important; border-color: var(--border); background: var(--surface); box-shadow: none; }
.button.secondary:hover { background: var(--primary-soft); border-color: var(--primary-soft); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; color: var(--primary); background: var(--primary-soft); cursor: pointer; }

.hero { position: relative; overflow: hidden; padding: 92px 0 100px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr); align-items: center; gap: 64px; }
.eyebrow { margin: 0 0 16px; color: var(--primary); font-size: 13px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(3.25rem, 6.6vw, 6.15rem); line-height: 0.97; letter-spacing: -0.065em; }
h1 .soft { color: var(--primary); }
.hero-copy > p:not(.eyebrow) { max-width: 600px; margin-bottom: 34px; color: var(--text-secondary); font-size: clamp(1.08rem, 2vw, 1.3rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 24px; color: var(--text-secondary); font-size: 13px; font-weight: 700; }
.hero-note svg { color: var(--success); }

.phone-stage { position: relative; min-height: 630px; display: grid; place-items: center; }
.phone-stage::before { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(230, 165, 74, 0.27), rgba(245, 215, 200, 0.18) 51%, transparent 72%); content: ''; }
.orbit { position: absolute; width: 490px; height: 490px; border: 1px dashed rgba(182, 83, 52, 0.22); border-radius: 50%; animation: rotate 40s linear infinite; }
.phone {
  position: relative;
  z-index: 2;
  width: 300px;
  min-height: 605px;
  overflow: hidden;
  padding: 15px;
  border: 6px solid #2f211d;
  border-radius: 50px;
  background: #171210;
  box-shadow: 0 45px 90px rgba(48, 34, 30, 0.26);
  transform: rotate(3deg);
}

.phone::before { position: absolute; z-index: 5; top: 10px; left: 50%; width: 92px; height: 25px; border-radius: 20px; background: #171210; content: ''; transform: translateX(-50%); }
.phone-screen { min-height: 563px; padding: 32px 16px 18px; border-radius: 36px; background: var(--background); }
.phone-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.phone-greeting { font-size: 19px; line-height: 1.2; font-weight: 800; }
.phone-sub { color: var(--text-secondary); font-size: 9px; }
.menu-dot { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: var(--primary); background: var(--surface); font-weight: 800; }
.promise-card { position: relative; overflow: hidden; min-height: 240px; padding: 23px; border: 1px solid rgba(255,255,255,.25); border-radius: 30px; color: #fff9f5; background: linear-gradient(145deg, #b65334, #8c3c25); box-shadow: 0 18px 36px rgba(182,83,52,.24); }
.promise-card::after { position: absolute; right: -55px; bottom: -70px; width: 180px; height: 180px; border-radius: 50%; background: rgba(230,165,74,.34); content: ''; filter: blur(3px); }
.promise-label { font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.promise-time { margin: 20px 0 4px; font-size: 49px; line-height: 1; font-weight: 800; letter-spacing: -.07em; }
.promise-intention { max-width: 170px; font-size: 16px; line-height: 1.3; font-weight: 800; }
.voice-pill { position: absolute; z-index: 2; right: 18px; bottom: 18px; left: 18px; display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 16px; background: rgba(255,249,245,.14); backdrop-filter: blur(8px); }
.mic { display: grid; flex: 0 0 auto; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: var(--primary); background: #fff9f5; }
.voice-pill span { font-size: 10px; font-weight: 800; }
.wave { display: flex; margin-left: auto; align-items: center; gap: 2px; }
.wave i { display: block; width: 2px; height: 12px; border-radius: 2px; background: #fff9f5; animation: wave 1s ease-in-out infinite alternate; }
.wave i:nth-child(2) { height: 20px; animation-delay: -.3s; }.wave i:nth-child(3) { height: 9px; animation-delay: -.6s; }.wave i:nth-child(4) { height: 16px; animation-delay: -.15s; }.wave i:nth-child(5) { height: 7px; animation-delay: -.45s; }
.set-promise { display: flex; min-height: 50px; margin-top: 14px; align-items: center; justify-content: center; gap: 8px; border-radius: 17px; color: var(--on-primary); background: var(--primary); font-size: 13px; font-weight: 800; }
.phone-section-label { display: flex; margin: 20px 2px 10px; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 800; }
.mini-card { display: flex; padding: 13px; align-items: center; gap: 10px; border: 1px solid var(--border); border-radius: 17px; background: var(--surface); box-shadow: 0 7px 20px rgba(90,48,31,.06); }
.mini-time { font-size: 19px; font-weight: 800; }.mini-copy { flex: 1; }.mini-copy strong { display: block; font-size: 10px; }.mini-copy span { color: var(--text-secondary); font-size: 8px; }.toggle { width: 28px; height: 17px; padding: 2px; border-radius: 10px; background: var(--primary); }.toggle::after { display: block; width: 13px; height: 13px; margin-left: auto; border-radius: 50%; background: #fff; content: ''; }
.floating-note { position: absolute; z-index: 3; display: flex; width: 225px; align-items: center; gap: 12px; padding: 14px; border: 1px solid rgba(234,215,204,.8); border-radius: 20px; background: rgba(255,255,255,.88); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); animation: float 5s ease-in-out infinite; }
.floating-note strong { display: block; font-size: 12px; }.floating-note span { color: var(--text-secondary); font-size: 10px; }.floating-note.one { top: 85px; right: -8px; }.floating-note.two { bottom: 94px; left: -22px; animation-delay: -2.5s; }
.note-icon { display: grid; flex: 0 0 auto; width: 39px; height: 39px; place-items: center; border-radius: 14px; color: var(--primary); background: var(--primary-soft); }

.section { padding: 105px 0; }
.section.alt { background: var(--surface); }
.section-heading { max-width: 680px; margin-bottom: 55px; }
h2 { margin-bottom: 18px; font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.04; letter-spacing: -0.05em; }
.section-heading > p:not(.eyebrow), .center-copy { color: var(--text-secondary); font-size: 18px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { position: relative; min-height: 310px; padding: 32px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--background); transition: 240ms ease; }
.step:hover { box-shadow: var(--shadow-soft); transform: translateY(-5px); }
.step-number { display: grid; width: 48px; height: 48px; margin-bottom: 68px; place-items: center; border-radius: 16px; color: var(--primary); background: var(--primary-soft); font-size: 14px; font-weight: 800; }
.step h3 { margin-bottom: 10px; font-size: 23px; line-height: 1.2; letter-spacing: -.03em; }.step p { margin-bottom: 0; color: var(--text-secondary); }
.step-mark { position: absolute; top: 25px; right: 28px; color: rgba(182,83,52,.11); font-size: 90px; line-height: 1; font-weight: 800; }

.feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.voice-visual { position: relative; min-height: 520px; display: grid; place-items: center; overflow: hidden; border-radius: var(--radius-xl); background: linear-gradient(145deg, #2f201c, #171210); box-shadow: var(--shadow); }
.voice-visual::before { position: absolute; width: 340px; height: 340px; border-radius: 50%; background: rgba(230,165,74,.16); content: ''; filter: blur(10px); }
.record-orb { position: relative; z-index: 1; display: grid; width: 190px; height: 190px; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: #fff9f5; background: radial-gradient(circle at 35% 28%, #eaa981, var(--primary) 55%, #77301e); box-shadow: 0 0 0 28px rgba(182,83,52,.12), 0 0 0 58px rgba(182,83,52,.06), 0 25px 60px rgba(0,0,0,.35); }
.record-orb svg { width: 54px; height: 54px; }
.visual-caption { position: absolute; right: 35px; bottom: 30px; left: 35px; color: #c0a89e; font-size: 13px; text-align: center; }.visual-caption strong { display: block; color: #fff5ee; font-size: 16px; }
.feature-list { display: grid; margin-top: 36px; gap: 24px; }
.feature-item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; }
.feature-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 16px; color: var(--primary); background: var(--primary-soft); }
.feature-item h3 { margin: 2px 0 4px; font-size: 17px; }.feature-item p { margin: 0; color: var(--text-secondary); font-size: 15px; }

.privacy-banner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: 48px; border-radius: var(--radius-xl); color: #fff5ee; background: #241b18; box-shadow: var(--shadow); }
.privacy-banner h2 { max-width: 700px; margin-bottom: 12px; }.privacy-banner p { max-width: 650px; margin-bottom: 0; color: #c0a89e; }.privacy-seal { display: grid; width: 150px; height: 150px; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; color: #f4be66; background: rgba(244,190,102,.08); }.privacy-seal svg { width: 58px; height: 58px; }
.trust-row { display: flex; margin-top: 28px; flex-wrap: wrap; gap: 9px; }.trust-row span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; color: #fff5ee; font-size: 12px; font-weight: 700; }

.quote-section { text-align: center; }.quote { max-width: 850px; margin: 0 auto; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.2; letter-spacing: -.045em; font-weight: 800; }.quote span { color: var(--primary); }.quote-note { margin: 22px auto 0; color: var(--text-secondary); font-weight: 700; }
.cta-card { position: relative; overflow: hidden; padding: 80px 30px; border-radius: var(--radius-xl); color: var(--on-primary); background: linear-gradient(135deg, #b65334, #8f3c27); text-align: center; box-shadow: var(--shadow); }.cta-card::before,.cta-card::after { position: absolute; border-radius: 50%; background: rgba(230,165,74,.2); content: ''; }.cta-card::before { width: 280px; height: 280px; top: -150px; left: -80px; }.cta-card::after { width: 370px; height: 370px; right: -150px; bottom: -240px; }.cta-card h2 { position: relative; z-index: 1; max-width: 720px; margin: 0 auto 16px; }.cta-card p { position: relative; z-index: 1; max-width: 570px; margin: 0 auto 28px; color: #f8ded2; font-size: 18px; }.cta-card .button { position: relative; z-index: 1; color: var(--primary) !important; background: var(--on-primary); }.cta-card .button:hover { background: #fff; }

.site-footer { padding: 62px 0 35px; border-top: 1px solid var(--border); }.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 50px; }.footer-brand p { max-width: 370px; margin: 18px 0 0; color: var(--text-secondary); font-size: 14px; }.footer-links { display: grid; grid-template-columns: repeat(2, minmax(130px, 1fr)); gap: 10px 50px; }.footer-links a { color: var(--text-secondary); font-size: 14px; font-weight: 700; text-decoration: none; }.footer-links a:hover { color: var(--primary); }.footer-bottom { display: flex; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border); justify-content: space-between; gap: 20px; color: var(--text-secondary); font-size: 12px; }

.legal-hero { padding: 82px 0 58px; border-bottom: 1px solid var(--border); }.legal-hero h1 { max-width: 800px; margin-bottom: 18px; font-size: clamp(3rem, 7vw, 5.4rem); }.legal-hero p { max-width: 700px; margin-bottom: 0; color: var(--text-secondary); font-size: 18px; }.updated { display: inline-flex; margin-top: 24px; padding: 7px 12px; border-radius: 999px; color: var(--primary); background: var(--primary-soft); font-size: 12px; font-weight: 800; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 720px); justify-content: center; gap: 80px; padding: 70px 0 110px; }.legal-nav { position: sticky; top: 112px; align-self: start; display: grid; gap: 8px; }.legal-nav a { padding: 8px 12px; border-left: 2px solid var(--border); color: var(--text-secondary); font-size: 13px; font-weight: 700; text-decoration: none; }.legal-nav a:hover { color: var(--primary); border-color: var(--primary); }.legal-content section { margin-bottom: 48px; scroll-margin-top: 110px; }.legal-content h2 { margin-bottom: 16px; font-size: 28px; letter-spacing: -.035em; }.legal-content h3 { margin: 26px 0 8px; font-size: 18px; }.legal-content p,.legal-content li { color: var(--text-secondary); }.legal-content ul { padding-left: 22px; }.legal-content li + li { margin-top: 8px; }.callout { margin: 28px 0; padding: 22px 24px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); }.callout strong { color: var(--text); }.legal-content a { color: var(--primary); font-weight: 700; }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 45px; }.support-card { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-soft); }.support-card svg { width: 28px; height: 28px; color: var(--primary); }.support-card h2 { margin: 26px 0 8px; font-size: 21px; }.support-card p { color: var(--text-secondary); font-size: 14px; }.support-card a { color: var(--primary); font-size: 14px; font-weight: 800; }
.faq { max-width: 800px; margin: 80px auto 0; }.faq h2 { margin-bottom: 30px; }.faq details { border-top: 1px solid var(--border); }.faq details:last-child { border-bottom: 1px solid var(--border); }.faq summary { display: flex; padding: 22px 4px; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-weight: 800; list-style: none; }.faq summary::-webkit-details-marker { display: none; }.faq summary::after { color: var(--primary); font-size: 24px; content: '+'; }.faq details[open] summary::after { content: '−'; }.faq details p { max-width: 700px; padding: 0 4px 22px; color: var(--text-secondary); }
.not-found { min-height: 70vh; display: grid; place-items: center; padding: 80px 20px; text-align: center; }.not-found img { width: 105px; border-radius: 28px; }.not-found h1 { margin: 28px 0 16px; font-size: clamp(3rem, 8vw, 5rem); }.not-found p { color: var(--text-secondary); }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 650ms ease, transform 650ms ease; }
[data-reveal][data-visible='true'] { opacity: 1; transform: none; }
@keyframes float { 50% { transform: translateY(-12px); } }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes wave { to { transform: scaleY(.45); } }

@media (max-width: 940px) {
  .hero-grid, .feature-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }.hero-copy { text-align: center; }.hero-copy > p:not(.eyebrow) { margin-inline: auto; }.hero-actions, .hero-note { justify-content: center; }.phone-stage { max-width: 600px; margin-inline: auto; }.feature-grid { gap: 55px; }.voice-visual { min-height: 430px; }.legal-layout { grid-template-columns: 1fr; gap: 24px; }.legal-nav { position: static; display: flex; overflow-x: auto; }.legal-nav a { flex: 0 0 auto; border-left: 0; border-bottom: 2px solid var(--border); }.support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --page: min(100% - 28px, 1180px); }
  .nav { min-height: 68px; }.menu-button { display: grid; place-items: center; }.nav-links { position: absolute; top: 67px; right: 14px; left: 14px; display: none; padding: 18px; border: 1px solid var(--border); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-soft); }.nav-links[data-open] { display: grid; }.nav-links a { padding: 8px; }.nav-cta { width: 100%; }
  .hero { padding: 55px 0 70px; }.hero-grid { gap: 34px; } h1 { font-size: clamp(3.05rem, 15vw, 4.7rem); }.phone-stage { min-height: 575px; transform: scale(.9); margin: -30px -20px; }.floating-note.one { right: -4px; }.floating-note.two { left: 0; }
  .section { padding: 76px 0; }.steps { grid-template-columns: 1fr; }.step { min-height: 250px; }.step-number { margin-bottom: 48px; }.privacy-banner { grid-template-columns: 1fr; padding: 32px 24px; }.privacy-seal { width: 100px; height: 100px; }.footer-grid { grid-template-columns: 1fr; }.footer-bottom { flex-direction: column; }.footer-links { gap: 10px 30px; }.legal-hero { padding: 58px 0 42px; }.legal-layout { padding-top: 44px; }.cta-card { padding: 58px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (prefers-color-scheme: dark) {
  :root { --background: #171210; --surface: #241b18; --surface-raised: #2d211d; --text: #fff5ee; --text-secondary: #c0a89e; --primary: #f08a63; --primary-dark: #dd7551; --on-primary: #271714; --primary-soft: #4a2920; --accent: #f4be66; --border: #44332e; --success: #79b995; --shadow: 0 24px 70px rgba(0,0,0,.3); --shadow-soft: 0 12px 35px rgba(0,0,0,.2); }
  body::before { opacity: .5; }.site-header { background: rgba(23,18,16,.86); }.brand img { box-shadow: none; }.phone { border-color: #4b3731; }.phone-screen { background: #171210; }.promise-card { color: #271714; background: linear-gradient(145deg,#f08a63,#d66e49); }.voice-pill { background: rgba(39,23,20,.14); }.mic { background: #271714; }.wave i { background: #271714; }.floating-note { background: rgba(36,27,24,.9); }.privacy-banner { border: 1px solid var(--border); }.cta-card { color: #271714; background: linear-gradient(135deg,#f08a63,#d66e49); }.cta-card p { color: #4a2920; }.cta-card .button { color: #fff5ee !important; background: #271714; }
}
