/*
Theme Name: Daniel Blanco
Theme URI: https://daniel-blanco.local
Author: Daniel Blanco
Description: One-page landing for Daniel Blanco coaching.
Version: 1.0.0
Text Domain: daniel-blanco
*/

:root {
    --ink: #18181b;
    --ink-soft: #3f3f46;
    --gray: #71717a;
    --gray-2: #a1a1aa;
    --line: #e4e4e7;
    --wash: #f4f4f5;
    --white: #ffffff;
    --orange: #fc5f2b;
    --orange-dark: #d94c22;
    --radius-pill: 9999px;
    --radius-card: 16px;
    --radius-frame: 24px;
    --wide: min(1360px, calc(100vw - 40px));
    --container: min(1080px, calc(100vw - 40px));
    --font: "Quicksand", "Helvetica Neue", Helvetica, sans-serif;
    --shadow: 0 16px 46px rgba(24, 24, 27, 0.12);
}

/* Legal pages */
.legal-page {
    padding: 140px 0 96px;
    background: var(--cream, #fffaf5);
}

.legal-page-inner {
    max-width: 840px;
}

.legal-page-header {
    margin-bottom: 48px;
}

.legal-page-header h1 {
    margin: 12px 0 0;
}

.legal-page-content {
    color: var(--ink, #1f2522);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.legal-page-content h2 {
    margin: 42px 0 12px;
    font-size: 1.45rem;
    line-height: 1.25;
}

.legal-page-content h2:first-child {
    margin-top: 0;
}

.legal-page-content p {
    margin: 0 0 18px;
}

.legal-page-content a {
    color: var(--orange, #fc5200);
    text-decoration: underline;
    text-underline-offset: 3px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.45;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

img,
video,
svg {
    display: block;
    max-width: 100%;
}

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    display: none;
}

.site-main {
    overflow: clip;
    background: var(--white);
}

.hero {
    width: 100%;
    padding: 8px;
}

.hero-frame {
    position: relative;
    width: min(100%, 1720px);
    min-height: calc(100vh - 16px);
    min-height: calc(100svh - 16px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-frame);
    background: #050505;
    color: var(--white);
    isolation: isolate;
}

.hero-video,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.02) brightness(0.78);
}

.hero-overlay {
    z-index: 1;
    background:
        radial-gradient(circle at 63% 42%, rgba(239, 170, 88, 0.5), transparent 34rem),
        linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.58)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.74));
}

.super-nav {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    width: min(980px, calc(100% - 56px));
    min-height: 64px;
    margin: 0;
    padding: 8px 10px 12px 24px;
    border-radius: 0 0 30px 30px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
    transform: translateX(-50%);
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: "⌄";
    display: inline-block;
    margin-left: 5px;
    font-size: 0.76em;
    transform: translateY(-1px);
}

