:root {
  --cream: #f7f5ef;
  --paper: #fffdf9;
  --ink: #183128;
  --muted: #627069;
  --line: #e3e3dc;
  --green: #12563f;
  --caramel: #d28b45;
  --soft-caramel: #f7ead9;
  --radius: 28px;
  --shadow: 0 18px 42px rgba(25, 49, 39, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.shell, .wide { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.wide { padding-block: 96px; }
.eyebrow {
  margin: 0 0 13px;
  color: var(--caramel);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.08; letter-spacing: -.045em; }
h1 { max-width: 650px; margin-bottom: 22px; font-size: clamp(42px, 5vw, 70px); font-weight: 750; }
h2 { max-width: 640px; margin-bottom: 18px; font-size: clamp(31px, 3.5vw, 48px); font-weight: 750; }
h3 { margin-bottom: 7px; font-size: 20px; font-weight: 750; letter-spacing: -.025em; }
p { color: var(--muted); }
strong { color: var(--ink); }

.brand, .wordmark { display: inline-flex; align-items: baseline; font-weight: 850; letter-spacing: -.06em; }
.brand { font-size: 1em; }
.brand, .wordmark strong { color: var(--green); }
.brand span, .wordmark span { color: var(--caramel); }

header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 22px;
}
.logo { width: 150px; flex: 0 0 auto; }
.logo img { display: block; width: 100%; }
nav { display: flex; align-items: center; gap: 24px; color: #4f5d56; font-size: 13px; font-weight: 700; }
nav a:hover, .footer-links a:hover { color: var(--green); }
.nav-cta, .button-primary, .button-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease;
}
.nav-cta, .button-primary, .button-secondary { color: #fff; background: var(--green); box-shadow: 0 9px 20px rgba(18, 86, 63, .18); }
.nav-cta:hover, .button-primary:hover, .button-secondary:hover { transform: translateY(-1px); background: var(--green); }
.button-coming-soon {
  color: var(--green);
  border-color: rgba(18, 86, 63, .24);
  background: rgba(18, 86, 63, .08);
  box-shadow: none;
  cursor: default;
}
.button-coming-soon:hover { color: var(--green); background: rgba(18, 86, 63, .08); transform: none; }

.hero { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(280px, .97fr); align-items: center; gap: clamp(44px, 7vw, 104px); padding-block: 58px 82px; }
.hero-copy > p:not(.eyebrow) { max-width: 540px; margin-bottom: 28px; font-size: 18px; }
.hero h1 em { color: var(--caramel); font-style: normal; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.microcopy { margin: 14px 0 0; font-size: 12px; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.app-screenshot {
  width: min(238px, 68vw);
  margin: 0;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(18, 42, 32, .17);
}
.app-screenshot img { width: 100%; height: auto; }

.app-demo { overflow: visible; border: 0; background: transparent; box-shadow: none; }
.app-demo-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 640 / 1383;
  border: 7px solid #fff;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(18, 42, 32, .17);
}
.app-demo-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}
.app-demo-screen.is-active { opacity: 1; }
.app-demo-tap {
  --tap-x: 50%;
  position: absolute;
  z-index: 2;
  left: var(--tap-x);
  bottom: 6.5%;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(18, 86, 63, .72);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) scale(.45);
  pointer-events: none;
}
.app-demo.is-tapping .app-demo-tap { animation: app-demo-tap 400ms ease-out; }
.app-demo-controls {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 15px;
}
.app-demo-controls button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 86, 63, .24);
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease, transform 180ms ease;
}
.app-demo-controls button:hover,
.app-demo-controls button:focus-visible { background: rgba(18, 86, 63, .5); transform: scale(1.2); }
.app-demo-controls button:focus-visible { outline: 2px solid var(--caramel); outline-offset: 2px; }
.app-demo-controls button.is-active { width: 24px; background: var(--green); }

@keyframes app-demo-tap {
  0% { opacity: 0; transform: translateX(-50%) scale(.45); }
  35% { opacity: .85; }
  100% { opacity: 0; transform: translateX(-50%) scale(1.55); }
}

