@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&display=swap');

:root {
  --navy: #071c36;
  --navy-2: #102f55;
  --violet: #5946d9;
  --violet-dark: #32247e;
  --coral: #ff735f;
  --yellow: #ffd75a;
  --cream: #fff8e9;
  --paper: #fffdf7;
  --pink: #f7dddd;
  --blue: #cedefd;
  --mint: #d9f6de;
  --ink: #2b2038;
  --muted: #716879;
  --line: #d8cfc1;
  --white: #fff;
  --shadow: 8px 8px 0 var(--navy);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; scroll-padding-top: 92px; }
body { margin: 0; min-width: 320px; background: var(--cream); color: var(--ink); font-family: Manrope, system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
a { color: inherit; }
img, video { max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .8rem 1rem; background: var(--navy); color: #fff; border-radius: 999px; }
.skip-link:focus { top: 1rem; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(800px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }
.section--paper { background: var(--paper); }
.section--pink { background: #fff1ee; }
.section--blue { background: var(--blue); }
.section--mint { background: var(--mint); }
.section--violet { background: var(--violet); color: #fff; }
.section--navy { background: var(--navy); color: #fff; }
.section--coral { background: var(--coral); }
.section--yellow { background: var(--yellow); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Responsive brand system */
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); text-decoration: none; white-space: nowrap; }
.brand-symbol { width: 42px; height: 34px; border-radius: 12px 12px 12px 4px; background: var(--navy); position: relative; flex: 0 0 auto; }
.brand-symbol::after { content: ""; position: absolute; width: 13px; height: 7px; left: 13px; top: 10px; border-left: 3px solid var(--yellow); border-bottom: 3px solid var(--yellow); transform: rotate(-45deg); }
.brand-word { display: grid; line-height: .9; font-weight: 800; letter-spacing: -.06em; font-size: 1rem; }
.brand-word span:last-child { margin-left: 16px; }
.brand--light { color: #fff; }
.brand--light .brand-symbol { background: var(--yellow); }
.brand--light .brand-symbol::after { border-color: var(--navy); }
.footer-brand { display: inline-flex; margin-bottom: 8px; text-decoration: none; }
.footer-brand .brand-word { font-size: 1.1rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 248, 233, .9); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.nav-shell { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: clamp(10px, 1.2vw, 25px); }
.nav-links a { font-size: .82rem; font-weight: 700; text-decoration: none; }
.nav-links a:not(.nav-cta):hover { color: var(--violet); }
.nav-pricing { padding: 9px 15px; border-radius: 999px; background: var(--yellow); }
.nav-pricing:hover { background: #fff; box-shadow: inset 0 0 0 1px var(--violet); }
.nav-access { padding: 9px 15px; border: 1px solid var(--navy); border-radius: 999px; }
.nav-access:hover { border-color: var(--violet); background: #fff; }
.nav-cta { padding: 11px 17px; background: var(--navy); color: #fff; border-radius: 999px; }
.nav-cta:hover { background: var(--violet); }
.nav-toggle { display: none; padding: 10px; border: 0; background: transparent; color: var(--navy); cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: currentColor; }

/* Shared typography and controls */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 17px; color: var(--violet); font-size: .73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.section-heading { max-width: 790px; margin-bottom: 46px; }
.section-heading h2 { margin: 0; font-size: clamp(2.05rem, 4.45vw, 4.5rem); line-height: 1.02; letter-spacing: -.05em; text-wrap: balance; }
.section-heading p { max-width: 650px; margin: 19px 0 0; font-size: 1.06rem; line-height: 1.72; color: var(--muted); }
.section--navy .section-heading p, .section--violet .section-heading p { color: #d8d1f3; }
.section--navy .eyebrow, .section--violet .eyebrow { color: var(--yellow); }
.cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.btn { min-height: 49px; padding: 0 21px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 2px solid transparent; border-radius: 999px; font-size: .87rem; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--violet); color: #fff; }
.btn-primary:hover { box-shadow: 0 14px 34px #5946d940; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: #9d91a6; }
.btn-coral { background: var(--coral); color: var(--navy); border-color: var(--navy); box-shadow: 4px 4px 0 var(--navy); }
.tag { display: inline-flex; width: fit-content; padding: 7px 10px; border: 1px solid currentColor; border-radius: 999px; font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.check-list { padding: 0; margin: 25px 0; list-style: none; }
.check-list li { position: relative; padding: 9px 0 9px 30px; line-height: 1.55; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 8px; width: 20px; height: 20px; display: grid; place-items: center; background: var(--yellow); border-radius: 50%; color: var(--navy); font-size: .7rem; font-weight: 900; }

/* Home hero */
.home-hero { min-height: 760px; padding: 78px 0 100px; overflow: hidden; position: relative; }
.home-hero::before { content: ""; position: absolute; width: 460px; height: 460px; left: -180px; top: 190px; border-radius: 45% 55% 60% 40%; background: #e7d6ff; transform: rotate(25deg); }
.home-hero::after { content: ""; position: absolute; width: 390px; height: 390px; right: -150px; bottom: -130px; border-radius: 50%; background: var(--yellow); }
.hero-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 68px; align-items: center; position: relative; z-index: 1; }
.home-hero h1 { margin: 0; font-size: clamp(4rem, 7vw, 7.25rem); line-height: .87; letter-spacing: -.075em; text-wrap: balance; }
.home-hero h1 em { color: var(--violet); font-family: Newsreader, serif; font-weight: 500; }
.hero-lead { max-width: 650px; margin: 27px 0; font-size: 1.14rem; line-height: 1.72; }
.trust-line { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 31px; color: var(--muted); font-size: .7rem; font-weight: 800; }
.trust-line span::before { content: "✓"; margin-right: 6px; color: var(--violet); }

/* Living service flow */
.service-flow { min-height: 620px; position: relative; display: flex; flex-direction: column; justify-content: center; isolation: isolate; }
.service-flow::before { content: ""; position: absolute; z-index: -2; width: 440px; height: 440px; left: 50%; top: 50%; border-radius: 50%; background: var(--coral); transform: translate(-50%, -50%); animation: flow-shape 6s ease-in-out infinite; }
.service-flow::after { content: ""; position: absolute; z-index: -1; inset: 54px 8px 36px; border: 2px solid #071c3628; border-radius: 38px; background: #fff5e99c; backdrop-filter: blur(3px); }
.service-flow__eyebrow { position: relative; z-index: 2; margin: 0 auto 14px; color: var(--navy); font-size: .59rem; font-weight: 900; letter-spacing: .14em; }
.flow-stage { position: relative; z-index: 2; border: 2px solid var(--navy); box-shadow: 5px 5px 0 var(--navy); animation: flow-stage-focus 8s ease-in-out infinite; }
.service-flow__message { width: 78%; margin: 0 auto; padding: 13px 14px; display: grid; grid-template-columns: 36px 1fr auto; gap: 10px; align-items: center; border-radius: 17px 17px 17px 5px; background: #fff; }
.service-flow__avatar { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--violet); color: #fff; font-weight: 900; }
.service-flow__message div { display: grid; gap: 3px; }
.service-flow__message small, .service-flow__organizer header span, .service-flow__choice small, .service-flow__reminder small { font-size: .5rem; font-weight: 900; letter-spacing: .09em; opacity: .7; }
.service-flow__message strong { font-size: .67rem; line-height: 1.35; }
.service-flow__message i { color: var(--muted); font-size: .5rem; font-style: normal; }
.service-flow__connector { position: relative; z-index: 1; width: 2px; height: 30px; margin: 0 auto; background: var(--navy); }
.service-flow__connector span { position: absolute; width: 10px; height: 10px; left: -4px; border: 2px solid var(--navy); border-radius: 50%; background: var(--yellow); animation: flow-dot-down 2s linear infinite; }
.service-flow__organizer { width: 72%; margin: 0 auto; padding: 14px; border-radius: 15px; background: var(--violet); color: #fff; animation-delay: 1.5s; }
.service-flow__organizer header { display: flex; justify-content: space-between; align-items: center; }
.service-flow__organizer header b { font-size: .6rem; }
.service-flow__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.service-flow__chips span { padding: 6px 8px; border-radius: 999px; background: #fff; color: var(--navy); font-size: .52rem; font-weight: 800; }
.service-flow__branch-line { position: relative; z-index: 1; width: 58%; height: 28px; margin: 0 auto; border-top: 2px solid var(--navy); border-right: 2px solid var(--navy); border-left: 2px solid var(--navy); border-radius: 12px 12px 0 0; }
.service-flow__branch-line span { position: absolute; width: 12px; height: 12px; top: -7px; left: calc(50% - 6px); border-radius: 50%; background: var(--yellow); border: 2px solid var(--navy); animation: flow-branch-pulse 2s ease-in-out infinite; }
.service-flow__choices { position: relative; z-index: 2; width: 88%; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0 auto; }
.service-flow__choice { min-height: 103px; padding: 13px; display: grid; align-content: center; gap: 5px; border-radius: 14px; background: var(--blue); }
.service-flow__choice strong { font-size: .68rem; line-height: 1.25; }
.service-flow__choice span { font-size: .54rem; font-weight: 800; }
.service-flow__choice:nth-child(2) { background: var(--yellow); animation-delay: 3s; }
.service-flow__choice:nth-child(1) { animation-delay: 3s; }
.flow-connector--two { height: 27px; }
.service-flow__reminder { width: 76%; margin: 0 auto; padding: 12px 14px; display: flex; gap: 10px; align-items: center; border-radius: 15px; background: #d9ffc8; animation-delay: 4.5s; }
.service-flow__reminder > span { width: 31px; height: 31px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 900; }
.service-flow__reminder div { display: grid; gap: 2px; }
.service-flow__reminder strong { font-size: .64rem; }
.service-flow__note { position: absolute; z-index: 3; padding: 9px 11px; border: 2px solid var(--navy); background: #fff; box-shadow: 4px 4px 0 var(--navy); font-size: .52rem; font-weight: 900; }
.service-flow__note--one { left: -10px; top: 21%; transform: rotate(-7deg); }
.service-flow__note--two { right: -14px; bottom: 13%; background: var(--yellow); transform: rotate(6deg); }
@keyframes flow-stage-focus { 0%, 15%, 100% { transform: translateY(0); filter: brightness(1); } 7% { transform: translateY(-5px); filter: brightness(1.06); } }
@keyframes flow-dot-down { from { top: -5px; } to { top: calc(100% - 5px); } }
@keyframes flow-branch-pulse { 50% { transform: scale(1.35); background: #fff; } }
@keyframes flow-shape { 50% { transform: translate(-50%, -50%) scale(1.035) rotate(2deg); } }

.capability-marquee { overflow: hidden; padding: 17px 0; background: var(--violet); color: #fff; white-space: nowrap; }
.capability-marquee__track { width: max-content; display: flex; align-items: center; position: relative; left: 50%; will-change: transform; animation: capability-marquee-loop 22s linear infinite; }
.capability-marquee__track span { flex: none; padding-right: 15px; font-size: .93rem; font-weight: 800; letter-spacing: .06em; word-spacing: 15px; }
.capability-marquee i { color: var(--yellow); font-style: normal; }
@keyframes capability-marquee-loop { from { transform: translateX(-50%); } to { transform: translateX(-75%); } }

/* Products and pricing */
#produtos { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.product-card { min-height: 630px; padding: 34px; display: flex; flex-direction: column; border: 2px solid var(--navy); box-shadow: var(--shadow); color: inherit; cursor: pointer; position: relative; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; }
.product-card::before { content: ""; position: absolute; inset: 7px; border: 2px solid currentColor; border-radius: inherit; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.product-card:hover { transform: translateY(-7px) scale(1.008); box-shadow: 13px 17px 0 var(--navy); filter: saturate(1.05); text-decoration: none; }
.product-card:hover::before { opacity: .22; }
.product-card:focus-visible { outline: 4px solid var(--coral); outline-offset: 5px; transform: translateY(-4px); }
.product-card h3, .product-card p, .product-card li, .product-card small, .product-card strong, .product-card__top { text-decoration: none; }
.product-card--yellow { background: var(--yellow); border-radius: 74px 12px 74px 12px; }
.product-card--violet { background: var(--violet); color: #fff; border-radius: 12px 74px 12px 74px; }
.product-card__top { display: flex; justify-content: space-between; align-items: start; }
.product-card__top > span { font-size: .69rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-card__icon { width: 78px; height: 78px; display: grid; place-items: center; border: 2px solid currentColor; background: #fff; color: var(--navy); font: 600 2rem Newsreader, serif; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover .product-card__icon { transform: translateY(-4px) rotate(3deg); box-shadow: 4px 4px 0 currentColor; }
.product-card--violet .product-card__icon { border-radius: 50%; background: var(--coral); }
.product-card h3 { margin: 66px 0 19px; font-size: clamp(2.5rem, 4vw, 3.8rem); line-height: .94; letter-spacing: -.055em; }
.product-card > p, .product-card li { line-height: 1.65; }
.product-card footer { margin-top: auto; padding-top: 25px; display: flex; justify-content: space-between; gap: 22px; align-items: end; border-top: 2px solid currentColor; }
.product-card footer div { display: grid; }
.product-card footer small { font-size: .54rem; letter-spacing: .09em; }
.product-card footer strong { font-size: 1.22rem; }
.product-card__link { max-width: 240px; display: inline-block; font-weight: 800; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; transition: transform .2s ease, text-decoration-thickness .2s ease; }
.product-card:hover .product-card__link { transform: translateX(6px); text-decoration: underline; text-decoration-thickness: 3px; }

/* Journey */
.journey { position: relative; }
.journey-list { max-width: 930px; margin: 65px auto 0; position: relative; }
.journey-list::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; border-left: 2px dashed #b7a9bc; }
.journey-step { min-height: 295px; display: grid; grid-template-columns: 1fr 1fr; gap: 105px; align-items: center; position: relative; }
.journey-step:nth-child(even) .journey-visual { grid-column: 2; }
.journey-step:nth-child(even) .journey-copy { grid-column: 1; grid-row: 1; }
.journey-number { position: absolute; left: 50%; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; border: 2px solid var(--navy); border-radius: 50%; background: var(--yellow); font-weight: 800; transform: translateX(-50%); }
.journey-visual { width: 230px; height: 170px; margin: auto; display: grid; place-items: center; border: 2px solid var(--navy); box-shadow: var(--shadow); background: var(--coral); font: 600 3.2rem Newsreader, serif; }
.journey-step:nth-child(2) .journey-visual { background: var(--yellow); }
.journey-step:nth-child(3) .journey-visual { background: var(--blue); }
.journey-step:nth-child(4) .journey-visual { background: var(--pink); }
.journey-copy h3 { margin: 0 0 12px; font-size: 1.85rem; letter-spacing: -.045em; }
.journey-copy p { margin: 0; color: var(--muted); line-height: 1.65; }

/* Perceived value of a well-designed first contact */
.perceived-value { position: relative; overflow: hidden; background: var(--cream); }
.perceived-value::before { content: ""; position: absolute; width: 430px; height: 430px; right: -190px; top: -170px; border-radius: 50%; background: var(--violet); opacity: .1; }
.perceived-value__intro { display: grid; grid-template-columns: 1.05fr .75fr; gap: clamp(40px, 8vw, 120px); align-items: end; }
.perceived-value__intro h2 { max-width: 820px; margin: 0; font-size: clamp(2.15rem, 4.35vw, 4.3rem); line-height: 1; letter-spacing: -.055em; text-wrap: balance; }
.perceived-value__intro > p { margin: 0 0 7px; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.perceived-value__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 64px; }
.perceived-value__card { min-height: 330px; padding: 34px 28px 28px; display: flex; flex-direction: column; border: 2px solid var(--navy); background: var(--paper); box-shadow: 7px 7px 0 var(--navy); position: relative; overflow: hidden; }
.perceived-value__card::before { content: ""; position: absolute; inset: 0 0 auto; height: 12px; background: var(--card-accent); border-bottom: 2px solid var(--navy); }
.perceived-value__card--yellow { --card-accent: var(--yellow); border-radius: 58px 12px 12px; }
.perceived-value__card--blue { --card-accent: var(--blue); border-radius: 12px 58px 12px 12px; }
.perceived-value__card--coral { --card-accent: var(--coral); border-radius: 12px 12px 58px; }
.perceived-value__card > span { width: 42px; height: 42px; display: grid; place-items: center; border: 2px solid var(--navy); border-radius: 50%; background: var(--card-accent); font-size: .7rem; font-weight: 900; }
.perceived-value__card h3 { margin: auto 0 14px; font-size: clamp(1.65rem, 2.3vw, 2.45rem); line-height: 1; letter-spacing: -.045em; }
.perceived-value__card p { margin: 0; color: #40384b; line-height: 1.65; }
.perceived-value__statement { margin-top: 54px; padding: 29px 34px; display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; border: 2px solid var(--navy); border-radius: 999px; background: var(--violet); color: #fff; box-shadow: 8px 8px 0 var(--navy); }
.perceived-value__statement span { color: var(--yellow); font-size: 1.5rem; }
.perceived-value__statement p { max-width: 940px; margin: 0; font: 500 clamp(1.25rem, 2.2vw, 2rem)/1.2 Newsreader, serif; }

/* Real cases */
.case-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 15px; }
.case-card { min-height: 330px; padding: 27px; display: flex; flex-direction: column; border: 2px solid var(--navy); background: var(--paper); color: var(--ink); }
.case-card:nth-child(1), .case-card:nth-child(5) { grid-column: span 7; }
.case-card:nth-child(2), .case-card:nth-child(4) { grid-column: span 5; }
.case-card:nth-child(3) { grid-column: span 12; min-height: 280px; background: #fff1b8; }
.case-card:nth-child(1) { border-radius: 60px 12px 12px; background: #f2faf3; }
.case-card:nth-child(2) { border-radius: 12px 60px 12px 12px; background: var(--paper); }
.case-card:nth-child(4) { background: #edf3ff; }
.case-card:nth-child(5) { background: var(--paper); }
.case-card .case-label { color: var(--violet); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.case-card h3 { margin: 48px 0 13px; max-width: 620px; font-size: clamp(1.8rem, 3vw, 2.9rem); line-height: 1; letter-spacing: -.05em; }
.case-card p { max-width: 680px; margin: 0; line-height: 1.65; color: #5f5664; }
.case-card footer { margin-top: auto; padding-top: 22px; display: flex; gap: 8px; flex-wrap: wrap; }
.case-card footer span { padding: 6px 9px; border: 1px solid var(--navy); border-radius: 999px; font-size: .61rem; font-weight: 700; }
.proof-note { margin-top: 24px; color: #d4cdef; font-size: .76rem; line-height: 1.6; }

/* Scenario selector */
.scenario-selector { display: flex; flex-wrap: wrap; gap: 9px; }
.scenario-selector button { padding: 11px 15px; border: 2px solid var(--navy); border-radius: 999px; background: transparent; color: var(--navy); font-weight: 800; cursor: pointer; }
.scenario-selector button[aria-pressed="true"] { background: var(--coral); box-shadow: 4px 4px 0 var(--navy); }
.scenario-panel { min-height: 410px; margin-top: 30px; padding: 46px; display: grid; grid-template-columns: 1.2fr .8fr; border: 2px solid var(--navy); border-radius: 24px; background: var(--yellow); overflow: hidden; position: relative; }
.scenario-panel > div:first-child { position: relative; z-index: 2; }
.scenario-panel[hidden], [data-scenario-panel][hidden] { display: none; }
.scenario-panel h3 { max-width: 690px; margin: 55px 0 13px; font: 500 3.3rem/1 Newsreader, serif; }
.scenario-panel p { max-width: 630px; font-size: 1.02rem; line-height: 1.65; }
.scenario-art { position: absolute; right: -40px; bottom: -70px; width: 360px; height: 360px; border: 2px solid var(--navy); border-radius: 50%; background: var(--coral); }
.scenario-art::before, .scenario-art::after { content: ""; position: absolute; top: 95px; width: 72px; height: 72px; border-radius: 50%; background: var(--violet); }
.scenario-art::before { left: 85px; }
.scenario-art::after { right: 85px; }

/* Human handoff and video proof */
.handoff-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.handoff-art { min-height: 430px; position: relative; display: grid; place-items: center; }
.handoff-face { width: 330px; height: 330px; border: 2px solid var(--navy); border-radius: 50%; background: var(--yellow); position: relative; }
.handoff-face::before, .handoff-face::after { content: ""; position: absolute; top: 98px; width: 45px; height: 60px; border-radius: 50%; background: var(--navy); }
.handoff-face::before { left: 80px; }
.handoff-face::after { right: 80px; }
.handoff-smile { position: absolute; left: 100px; bottom: 72px; width: 130px; height: 65px; border-bottom: 8px solid var(--navy); border-radius: 50%; }
.handoff-note { position: absolute; right: 0; bottom: 15px; padding: 22px; border: 2px solid var(--navy); background: #fff; color: var(--ink); box-shadow: 7px 7px 0 var(--coral); font: 500 1.25rem Newsreader, serif; }
.handoff-note small { display: block; margin-top: 10px; font: 700 .56rem Manrope, sans-serif; text-transform: uppercase; }
.video-proof { overflow: hidden; border: 2px solid var(--navy); border-radius: var(--radius); background: var(--navy); box-shadow: var(--shadow); }
.video-proof video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.video-proof iframe { width: 100%; display: block; aspect-ratio: 16/9; border: 0; background: var(--navy); }
.video-caption { padding: 17px 20px; color: #fff; font-size: .78rem; line-height: 1.55; }

/* Internal page hero */
.page-hero { padding: 72px 0 92px; overflow: hidden; position: relative; }
.page-hero::after { content: ""; position: absolute; width: 360px; height: 360px; right: -120px; top: 90px; border-radius: 50%; background: var(--hero-accent, var(--yellow)); opacity: .75; }
.page-hero__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 65px; align-items: center; position: relative; z-index: 1; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 25px; color: var(--muted); font-size: .68rem; }
.breadcrumbs a { text-decoration: none; }
.page-hero h1 { max-width: 840px; margin: 0; font-size: clamp(3.5rem, 6.7vw, 6.8rem); line-height: .88; letter-spacing: -.072em; text-wrap: balance; }
.page-hero h1 em { color: var(--violet); font-family: Newsreader, serif; font-weight: 500; }
.page-hero__lead { max-width: 670px; margin: 25px 0; font-size: 1.1rem; line-height: 1.7; }
.page-hero__card { min-height: 430px; padding: 28px; display: flex; flex-direction: column; border: 2px solid var(--navy); border-radius: 70px 18px 70px 18px; background: var(--hero-card, var(--yellow)); color: var(--hero-card-text, var(--ink)); box-shadow: var(--shadow); }
.page-hero__card span { font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.page-hero__card strong { margin: auto 0; font: 500 clamp(2.2rem, 4vw, 3.8rem)/1 Newsreader, serif; }
.page-hero__card ul { padding: 20px 0 0; border-top: 2px solid var(--navy); list-style: none; }
.page-hero__card li { padding: 5px 0; font-size: .78rem; font-weight: 700; }

/* Mechanisms / features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.feature-card { min-height: 300px; padding: 26px; display: flex; flex-direction: column; border: 2px solid var(--navy); background: #fff; }
.feature-card:nth-child(2) { background: var(--yellow); }
.feature-card:nth-child(3) { background: var(--blue); }
.feature-card .feature-number { color: var(--violet); font-size: .68rem; font-weight: 800; }
.feature-card h3 { margin: 60px 0 13px; font-size: 1.55rem; letter-spacing: -.04em; }
.feature-card p { margin: 0; color: #625a67; line-height: 1.62; }
.flow-track { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--navy); }
.flow-step { min-height: 260px; padding: 23px; border-right: 2px solid var(--navy); background: #fff; }
.flow-step:last-child { border: 0; background: var(--yellow); }
.flow-step span { color: var(--violet); font-size: .65rem; font-weight: 800; }
.flow-step h3 { margin: 65px 0 12px; font-size: 1.35rem; }
.flow-step p { font-size: .78rem; line-height: 1.58; color: var(--muted); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 78px; }
.faq-list details { padding: 23px 0; border-top: 2px solid rgba(7, 28, 54, .35); }
.faq-list summary { cursor: pointer; list-style: none; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; font-size: 1.4rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 680px; margin: 15px 0 0; line-height: 1.67; color: #554d59; }

/* CTA and footer */
.final-cta { padding: 108px 0; background: var(--coral); text-align: center; }
.final-cta .container { display: grid; justify-items: center; }
.final-bubble { padding: 15px 21px; border: 2px solid var(--navy); border-radius: 30px 30px 30px 5px; background: #fff; box-shadow: 4px 4px 0 var(--navy); font-size: .79rem; font-weight: 800; transform: rotate(-2deg); }
.final-cta h2 { max-width: 1040px; margin: 35px auto 17px; font-size: clamp(2.5rem, 5.5vw, 5.45rem); line-height: .96; letter-spacing: -.055em; text-wrap: balance; }
.final-cta p { max-width: 690px; margin: 0 0 27px; font-size: 1.08rem; line-height: 1.66; }
.site-footer { padding: 70px 0 27px; background: var(--navy); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 45px; }
.footer-col { display: grid; align-content: start; gap: 11px; }
.footer-col p { max-width: 300px; color: #b7c0cd; font-size: .83rem; line-height: 1.62; }
.footer-col h2 { margin: 0 0 8px; color: var(--yellow); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { width: fit-content; color: #e7ebf1; font-size: .79rem; text-decoration: none; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { margin-top: 48px; padding-top: 22px; display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid #415269; color: #95a1b0; font-size: .7rem; }

/* Blog */
.blog-hero { padding: 82px 0; background: var(--yellow); border-bottom: 2px solid var(--navy); }
.blog-hero h1 { max-width: 880px; margin: 0; font: 500 clamp(3.8rem, 7vw, 7rem)/.9 Newsreader, serif; letter-spacing: -.055em; }
.blog-hero p { max-width: 650px; font-size: 1.08rem; line-height: 1.7; }
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.article-card { min-height: 390px; padding: 28px; display: flex; flex-direction: column; border: 2px solid var(--navy); background: #fff; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card:first-child { grid-column: span 2; min-height: 430px; border-radius: 70px 12px 70px 12px; background: var(--pink); }
.article-card:nth-child(2) { background: var(--blue); }
.article-card:nth-child(3) { background: var(--mint); }
.article-card:nth-child(4) { background: var(--yellow); }
.article-card span { color: var(--violet); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-card h2 { max-width: 730px; margin: 65px 0 14px; font-size: clamp(1.6rem, 3.15vw, 2.8rem); line-height: 1.04; letter-spacing: -.045em; }
.article-card p { max-width: 690px; margin: 0; color: #5e5662; line-height: 1.65; }
.article-card strong { margin-top: auto; padding-top: 25px; }
.article-page { background: var(--paper); }
.article-header { padding: 75px 0 64px; border-bottom: 1px solid var(--line); }
.article-header h1 { margin: 20px 0; font: 500 clamp(3.3rem, 6vw, 6.2rem)/.92 Newsreader, serif; letter-spacing: -.055em; text-wrap: balance; }
.article-deck { max-width: 760px; font-size: 1.14rem; line-height: 1.7; }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: .7rem; font-weight: 700; }
.article-body { padding: 72px 0 95px; }
.article-body h2 { margin: 55px 0 17px; font-size: clamp(1.6rem, 3.15vw, 2.45rem); line-height: 1.08; letter-spacing: -.035em; }
.article-body h3 { margin: 34px 0 12px; font-size: 1.45rem; }
.article-body p, .article-body li { font-size: 1.02rem; line-height: 1.82; }
.article-body a { color: var(--violet); font-weight: 700; }
.article-callout { margin: 40px 0; padding: 28px; border: 2px solid var(--navy); border-radius: 12px 50px 12px 12px; background: var(--yellow); box-shadow: var(--shadow); }
.article-callout strong { display: block; margin-bottom: 8px; font-size: 1.2rem; }
.article-cta { margin-top: 65px; padding: 40px; border-radius: var(--radius); background: var(--violet); color: #fff; }
.article-cta h2 { margin-top: 0; }
.article-cta p { color: #ddd7f8; }

/* About / 404 */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.value-card { min-height: 280px; padding: 27px; border: 2px solid var(--navy); background: #fff; }
.value-card:nth-child(2) { background: var(--yellow); }
.value-card:nth-child(3) { background: var(--blue); }
.value-card h3 { margin-top: 65px; font-size: 1.55rem; }
.value-card p { line-height: 1.65; }
.not-found { min-height: 72vh; padding: 80px 0; display: grid; place-items: center; text-align: center; }
.not-found strong { display: block; color: var(--coral); font: 500 9rem/.8 Newsreader, serif; }
.not-found h1 { font-size: 3rem; letter-spacing: -.06em; }

@media (max-width: 960px) {
  .hero-grid, .page-hero__grid, .handoff-grid, .faq-grid { grid-template-columns: 1fr; }
  .service-flow { margin-top: 30px; }
  .page-hero__card { min-height: 330px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .flow-track { grid-template-columns: 1fr 1fr; }
  .flow-step:nth-child(2) { border-right: 0; }
  .flow-step { border-bottom: 2px solid var(--navy); }
  .flow-step:nth-child(3), .flow-step:nth-child(4) { border-bottom: 0; }
  .case-card, .case-card:nth-child(n) { grid-column: span 6; }
  .case-card:nth-child(3) { grid-column: span 12; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .container, .narrow { width: min(100% - 28px, 680px); }
  .nav-toggle { display: block; }
  .nav-links { position: fixed; top: 82px; left: 0; right: 0; height: calc(100dvh - 82px); padding: 28px; display: none; flex-direction: column; align-items: stretch; background: var(--cream); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 10px; font-size: 1rem; }
  .nav-pricing, .nav-access, .nav-cta { text-align: center; }
  .section { padding: 78px 0; }
  .product-grid { grid-template-columns: 1fr; }
  .perceived-value__intro { grid-template-columns: 1fr; gap: 24px; }
  .perceived-value__grid { grid-template-columns: 1fr; }
  .perceived-value__card { min-height: 270px; }
  .journey-list::before { left: 18px; }
  .journey-step { grid-template-columns: 1fr; gap: 25px; margin-bottom: 45px; padding-left: 70px; }
  .journey-step:nth-child(even) .journey-visual, .journey-step:nth-child(even) .journey-copy { grid-column: auto; grid-row: auto; }
  .journey-number { left: 18px; }
  .scenario-panel { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card:first-child { grid-column: auto; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container, .narrow { width: min(100% - 22px, 480px); }
  .home-hero { padding-top: 54px; }
  .home-hero h1 { font-size: 3.75rem; }
  .page-hero h1 { font-size: 3.35rem; }
  .service-flow { min-height: 560px; }
  .service-flow::before { width: 330px; height: 330px; }
  .service-flow::after { inset: 38px 0 25px; }
  .service-flow__note--one { left: -5px; }
  .service-flow__note--two { right: -5px; }
  .phone { width: 294px; height: 555px; }
  .float-note { display: none; }
  .cta-row .btn { width: 100%; }
  .product-card { min-height: 610px; padding: 25px; }
  .product-card footer { display: grid; }
  .perceived-value__statement { padding: 23px; grid-template-columns: 1fr; border-radius: 28px; }
  .feature-grid, .flow-track { grid-template-columns: 1fr; }
  .flow-step { border-right: 0; border-bottom: 2px solid var(--navy) !important; }
  .flow-step:last-child { border-bottom: 0 !important; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card, .case-card:nth-child(n) { grid-column: auto; }
  .scenario-panel { min-height: 500px; padding: 27px; }
  .scenario-panel h3 { font-size: 2.55rem; }
  .scenario-art { opacity: .2; }
  .handoff-art { min-height: 390px; }
  .handoff-face { width: 290px; height: 290px; }
  .handoff-face::before { left: 66px; }
  .handoff-face::after { right: 66px; }
  .handoff-smile { left: 80px; }
  .handoff-note { right: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .article-header h1 { font-size: 3.2rem; }
  .article-cta { padding: 27px; }
}
