:root {
    --paper: #f7f4ed;
    --surface: #fffdf8;
    --ink: #211b18;
    --ink-soft: #493f3a;
    --muted: #6d625d;
    --brand: #087f5b;
    --brand-dark: #066747;
    --brand-deep: #044a35;
    --brand-soft: #dff1e9;
    --rocket: #f58634;
    --rocket-dark: #9a3f0c;
    --rocket-soft: #ffead9;
    --green: var(--brand);
    --green-dark: var(--brand-deep);
    --green-soft: var(--brand-soft);
    --coral: var(--rocket);
    --coral-dark: var(--rocket-dark);
    --line: #ddd6d0;
    --font-display: "Sora", Arial, sans-serif;
    --font-body: "Manrope", Arial, sans-serif;
    --container: 1180px;
    --shadow: 0 8px 0 rgba(16, 35, 30, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
button,
a {
    font-family: var(--font-body);
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 3px;
}

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

h1,
h2 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

h1 {
    max-width: 17ch;
    margin-bottom: 24px;
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    line-height: 1.05;
}

h1 strong {
    color: var(--green);
    font-weight: 600;
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(2.2rem, 3.3vw, 3.55rem);
    line-height: 1.08;
}

h3 {
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    max-width: 70ch;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(16, 35, 30, 0.12);
    background: rgba(247, 244, 237, 0.94);
    backdrop-filter: blur(12px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: 190px;
    height: auto;
}

.brand-logo-white {
    width: min(250px, 100%);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.desktop-nav a {
    color: var(--ink-soft);
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
}

.desktop-nav a:hover {
    color: var(--green);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid var(--brand);
    border-radius: 10px;
    background: var(--brand);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
    border-color: var(--brand-deep);
    background: var(--brand-deep);
    color: #fff;
    transform: translateY(-2px);
}

.button-small {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.92rem;
}

.button-secondary {
    border-color: var(--ink);
    background: transparent;
    color: var(--ink);
}

.button-secondary:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.button-light {
    border-color: var(--surface);
    background: var(--surface);
    color: var(--ink);
}

.button-light:hover {
    border-color: var(--green-soft);
    background: var(--green-soft);
    color: var(--ink);
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 7px;
    color: var(--ink);
    font-weight: 700;
    text-decoration-color: rgba(16, 35, 30, 0.35);
    text-underline-offset: 5px;
}

.text-link:hover {
    color: var(--green);
    text-decoration-color: currentColor;
}

.hero {
    overflow: hidden;
    padding: clamp(60px, 8vw, 112px) 0 72px;
}

.hero-grid {
    display: grid;
    align-items: center;
    gap: clamp(48px, 7vw, 92px);
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-message-b {
    display: none;
}

html[data-hero-variant="b"] .hero-message-a {
    display: none;
}

html[data-hero-variant="b"] .hero-message-b {
    display: block;
}

.hero-context,
.section-kicker {
    margin-bottom: 17px;
    color: var(--green);
    font-size: 1.02rem;
    font-weight: 700;
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 28px;
    color: var(--ink-soft);
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    line-height: 1.58;
}

.hero-lead strong {
    color: var(--coral-dark);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    margin-bottom: 25px;
}

.variant-offer {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(8, 127, 91, 0.24);
    border-radius: 14px;
    background: #f3fbf7;
}

.variant-offer[hidden] {
    display: none;
}

.variant-offer-label,
.variant-offer-price {
    margin: 0;
}

.variant-offer-label {
    color: var(--green, #087f5b);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.variant-offer-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 4px;
    color: #211b18;
}

.variant-offer-price strong {
    font-family: Sora, Manrope, sans-serif;
    font-size: clamp(1.75rem, 5vw, 2.4rem);
}

.variant-offer-price span {
    color: #675e58;
    font-size: 0.9rem;
}

.variant-offer .button {
    margin-top: 12px;
    width: 100%;
}

.variant-offer ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 14px 0 0;
    padding: 0;
    color: #3f3935;
    font-size: 0.88rem;
    list-style: none;
}

.variant-offer li::before {
    content: '✓';
    margin-right: 8px;
    color: #087f5b;
    font-weight: 800;
}

.variant-offer-privacy {
    margin: 12px 0 0;
    padding-top: 10px;
    border-top: 1px solid rgba(8, 127, 91, 0.18);
    color: #594f48;
    font-size: 0.78rem;
    line-height: 1.4;
}

@media (max-width: 420px) {
    .variant-offer {
        padding: 16px;
    }

    .variant-offer ul {
        font-size: 0.8rem;
    }
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 0 0 30px;
    padding: 0;
    color: var(--muted);
    font-size: 0.91rem;
    list-style: none;
}

.hero-assurances li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-assurances li::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    content: "";
}

.shared-notice {
    display: grid;
    max-width: 630px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 253, 248, 0.7);
    grid-template-columns: 26px 1fr;
    gap: 13px;
}

.shared-notice svg,
.guarantee-note svg {
    width: 26px;
    fill: none;
    stroke: var(--green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.shared-notice p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hero-media {
    position: relative;
    width: min(46vw, 610px);
    margin: 0;
}

.hero-media::before {
    position: absolute;
    z-index: -1;
    inset: -24px 44% 50% -24px;
    background: var(--green-soft);
    content: "";
}

.hero-media img {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.hero-media figcaption {
    position: absolute;
    right: -20px;
    bottom: -28px;
    max-width: 265px;
    padding: 16px 18px;
    border: 1px solid var(--ink);
    border-radius: 10px;
    background: var(--surface);
    color: var(--ink-soft);
    font-size: 0.87rem;
    line-height: 1.4;
    box-shadow: 6px 6px 0 var(--ink);
}

.hero-media figcaption span {
    display: block;
    margin-bottom: 2px;
    color: var(--green);
    font-weight: 700;
}

.benefit-strip {
    border-block: 1px solid var(--line);
    background: var(--surface);
}

.benefit-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.benefit-row > div {
    display: grid;
    min-height: 174px;
    align-content: center;
    padding: 28px;
    border-right: 1px solid var(--line);
    gap: 8px;
}

.benefit-row > div:first-child {
    border-left: 1px solid var(--line);
}

.benefit-index {
    color: var(--coral-dark);
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.access-preview-section {
    border-bottom: 1px solid var(--line);
    background: #efeae3;
}

.access-preview-copy .section-kicker {
    color: var(--brand-dark);
}

.access-preview-grid {
    display: grid;
    align-items: center;
    gap: clamp(54px, 8vw, 100px);
    grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
}

.access-preview-copy h2 {
    max-width: 11ch;
}

.access-preview-copy > p:not(.section-kicker) {
    color: var(--muted);
}

.access-preview-list {
    margin: 35px 0 0;
    padding: 0;
    border-top: 1px solid var(--ink);
    list-style: none;
}

.access-preview-list li {
    display: grid;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 130px 1fr;
    gap: 18px;
}

.access-preview-list strong {
    font-size: 0.9rem;
}

.access-preview-list span {
    color: var(--muted);
    font-size: 0.87rem;
}

.access-service-row {
    display: grid;
    margin-top: clamp(54px, 7vw, 82px);
    border-block: 1px solid var(--ink);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.access-service-row > div {
    display: grid;
    min-width: 0;
    padding: 24px 28px;
    border-right: 1px solid var(--line);
    gap: 4px;
}

.access-service-row > div:first-child {
    border-left: 1px solid var(--line);
}

.access-service-row strong {
    color: var(--ink);
    font-size: 0.96rem;
}

.access-service-row span {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.chatgpt-preview-wrap {
    min-width: 0;
}

.chatgpt-window {
    overflow: hidden;
    border: 1px solid #bcb8b4;
    border-radius: 14px;
    background: #fff;
    box-shadow: 10px 10px 0 var(--brand);
}

.chatgpt-topbar {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 16px;
    border-bottom: 1px solid #e5e5e5;
}

.chatgpt-product-name {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: Arial, sans-serif;
}

.chatgpt-product-name img {
    width: 27px;
    height: 27px;
}

.chatgpt-product-name strong {
    color: #171717;
    font-size: 0.96rem;
}

.chatgpt-product-name span {
    padding: 3px 7px;
    border-radius: 6px;
    background: #ececec;
    color: #555;
    font-size: 0.7rem;
    font-weight: 700;
}

.access-status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #206542;
    font-size: 0.78rem;
    font-weight: 700;
}

.access-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22a06b;
    box-shadow: 0 0 0 3px #dcf3e7;
}

.chatgpt-app-shell {
    display: grid;
    min-height: 450px;
    grid-template-columns: 68px 1fr;
}

.chatgpt-sidebar {
    display: flex;
    align-items: stretch;
    padding: 15px 12px;
    background: #f7f7f8;
    flex-direction: column;
    gap: 16px;
}

.chatgpt-sidebar span:not(.sidebar-action) {
    display: block;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #ddd;
}

.chatgpt-sidebar .sidebar-action {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid #d2d2d2;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 1.2rem;
}

.chatgpt-sidebar .sidebar-bottom {
    margin-top: auto;
}

.chatgpt-main {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    padding: 28px 34px 25px;
    background: #fff;
    flex-direction: column;
}

.model-selector {
    align-self: flex-start;
    color: #303030;
    font-family: Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
}

.model-selector span {
    color: #777;
}

.chatgpt-welcome {
    margin: auto 0 26px;
    text-align: center;
}

.chatgpt-welcome img {
    width: 36px;
    height: 36px;
    margin: 0 auto 14px;
}

.chatgpt-welcome h3 {
    margin: 0 0 7px;
    color: #212121;
    font-family: Arial, sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
}

.chatgpt-welcome p {
    margin: 0;
    color: #727272;
    font-family: Arial, sans-serif;
    font-size: 0.83rem;
}

.chatgpt-tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin-bottom: 16px;
}

.chatgpt-tools span {
    padding: 7px 9px;
    border: 1px solid #dedede;
    border-radius: 8px;
    color: #555;
    font-family: Arial, sans-serif;
    font-size: 0.68rem;
}

.chatgpt-composer {
    display: flex;
    width: min(100%, 480px);
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 10px 9px 17px;
    border: 1px solid #d8d8d8;
    border-radius: 14px;
    color: #666;
    font-family: Arial, sans-serif;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.chatgpt-composer button {
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #191919;
    color: #fff;
}

.preview-disclaimer {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.benefit-row p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.48;
}

.benefit-row strong {
    color: var(--ink);
}

.section {
    padding: clamp(88px, 11vw, 150px) 0;
}

.section-heading {
    margin-bottom: 60px;
}

.split-heading {
    display: grid;
    align-items: end;
    gap: 60px;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.split-heading h2 {
    max-width: 12ch;
    margin-bottom: 0;
}

.split-heading > p,
.section-intro {
    color: var(--muted);
    font-size: 1.08rem;
}

.flow-section {
    background: var(--surface);
}

.rocket-reasons-section {
    background: var(--surface);
}

.rocket-reasons-section .split-heading h2 {
    max-width: 15ch;
}

.rocket-reasons-layout {
    display: grid;
    align-items: start;
    gap: clamp(50px, 8vw, 96px);
    grid-template-columns: minmax(420px, 1.08fr) minmax(340px, 0.92fr);
}

.rocket-reasons-media {
    position: sticky;
    top: 112px;
}

.rocket-reasons-media img {
    border: 1px solid var(--ink);
    box-shadow: 10px 10px 0 var(--green-soft);
}

.rocket-reasons-media figcaption {
    max-width: 520px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 0.9rem;
}

.rocket-commitments {
    border-top-color: var(--ink);
}

.rocket-purchase-line {
    display: grid;
    border-bottom: 1px solid var(--ink);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rocket-purchase-line span {
    display: flex;
    min-height: 82px;
    align-items: center;
    padding: 16px 14px;
    border-right: 1px solid var(--line);
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.4;
}

.rocket-purchase-line span:last-child {
    border-right: 0;
}

.flow-layout {
    display: grid;
    align-items: start;
    gap: clamp(48px, 8vw, 94px);
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
}

.timeline {
    margin: 0;
    padding: 0;
    list-style: none;
}

.timeline li {
    position: relative;
    display: grid;
    padding: 0 0 34px;
    grid-template-columns: 42px 1fr;
    gap: 18px;
}

.timeline li:not(:last-child)::after {
    position: absolute;
    top: 42px;
    bottom: 0;
    left: 20px;
    width: 1px;
    background: var(--line);
    content: "";
}

.timeline li > span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--surface);
    color: var(--green);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
}

.timeline h3 {
    margin: 3px 0 7px;
    font-size: 1.18rem;
}

.timeline p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
}

.editorial-media {
    margin: 0;
}

.editorial-media img {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    object-fit: cover;
}

.flow-media {
    position: sticky;
    top: 112px;
}

.flow-media img {
    box-shadow: 10px 10px 0 var(--green-soft);
}

.flow-media figcaption {
    max-width: 500px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 0.9rem;
}

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

.resources-layout {
    display: grid;
    align-items: center;
    gap: clamp(54px, 9vw, 110px);
    grid-template-columns: minmax(400px, 1fr) minmax(0, 0.94fr);
}

.resources-copy h2 {
    max-width: 11ch;
}

.resource-list {
    margin-top: 44px;
    border-top: 1px solid var(--line);
}

.resource-list article {
    display: grid;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
    gap: 25px;
}

.resource-list h3,
.resource-list p {
    margin: 0;
}

.resource-list h3 {
    font-size: 1.02rem;
}

.resource-list p {
    color: var(--muted);
    font-size: 0.92rem;
}

.resources-media {
    position: relative;
}

.resources-media::after {
    position: absolute;
    z-index: -1;
    right: -24px;
    bottom: -24px;
    width: 62%;
    height: 62%;
    background: var(--coral);
    content: "";
}

.resources-media img {
    border: 1px solid var(--ink);
}

.use-cases {
    overflow: hidden;
    padding: 92px 0;
    border-block: 1px solid var(--ink);
    background: var(--green-soft);
}

.use-cases h2 {
    max-width: 930px;
}

.use-cases .section-kicker {
    color: var(--green-dark);
}

.use-case-line {
    display: flex;
    width: max-content;
    gap: 18px;
    margin-top: 44px;
}

.use-case-line span {
    padding: 9px 14px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--surface);
    font-size: 0.91rem;
    font-weight: 700;
}

.access-proof-section,
.testimonials-section {
    overflow: hidden;
    border-bottom: 1px solid rgba(4, 74, 53, 0.24);
    background: var(--green-soft);
}

.testimonials-heading {
    display: grid;
    align-items: end;
    margin-bottom: clamp(40px, 6vw, 72px);
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
    gap: 40px 90px;
}

.testimonials-heading h2 {
    max-width: 15ch;
    margin-bottom: 0;
}

.testimonials-heading > p {
    margin: 0 0 8px;
    color: #285647;
    font-size: 1.02rem;
}

.access-proof-gallery {
    display: grid;
    max-width: 1040px;
    margin: 0 auto clamp(70px, 9vw, 112px);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(28px, 5vw, 64px);
}

.access-proof-section .access-proof-gallery {
    margin-bottom: 0;
}

.access-proof {
    min-width: 0;
    margin: 0;
}

.access-proof:nth-child(2) {
    margin-top: 54px;
}

.access-proof-media {
    overflow: hidden;
    border: 1px solid rgba(4, 74, 53, 0.35);
    border-radius: 14px;
    background: #fff;
}

.access-proof-media img {
    width: 100%;
    height: auto;
}

.access-proof figcaption {
    display: grid;
    padding: 20px 2px 0;
    gap: 2px;
}

.access-proof figcaption span {
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.access-proof figcaption strong {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.28rem;
    letter-spacing: -0.025em;
}

.access-proof figcaption small {
    color: #3a6557;
    font-size: 0.78rem;
}

.testimonials-subheading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-top: 32px;
    border-top: 1px solid rgba(4, 74, 53, 0.28);
    gap: 24px 40px;
}

.testimonials-subheading h3,
.testimonials-subheading p {
    margin: 0;
}

.testimonials-subheading h3 {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 600;
}

.testimonials-subheading p {
    max-width: 470px;
    color: #285647;
    font-size: 0.92rem;
}

.testimonials-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 64px;
}

.testimonial-featured {
    position: sticky;
    top: 112px;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 14px;
    background: var(--brand-deep);
    color: #fff;
    box-shadow: 8px 8px 0 var(--rocket);
}

.testimonial-featured::before {
    display: block;
    width: 44px;
    height: 5px;
    margin-bottom: 34px;
    background: var(--rocket);
    content: "";
}

.testimonial-featured blockquote {
    margin: 16px 0 38px;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.24;
    text-wrap: pretty;
}

.testimonial-featured footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 20px;
}

.testimonial-featured footer span {
    color: #bfe3d5;
    font-size: 0.84rem;
}

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 32px;
    border-top: 1px solid rgba(4, 74, 53, 0.28);
}

.testimonial-card {
    display: flex;
    min-width: 0;
    min-height: 228px;
    flex-direction: column;
    padding: 28px 2px 26px;
    border-bottom: 1px solid rgba(4, 74, 53, 0.28);
}

.testimonial-card blockquote {
    margin: 16px 0 26px;
    color: #173d31;
    font-size: 1rem;
    line-height: 1.55;
    text-wrap: pretty;
}

.testimonial-card cite,
.testimonial-featured cite {
    overflow-wrap: anywhere;
    font-style: normal;
    font-weight: 700;
}

.testimonial-card cite {
    margin-top: auto;
    color: var(--green-dark);
    font-size: 0.85rem;
}

.testimonial-rating {
    color: var(--rocket-dark);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
}

.testimonial-featured .testimonial-rating {
    color: #ffb77f;
}

.testimonials-actions {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: flex-end;
    margin-top: 36px;
    gap: 18px 28px;
}

.testimonials-actions p {
    margin: 0;
    color: #3a6557;
    font-size: 0.82rem;
}

.testimonials-toggle {
    min-height: 48px;
    padding: 11px 18px;
    border: 1px solid var(--brand-deep);
    border-radius: 9px;
    background: transparent;
    color: var(--brand-deep);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.testimonials-toggle:hover {
    background: var(--brand-deep);
    color: #fff;
    transform: translateY(-2px);
}

.testimonial-item[hidden] {
    display: none;
}

.transparency-section {
    background: var(--ink);
    color: #f9f6ef;
}

.transparency-grid {
    display: grid;
    gap: 36px 90px;
    grid-template-columns: minmax(300px, 0.85fr) minmax(430px, 1.15fr);
}

.transparency-grid .section-kicker {
    color: #ffc79f;
}

.transparency-grid h2 {
    max-width: 10ch;
}

.transparency-grid > div:first-child > p:last-child {
    color: #cfc2ba;
}

.transparency-points {
    border-top: 1px solid #5b4c45;
}

.transparency-points article {
    display: grid;
    padding: 23px 0;
    border-bottom: 1px solid #5b4c45;
    grid-template-columns: minmax(145px, 0.72fr) minmax(0, 1.28fr);
    gap: 24px;
}

.transparency-points span {
    color: #fff;
    font-weight: 700;
}

.transparency-points p {
    margin: 0;
    color: #cfc2ba;
    font-size: 0.95rem;
}

.independence-note {
    margin: 10px 0 0;
    padding-top: 26px;
    border-top: 1px solid #5b4c45;
    color: #a9968b;
    font-size: 0.83rem;
    grid-column: 1 / -1;
}

.pricing-section {
    background: var(--surface);
}

.pricing-heading {
    max-width: 850px;
    margin-inline: auto;
    text-align: center;
}

.pricing-heading h2 {
    margin-bottom: 18px;
}

.pricing-heading > p:last-child {
    margin-inline: auto;
    color: var(--muted);
}

.pricing-heading a {
    color: var(--green-dark);
    font-weight: 700;
    text-underline-offset: 4px;
}

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

.pricing-status,
.pricing-unavailable {
    max-width: 760px;
    margin: 34px auto 0;
    border-radius: 14px;
}

.pricing-status[hidden],
.pricing-grid[hidden],
.pricing-unavailable[hidden] {
    display: none;
}

.pricing-status {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px;
    border: 1px solid var(--line);
    color: var(--muted);
    text-align: center;
}

.pricing-status p,
.pricing-unavailable p {
    margin: 0;
}

.pricing-status.is-cached {
    min-height: auto;
    margin-bottom: 18px;
    border-color: #b8aa9f;
    background: #fff8ec;
    color: #6f4b20;
}

.pricing-spinner {
    width: 22px;
    height: 22px;
    border: 2px solid var(--line);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: pricing-spin 700ms linear infinite;
}

.pricing-unavailable {
    padding: 28px;
    border: 1px solid #d6a49b;
    background: #fff4f1;
    text-align: center;
}

.pricing-unavailable h3 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.pricing-unavailable > div {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pricing-unavailable .button {
    width: auto;
}

@keyframes pricing-spin {
    to {
        transform: rotate(360deg);
    }
}

.price-card {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 34px 30px 30px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    flex-direction: column;
}

.price-card.featured {
    border: 2px solid var(--green);
    box-shadow: var(--shadow);
}

.plan-badge {
    position: absolute;
    top: 0;
    left: 28px;
    margin: 0;
    padding: 6px 11px;
    border-radius: 0 0 8px 8px;
    background: var(--brand);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
}

.badge-soft {
    background: var(--green-soft);
    color: var(--green-dark);
}

.price-card-top {
    min-height: 98px;
    padding-top: 16px;
}

.price-card h3 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
}

.price-card-top p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.price {
    display: flex;
    min-height: 78px;
    align-items: baseline;
    gap: 6px;
    margin: 18px 0 12px;
}

.price span {
    font-size: 1rem;
    font-weight: 700;
}

.price strong {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 5vw, 4.8rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
}

.price small {
    color: var(--muted);
    font-size: 0.85rem;
}

.monthly-equivalent {
    align-self: flex-start;
    margin: 0 0 18px;
    padding: 6px 9px;
    border-radius: 7px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: 0.82rem;
}

.price-card ul {
    display: grid;
    margin: 12px 0 28px;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
    gap: 11px;
}

.price-card li {
    position: relative;
    padding-left: 23px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.price-card li::before {
    position: absolute;
    top: 0.1em;
    left: 0;
    color: var(--green);
    font-weight: 700;
    content: "✓";
}

.price-card .button {
    width: 100%;
    margin-top: auto;
}

.guarantee-note {
    display: grid;
    max-width: 670px;
    margin: 36px auto 0;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    grid-template-columns: 32px 1fr;
    gap: 14px;
}

.guarantee-note strong {
    display: block;
    margin-bottom: 2px;
}

.guarantee-note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

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

.support-grid {
    display: grid;
    gap: clamp(50px, 9vw, 110px);
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.support-grid h2 {
    max-width: 10ch;
}

.support-commitments {
    border-top: 1px solid var(--ink);
}

.support-commitments article {
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
}

.support-commitments strong {
    display: block;
    margin-bottom: 5px;
    color: var(--green);
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.support-commitments h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.support-commitments p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.faq-section {
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.faq-layout {
    display: grid;
    align-items: start;
    gap: clamp(50px, 10vw, 120px);
    grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
}

.faq-heading {
    position: sticky;
    top: 112px;
}

.faq-heading h2 {
    margin-bottom: 18px;
}

.faq-heading > p:not(.section-kicker) {
    color: var(--muted);
}

.faq-list {
    border-top: 1px solid var(--ink);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 24px 46px 24px 0;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 22px;
    right: 4px;
    color: var(--green);
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    content: "+";
}

.faq-list details[open] summary::after {
    content: "–";
}

.faq-list details p {
    margin: -7px 0 25px;
    padding-right: 50px;
    color: var(--muted);
}

.final-cta {
    padding: 76px 0;
    background: var(--brand);
    color: #fff;
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.final-cta p {
    margin-bottom: 8px;
    color: #fff;
    font-weight: 700;
}

.final-cta h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.final-cta .button {
    flex: 0 0 auto;
}

.site-footer {
    padding: 70px 0 24px;
    background: var(--ink);
    color: #f5efeb;
}

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

.brand-footer {
    margin-bottom: 20px;
    color: #fff;
}

.footer-grid > div:first-child > p {
    max-width: 360px;
    color: #c3b5ad;
}

.footer-grid h2 {
    margin-bottom: 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
}

.footer-grid a {
    color: #c3b5ad;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-grid a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.company-details p {
    margin: 0;
    color: #a49085;
    font-size: 0.82rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    padding-top: 22px;
    border-top: 1px solid #55463f;
    color: #a49085;
    font-size: 0.78rem;
}

.footer-bottom p {
    margin: 0;
}

.floating-whatsapp {
    position: fixed;
    z-index: 45;
    right: 20px;
    bottom: 20px;
    display: flex;
    min-height: 50px;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border: 1px solid #075f48;
    border-radius: 12px;
    background: #0c6b4f;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 4px 4px 0 rgba(16, 35, 30, 0.22);
    transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
    background: #07513c;
    transform: translateY(-2px);
}

.floating-whatsapp svg {
    width: 24px;
    fill: currentColor;
}

@media (max-width: 1040px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
        gap: 42px;
    }

    .hero-media {
        width: 100%;
    }

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

    .resources-layout {
        grid-template-columns: 1fr;
    }

    .resources-media {
        width: min(760px, calc(100% - 24px));
    }

    .testimonials-layout {
        grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
        gap: 40px;
    }

    .testimonial-list {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-height: 0;
    }

    .pricing-grid {
        max-width: 760px;
        margin-inline: auto;
        grid-template-columns: repeat(2, 1fr);
    }

    .price-card.featured {
        order: -1;
    }

    .price-card:last-child {
        grid-column: 1 / -1;
    }

    .footer-grid {
        grid-template-columns: 1.4fr repeat(2, 0.7fr);
    }

    .company-details {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .desktop-nav {
        display: none;
    }

    .hero {
        padding-top: 58px;
    }

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

    h1 {
        max-width: 14ch;
    }

    .hero-media {
        width: calc(100% - 20px);
    }

    .hero-media figcaption {
        right: -20px;
    }

    .split-heading,
    .access-preview-grid,
    .flow-layout,
    .rocket-reasons-layout,
    .testimonials-heading,
    .testimonials-layout,
    .transparency-grid,
    .support-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .testimonials-heading {
        align-items: start;
        gap: 20px;
    }

    .testimonials-heading > p {
        max-width: 620px;
    }

    .access-proof-gallery {
        max-width: 760px;
        gap: 26px;
    }

    .access-proof:nth-child(2) {
        margin-top: 34px;
    }

    .testimonials-subheading {
        align-items: start;
        flex-direction: column;
        gap: 8px;
    }

    .testimonials-layout {
        gap: 50px;
    }

    .testimonial-featured {
        position: static;
    }

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

    .flow-media,
    .rocket-reasons-media,
    .faq-heading {
        position: static;
    }

    .transparency-grid {
        gap: 50px;
    }

    .faq-layout {
        gap: 40px;
    }

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .footer-grid > div:first-child,
    .company-details {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-inner {
        min-height: 68px;
    }

    .site-header .button-small {
        padding-inline: 14px;
    }

    .hero {
        padding: 44px 0 66px;
    }

    h1 {
        font-size: clamp(2.65rem, 12vw, 3.55rem);
    }

    h2 {
        font-size: clamp(2.15rem, 10vw, 3.1rem);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-actions .text-link {
        justify-content: center;
    }

    .hero-assurances {
        display: grid;
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .shared-notice {
        padding: 14px;
    }

    .hero-media {
        width: calc(100% - 10px);
    }

    .hero-media img {
        border-radius: 12px;
    }

    .hero-media figcaption {
        position: relative;
        right: -10px;
        bottom: 0;
        width: calc(100% - 18px);
        max-width: none;
        margin-top: -8px;
    }

    .benefit-row {
        grid-template-columns: 1fr;
    }

    .benefit-row > div,
    .benefit-row > div:first-child,
    .benefit-row > div:nth-child(3) {
        min-height: auto;
        padding: 22px 18px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        border-left: 1px solid var(--line);
    }

    .benefit-row > div:last-child {
        border-bottom: 0;
    }

    .access-preview-grid {
        gap: 44px;
    }

    .access-preview-list li {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .access-service-row {
        grid-template-columns: 1fr;
    }

    .access-service-row > div,
    .access-service-row > div:first-child {
        padding: 20px 18px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        border-left: 1px solid var(--line);
    }

    .access-service-row > div:last-child {
        border-bottom: 0;
    }

    .chatgpt-window {
        box-shadow: 7px 7px 0 var(--brand);
    }

    .chatgpt-topbar {
        padding-inline: 12px;
    }

    .access-status {
        font-size: 0;
    }

    .chatgpt-app-shell {
        min-height: 410px;
        grid-template-columns: 1fr;
    }

    .chatgpt-sidebar {
        display: none;
    }

    .chatgpt-main {
        padding: 24px 18px 20px;
    }

    .chatgpt-tools {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .chatgpt-tools span {
        text-align: center;
    }

    .section {
        padding: 84px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .split-heading {
        gap: 20px;
    }

    .timeline li {
        grid-template-columns: 38px 1fr;
        gap: 14px;
    }

    .timeline li > span {
        width: 38px;
        height: 38px;
    }

    .timeline li:not(:last-child)::after {
        top: 38px;
        left: 18px;
    }

    .flow-media img {
        box-shadow: 7px 7px 0 var(--green-soft);
    }

    .rocket-reasons-media img {
        box-shadow: 7px 7px 0 var(--green-soft);
    }

    .rocket-purchase-line {
        grid-template-columns: 1fr;
    }

    .rocket-purchase-line span {
        min-height: auto;
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .rocket-purchase-line span:last-child {
        border-bottom: 0;
    }

    .resource-list article {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .resources-media {
        width: calc(100% - 14px);
    }

    .resources-media::after {
        right: -14px;
        bottom: -14px;
    }

    .use-cases {
        padding: 74px 0;
    }

    .use-case-line {
        flex-wrap: wrap;
        width: auto;
    }

    .testimonials-heading {
        margin-bottom: 42px;
    }

    .testimonials-heading h2 {
        max-width: 13ch;
    }

    .access-proof-gallery {
        max-width: 440px;
        margin-bottom: 72px;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .access-proof:nth-child(2) {
        margin-top: 0;
    }

    .access-proof figcaption {
        padding-top: 15px;
    }

    .access-proof figcaption strong {
        font-size: 1.15rem;
    }

    .testimonial-featured {
        box-shadow: 6px 6px 0 var(--rocket);
    }

    .testimonial-list {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding-block: 24px;
    }

    .testimonials-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 30px;
    }

    .testimonials-toggle {
        width: 100%;
    }

    .transparency-points article {
        grid-template-columns: 1fr;
        gap: 6px;
    }

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

    .pricing-unavailable > div {
        align-items: stretch;
        flex-direction: column;
    }

    .pricing-unavailable .button {
        width: 100%;
    }

    .price-card:last-child {
        grid-column: auto;
    }

    .price-card {
        padding-inline: 24px;
    }

    .support-commitments strong {
        font-size: 1.25rem;
    }

    .faq-list details p {
        padding-right: 8px;
    }

    .final-cta {
        padding: 68px 0;
    }

    .final-cta .button {
        width: 100%;
    }

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

    .footer-grid > div:first-child,
    .company-details {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 42px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        justify-content: center;
        width: 52px;
        min-height: 52px;
        padding: 0;
        border-radius: 50%;
    }

    .floating-whatsapp span {
        display: none;
    }

}

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

    .pricing-spinner {
        border-color: var(--green);
    }

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