@media (prefers-reduced-motion: reduce) {
  .app-demo-screen { transition: none; }
  .app-demo.is-tapping .app-demo-tap { animation: none; }
}

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.28); }
.trust-strip .shell { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 700px; padding-block: 28px; }
.trust-item { display: flex; align-items: flex-start; gap: 11px; color: #4c5d55; }
.trust-item > div { display: grid; gap: 3px; }
.trust-item b { color: var(--green); font-size: 15px; font-weight: 800; line-height: 1.25; }
.trust-item > div > span { font-size: 14px; font-weight: 500; line-height: 1.45; }
.trust-dot { flex: 0 0 auto; width: 8px; height: 8px; margin-top: 5px; border-radius: 50%; background: var(--caramel); }

.intro { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 7vw, 104px); align-items: start; }
.intro p { max-width: 620px; font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.feature-card { min-height: 218px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); box-shadow: 0 10px 28px rgba(25,49,39,.035); }
.feature-number { display: grid; width: 32px; height: 32px; place-items: center; margin-bottom: 25px; border-radius: 10px; color: var(--caramel); background: var(--soft-caramel); font-size: 11px; font-weight: 850; }
.feature-card p { margin: 0; font-size: 14px; }

.steps-section { background: #fffdf9; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 42px; }
.step { position: relative; padding: 31px 28px 28px; border-radius: var(--radius); background: var(--cream); }
.step-index { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; margin-bottom: 32px; border-radius: 50%; color: #fff; background: var(--green); font-size: 13px; font-weight: 800; }
.step p { margin: 0; font-size: 14px; }

.resource-layout { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(36px, 7vw, 100px); align-items: center; }
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.resource-card { min-height: 128px; padding: 20px; border-radius: 20px; background: var(--green); color: #fff; }
.resource-card:nth-child(even) { background: var(--caramel); }
.resource-card b { display: block; margin-bottom: 25px; color: rgba(255,255,255,.76); font-size: 12px; letter-spacing: .08em; }
.resource-card span { display: block; font-size: 15px; font-weight: 750; line-height: 1.22; }

.plan-section { background: var(--green); }
.plan-layout { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(38px, 7vw, 110px); align-items: center; }
.plan-section .eyebrow { color: var(--caramel); }
.plan-section h2, .plan-section p, .plan-section strong { color: #fff; }
.plan-section p { max-width: 570px; color: rgba(255,255,255,.78); }
.plan-card { padding: 34px; border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.plan-card p { color: var(--muted); }
.price { margin: 8px 0 0; color: var(--green); font-size: 54px; font-weight: 850; letter-spacing: -.06em; line-height: 1; }
.price small { color: var(--muted); font-size: 14px; font-weight: 650; letter-spacing: 0; }
.plan-list { display: grid; gap: 11px; margin: 25px 0 28px; padding: 0; list-style: none; color: #4b5d53; font-size: 14px; }
.plan-list li::before { content: "✓"; margin-right: 9px; color: var(--green); font-weight: 900; }
.plan-card .button-primary { width: 100%; }

.story { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(36px, 8vw, 120px); align-items: center; }
.wordcard { display: grid; align-content: center; justify-items: center; gap: 12px; min-height: 432px; padding: 34px 34px 40px; border-radius: 32px; background: var(--caramel); box-shadow: 0 20px 42px rgba(210,139,69,.18); text-align: center; }
.wordcard .brand-icon { width: 176px; height: 176px; object-fit: contain; }
.story-logo { display: block; width: min(100%, 278px); height: auto; }
.brand-message { margin: 2px 0 0; color: var(--ink); font-size: clamp(20px, 2vw, 26px); font-weight: 750; line-height: 1.14; letter-spacing: -.035em; }
.story > div > p:not(.eyebrow) { max-width: 580px; font-size: 17px; }

.faq { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(36px, 7vw, 104px); align-items: start; }
.faq-list { display: grid; gap: 10px; }
details { padding: 19px 20px; border-bottom: 1px solid var(--line); background: transparent; }
details:first-child { border-top: 1px solid var(--line); }
summary { cursor: pointer; color: var(--ink); font-size: 16px; font-weight: 750; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--caramel); font-size: 22px; font-weight: 400; line-height: .7; }
details[open] summary::after { content: "–"; }
details p { margin: 14px 28px 0 0; font-size: 14px; }

.final-cta { padding-block: 92px; background: var(--soft-caramel); text-align: center; }
.final-cta h2 { margin-inline: auto; }
.final-cta p { max-width: 560px; margin-inline: auto; }
.final-cta .hero-actions { justify-content: center; margin-top: 25px; }

footer { color: #dce8e2; background: var(--green); }
.footer-main { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 45px; padding-block: 60px 40px; }
.footer-brand { width: 130px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .96; }
footer p { max-width: 360px; color: rgba(255,255,255,.66); font-size: 14px; }
.footer-title { margin: 0 0 13px; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.footer-links { display: grid; gap: 9px; color: rgba(255,255,255,.72); font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.55); font-size: 12px; }
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 10; display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); box-shadow: 0 12px 26px rgba(18,86,63,.28); font-size: 22px; font-weight: 850; }

.tribute-page { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(36px, 8vw, 120px); align-items: center; min-height: 68vh; }
.tribute-page .wordcard { min-height: 380px; }
.tribute-page p { max-width: 630px; font-size: 17px; }
.tribute-note { padding: 54px 24px; background: var(--caramel); text-align: center; }
.tribute-note p { max-width: 760px; margin: 0 auto; color: #fff; font-size: clamp(20px, 2.5vw, 30px); font-weight: 650; line-height: 1.32; letter-spacing: -.025em; }
.back-link { display: inline-flex; margin-top: 22px; color: var(--green); font-size: 14px; font-weight: 800; }

footer#links { padding-inline: max(24px, calc((100% - 1180px) / 2)); }
footer .brand { color: #fff; }
footer .brand span { color: var(--caramel); }
.footbrand { padding-top: 60px; }
.footer-logo { display: block; width: 190px; height: auto; margin-bottom: 14px; }
.footgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-block: 42px 36px; }
.footgrid > div { display: grid; align-content: start; gap: 10px; }
.footgrid > div > b { color: #fff; font-size: 13px; }
.footgrid a { color: rgba(255,255,255,.72); font-size: 14px; }
.footgrid p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }
.footgrid strong { color: rgba(255,255,255,.9); }
.bottom { display: flex; justify-content: space-between; gap: 14px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.55); font-size: 12px; }
.bottom .brand { font-size: 1em; }
.whats { position: fixed; right: 24px; bottom: 24px; z-index: 10; display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); box-shadow: 0 12px 26px rgba(18,86,63,.28); font-size: 22px; font-weight: 850; }

@media (max-width: 820px) {
  .shell, .wide { width: min(100% - 36px, 620px); }
  .wide { padding-block: 66px; }
  header { min-height: 70px; }
  nav a:not(.nav-cta) { display: none; }
  nav { gap: 0; }
  .nav-cta { min-height: 40px; padding: 0 15px; font-size: 12px; }
  .hero, .intro, .resource-layout, .plan-layout, .story, .faq, .tribute-page { grid-template-columns: 1fr; }
  .hero { gap: 43px; padding-block: 34px 57px; }
  .hero-copy { text-align: center; }
  .hero-copy > p:not(.eyebrow), h1 { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: 2; }
  h1 { font-size: clamp(39px, 11vw, 55px); }
  h2 { font-size: clamp(30px, 8vw, 42px); }
  .hero-copy > p:not(.eyebrow), .intro p { font-size: 16px; }
  .app-screenshot { width: min(238px, 66vw); }
  .trust-strip .shell { gap: 15px; padding-block: 22px; }
  .trust-item b { font-size: 14px; }
  .trust-item > div > span { font-size: 13px; }
  .feature-grid, .steps { grid-template-columns: 1fr; gap: 12px; margin-top: 31px; }
  .feature-card { min-height: 0; padding: 23px; }
  .feature-number { margin-bottom: 17px; }
  .step { padding: 25px; }
  .step-index { margin-bottom: 21px; }
  .resource-layout > div:first-child, .story > div:last-child, .faq > div:first-child, .tribute-page > div:last-child { text-align: center; }
  .story > div > p:not(.eyebrow), .tribute-page p { margin-inline: auto; }
  .resource-grid { margin-top: 3px; }
  .plan-card { padding: 28px; }
  .wordcard { gap: 10px; min-height: 380px; padding: 28px 24px 32px; }
  .logo { width: 132px; }
  .wordcard .brand-icon { width: 146px; height: 146px; }
  .story-logo { width: min(100%, 230px); }
  .brand-message { font-size: 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding-block: 48px 28px; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float, .whats { right: 18px; bottom: 18px; }
  .footgrid { grid-template-columns: repeat(2, 1fr); padding-block: 30px; }
  .bottom { flex-direction: column; }
}

@media (max-width: 390px) {
  .shell, .wide { width: calc(100% - 32px); }
  .button-primary, .button-secondary { width: 100%; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .resource-card { min-height: 118px; padding: 17px; }
}