.nav-dropdown-menu {
    position: absolute;
    /* Overlap the trigger slightly: there must be no hover gap before its links. */
    top: calc(100% - 4px);
    left: -14px;
    display: grid;
    min-width: 238px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 16px 32px rgba(24, 24, 27, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu a {
    padding: 10px 12px;
    border-radius: 9px;
    color: var(--ink) !important;
    font-size: 0.86rem !important;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: var(--wash);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.newsletter-page {
    min-height: 100vh;
    padding: 124px 0 80px;
    background: var(--wash);
}

.newsletter-page-intro {
    max-width: 730px;
    margin: 0 auto 32px;
    text-align: center;
}

.newsletter-page-intro h1 {
    max-width: 670px;
    margin: 10px auto 18px;
    font-size: clamp(2.45rem, 5vw, 4.6rem);
    line-height: 1;
}

.newsletter-page-intro p:last-child {
    max-width: 640px;
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: 1.1rem;
}

.newsletter-origin {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
    align-items: center;
    gap: clamp(28px, 6vw, 80px);
    max-width: 940px;
    margin: 0 auto 42px;
    padding: 0 18px;
}

.newsletter-origin h2 {
    margin: 0 0 14px;
}

.newsletter-origin p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.newsletter-origin img {
    width: 100%;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow);
}

.newsletter-consent {
    margin: 15px 0 0;
    color: var(--gray);
    font-size: 0.82rem;
    line-height: 1.45;
}

.newsletter-consent a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a,
.nav-right a:not(.nav-member) {
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.nav-logo {
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1;
}

.nav-member {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: var(--radius-pill);
    background: var(--ink);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: clamp(24px, 5vw, 86px);
    z-index: 2;
    display: grid;
    justify-items: start;
    width: min(780px, calc(100% - 48px));
    margin: 0;
    text-align: left;
    transform: translateY(-50%);
}

.hero-kicker {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.45vw, 1.2rem);
    font-weight: 700;
}

.hero-content h1 {
    margin: 0 0 26px;
    color: var(--white);
    font-size: clamp(2.9rem, 5.4vw, 5.4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.hero-actions,
.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions {
    justify-content: flex-start;
}

.hero-actions .btn {
    min-height: 58px;
    padding: 0 30px;
    font-size: 1.04rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-size: 0.94rem;
    font-weight: 700;
    transition: transform 170ms ease, background 170ms ease, color 170ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-white {
    background: var(--white);
    color: var(--ink);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
}

.section {
    width: var(--container);
    margin: 0 auto;
    padding: 76px 0;
}

.section-head {
    max-width: 620px;
    margin: 0 0 28px;
}

.section-head.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--orange);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
}

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

h2 {
    margin-bottom: 14px;
    color: var(--ink);
    font-size: clamp(2rem, 3.8vw, 3.45rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: clamp(1.2rem, 1.9vw, 1.55rem);
    font-weight: 600;
    line-height: 1.08;
}

.section-head p {
    color: var(--gray);
    font-size: 1.05rem;
    font-weight: 600;
}

.pricing {
    position: relative;
    width: var(--container);
    margin: 0 auto;
    overflow: visible;
    background: transparent;
    color: var(--ink);
}

.pricing::before,
.pricing::after {
    content: none;
}

.pricing .section-head,
.pricing .pricing-header,
.pricing .duration-toggle-group,
.pricing .pricing-grid {
    position: relative;
    z-index: 1;
}

.pricing .eyebrow {
    color: var(--orange);
}

.pricing h2 {
    color: var(--ink);
}

.pricing .section-head p {
    color: var(--gray);
}

.pricing .section-head {
    max-width: 100%;
}

.pricing-header {
    max-width: 1080px;
    margin-bottom: 28px;
}

.pricing-header .section-head {
    margin-bottom: 0;
}

.duration-toggle-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(480px, 100%);
    margin: 0 auto 24px;
    padding: 4px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 0 0 1px rgba(24, 24, 27, 0.06), 0 12px 30px rgba(24, 24, 27, 0.08);
}

.duration-toggle {
    min-height: 44px;
    border: 0;
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 700;
}

.duration-toggle span {
    margin-left: 6px;
    color: var(--orange-dark);
    font-size: 0.76rem;
    font-weight: 700;
}

.duration-toggle.is-active {
    background: #2f2f2f;
    color: var(--white);
}

.duration-toggle.is-active span {
    color: rgba(255, 255, 255, 0.74);
}

.pricing-grid,
.process-grid,
.fit-grid,
.review-grid {
    display: grid;
    gap: 18px;
}

.pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 940px;
    gap: 18px;
    margin: 0 auto;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    padding: clamp(28px, 3.2vw, 38px);
    border: 1px solid rgba(24, 24, 27, 0.2);
    border-radius: 34px;
    background: rgba(24, 24, 29, 0.94);
    color: var(--white);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 24px 70px rgba(0, 0, 0, 0.26);
    overflow: hidden;
}

.plan-card > * {
    position: relative;
    z-index: 1;
}

.plan-card.featured {
    border-color: transparent;
    border-radius: 34px;
    background: #30302f;
    box-shadow: 0 24px 70px rgba(24, 24, 27, 0.18);
}

.plan-card.featured::before {
    content: none;
}

.plan-card-training {
    border: 1.5px solid #c7c4bb;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    box-shadow: none;
}

.plan-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.plan-card h3 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.45rem, 1.9vw, 1.8rem);
    font-weight: 500;
    line-height: 1.06;
    text-align: center;
}

.plan-card-training h3,
.plan-card-training .price-line,
.plan-card-training .price-line span {
    color: var(--ink);
}

.price-line {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    margin: clamp(22px, 3vw, 30px) 0 16px;
    color: var(--white);
}

.price-line span {
    color: var(--white);
    font-size: clamp(3.65rem, 5vw, 4.55rem);
    font-weight: 400;
    line-height: 0.9;
}

.price-line small {
    margin-bottom: 11px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 1rem;
    font-weight: 400;
}

.plan-card-training .price-line small {
    color: var(--gray);
}

.plan-saving {
    display: none;
}

.plan-description {
    max-width: 390px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
    text-align: center;
}

.plan-card-training .plan-description {
    color: var(--ink-soft);
}

.feature-divider {
    display: block;
    height: 1px;
    margin: clamp(24px, 3vw, 32px) 0 clamp(22px, 2.8vw, 28px);
    border-top: 1px dashed rgba(255, 255, 255, 0.34);
}

.feature-divider span {
    display: none;
}

.plan-card-training .feature-divider {
    border-color: #cbc7ba;
}

.plan-features {
    display: grid;
    gap: 14px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    font-weight: 400;
}

.plan-card-training .plan-features li {
    color: var(--ink-soft);
}

.plan-features span {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: #84bf24;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 700;
}

.plan-card-training .plan-features span {
    background: #84bf24;
    color: var(--ink);
}

.plan-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}

.plan-duration {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
}

.plan-card-training .plan-duration {
    color: var(--gray);
}

.plan-card .btn {
    width: min(250px, 100%);
    min-height: 52px;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 14px 30px rgba(252, 95, 43, 0.22);
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article,
.fit-grid article {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--white);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.04);
}

.process-grid span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 22px;
    border-radius: 10px;
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
}

.process-grid p,
.fit-grid p,
.faq-list p {
    color: var(--gray);
}

.platform-section {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
    gap: clamp(28px, 5vw, 62px);
    align-items: center;
    padding: 76px 0 34px;
}

.platform-copy h2 {
    max-width: 600px;
}

.platform-copy > p {
    max-width: 620px;
    color: var(--gray);
    font-size: 1.05rem;
    font-weight: 600;
}

.platform-list {
    display: grid;
    gap: 10px;
    max-width: 420px;
}

.platform-list span {
    width: 100%;
}

.platform-visual {
    display: grid;
    place-items: center;
    min-width: 0;
    overflow: visible;
}

.platform-visual img {
    width: min(860px, 112%);
    max-width: none;
    margin: 0 auto;
    filter: drop-shadow(0 24px 34px rgba(24, 24, 27, 0.14));
}

.newsletter-card {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(28px, 5vw, 64px);
    overflow: hidden;
    padding: clamp(30px, 5vw, 58px);
    border-radius: var(--radius-frame);
    background:
        linear-gradient(135deg, rgba(252, 95, 43, 0.2), transparent 38%),
        var(--ink);
    color: var(--white);
}

.newsletter-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
}

.newsletter-copy h2 {
    max-width: 520px;
    color: var(--white);
}

.newsletter-copy .eyebrow {
    color: #ffb48f;
}

.newsletter-intro {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    font-weight: 700;
}

.newsletter-content {
    display: grid;
    align-content: start;
    gap: 26px;
}

.newsletter-benefits {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.newsletter-benefits li {
    display: grid;
    gap: 6px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.newsletter-benefits li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.newsletter-benefits strong {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.15;
}

.newsletter-benefits span {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
}

.newsletter-form {
    display: grid;
    gap: 10px;
}

.newsletter-form label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.newsletter-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.newsletter-field input {
    min-width: 0;
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-pill);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0 18px;
    font-weight: 700;
}

.newsletter-field input::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.newsletter-field input:focus {
    border-color: rgba(255, 255, 255, 0.64);
}

.newsletter-field .btn {
    min-height: 54px;
    padding: 0 26px;
}

.newsletter-recaptcha {
    margin-top: 18px;
}

.newsletter-success {
    padding: 18px;
    border-radius: 12px;
    background: #ecfdf3;
    color: #166534;
}

.newsletter-success p {
    margin: 6px 0 0;
}

.newsletter-feedback {
    margin: 10px 0 0;
    color: #b42318;
    font-size: 0.9rem;
}

.daniel-section {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
    gap: 34px;
    align-items: center;
    padding: 64px 0 34px;
    background: transparent;
    color: var(--ink);
}

.daniel-copy h2 {
    color: var(--ink);
}

.daniel-copy .eyebrow {
    color: var(--orange);
}

.daniel-copy p {
    max-width: 620px;
    color: var(--gray);
    font-size: 1.05rem;
}

.mini-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.mini-list span {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: var(--wash);
    font-size: 0.88rem;
    font-weight: 700;
}

.daniel-photo {
    display: grid;
    place-items: end center;
    min-height: 380px;
    overflow: hidden;
    padding: 26px 24px 0;
    border: 2px solid rgba(24, 24, 29, 0.14);
    border-radius: 30px;
    background: transparent;
}

.daniel-photo img {
    width: min(360px, 88%);
    margin-bottom: -4px;
    filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.26));
}

.fit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq {
    padding-top: 44px;
}

.faq-list {
    display: grid;
    gap: 10px;
    max-width: 780px;
    margin: 0 auto;
}

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--white);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.faq-list summary::after {
    content: "+";
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 8px;
    background: var(--wash);
    color: var(--ink);
    font-size: 1.35rem;
    font-weight: 500;
}

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

.faq-list p {
    margin: -6px 22px 22px;
}

.final-card {
    overflow: hidden;
    padding: clamp(30px, 5vw, 56px);
    border-radius: var(--radius-frame);
    background: linear-gradient(135deg, var(--orange), #d4532c 46%, #202024);
    color: var(--white);
}

.final-card h2,
.final-card p,
.final-card .eyebrow {
    max-width: 680px;
    color: var(--white);
}

.final-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
    color: var(--white);
}

.footer-inner,
.site-footer .container {
    width: var(--container);
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

@media (max-width: 980px) {
    :root {
        --wide: min(100% - 24px, 760px);
        --container: min(100% - 24px, 760px);
    }

    .super-nav {
        display: flex;
        justify-content: space-between;
    }

    .nav-left,
    .nav-right a:not(.nav-member) {
        display: none;
    }

    .platform-section,
    .pricing-grid,
    .daniel-section {
        grid-template-columns: 1fr;
    }

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

}

@media (max-width: 640px) {
    :root {
        --wide: min(100% - 16px, 520px);
        --container: min(100% - 20px, 520px);
    }

    .hero {
        padding: 4px;
    }

    .hero-frame {
        border-radius: 18px;
    }

    .super-nav {
        width: calc(100% - 28px);
        min-height: 54px;
        margin: 0;
        padding: 7px 8px 10px 16px;
        border-radius: 0 0 24px 24px;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .nav-member {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.82rem;
    }

    .hero-content {
        left: 18px;
        width: calc(100% - 28px);
        margin: 0;
    }

    .hero-content h1 {
        font-size: clamp(2.55rem, 12.5vw, 4rem);
    }

    .hero-actions .btn {
        min-height: 54px;
        padding: 0 18px;
        font-size: 0.94rem;
    }

    .final-actions {
        flex-direction: column;
    }

    .final-actions .btn {
        width: 100%;
    }

    .section {
        padding: 58px 0;
    }

    h2 {
        font-size: clamp(1.95rem, 9vw, 3rem);
    }

    .duration-toggle-group,
    .process-grid,
    .fit-grid {
        grid-template-columns: 1fr;
    }

    .duration-toggle-group {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-radius: 18px;
    }

    .process-grid article,
    .fit-grid article {
        padding: 20px;
    }

    .daniel-section {
        margin: 6px auto;
        padding: 24px;
        border-radius: 18px;
    }

    .daniel-photo {
        min-height: 330px;
    }

    .platform-section {
        padding: 58px 0 28px;
    }

    .platform-visual {
        border-radius: 20px;
    }

}

/* Human readability fixes after visual pass */
.hero-frame {
    min-height: calc(100vh - 16px);
    min-height: calc(100svh - 16px);
    padding-bottom: 34px;
}

.hero-content {
    width: min(780px, calc(100% - 48px));
    margin: 0;
}

.hero-content h1 {
    max-width: 780px;
    font-size: clamp(3rem, 5.4vw, 5.7rem);
    line-height: 1.03;
}

.section {
    padding: 64px 0;
}

.pricing {
    padding-top: 64px;
    padding-bottom: 64px;
}

.section-head {
    max-width: 560px;
}

h2 {
    font-size: clamp(1.85rem, 3.1vw, 2.85rem);
    line-height: 1.06;
}

h3 {
    font-size: clamp(1.12rem, 1.45vw, 1.38rem);
}

.pricing-grid {
    gap: 24px;
    max-width: 1080px;
}

.plan-card {
    min-height: 540px;
    padding: 42px;
}

.price-line {
    margin: 32px 0 18px;
}

.price-line span {
    font-size: 5rem;
}

.plan-duration,
.plan-saving {
    font-size: 0.86rem;
}

.plan-card .btn {
    min-height: 58px;
}

.duration-toggle-group {
    width: min(480px, 100%);
}

.duration-toggle {
    min-height: 44px;
    font-size: 0.96rem;
}

@media (max-width: 980px) {
    .hero-frame {
        min-height: calc(100vh - 16px);
        min-height: calc(100svh - 16px);
    }

    .pricing-grid {
        max-width: 620px;
    }

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

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

    .platform-visual img {
        width: min(820px, 100%);
        max-width: 100%;
    }

}

@media (max-width: 640px) {
    .hero-frame {
        min-height: calc(100vh - 8px);
        min-height: calc(100svh - 8px);
        padding-bottom: 24px;
    }

    .hero-content {
        left: 18px;
        width: calc(100% - 36px);
        margin: 0;
    }

    .hero-content h1 {
        font-size: clamp(2.25rem, 10vw, 3.35rem);
    }

    .pricing {
        padding-top: 52px;
        padding-right: 0;
        padding-bottom: 56px;
        padding-left: 0;
    }

    .pricing .section-head {
        max-width: none;
        margin-bottom: 0;
    }

    .pricing-header {
        margin-bottom: 24px;
    }

    .duration-toggle-group {
        width: min(480px, 100%);
        margin-bottom: 20px;
    }

    .pricing h2 {
        font-size: 2.1rem;
    }

    .pricing-grid {
        gap: 14px;
        max-width: none;
    }

    .plan-card {
        min-height: 0;
        padding: 28px 22px;
        border-radius: 26px;
    }

    .plan-card.featured {
        border-radius: 26px;
    }

    .plan-card h3 {
        max-width: none;
        font-size: 1.55rem;
    }

    .plan-card-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .price-line {
        gap: 8px;
        margin: 24px 0 16px;
    }

    .price-line span {
        font-size: 3.65rem;
    }

    .price-line small {
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .feature-divider {
        margin: 26px 0 24px;
    }

    .plan-features {
        gap: 16px;
        margin-bottom: 32px;
    }

    .plan-features li {
        gap: 12px;
        font-size: 1rem;
    }

    .plan-features span {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .plan-card .btn {
        width: min(280px, 100%);
        min-height: 54px;
    }

    .newsletter-card {
        gap: 24px;
        padding: 28px 22px;
        border-radius: 20px;
    }

    .platform-visual img {
        width: 100%;
    }

    .newsletter-copy {
        gap: 16px;
    }

    .newsletter-field {
        grid-template-columns: 1fr;
    }

    .newsletter-field .btn {
        width: 100%;
    }

    .newsletter-origin {
        grid-template-columns: 1fr;
        padding: 0;
    }
}
