@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap");

:root {
    --background: #f5efe5;
    --background-light: #fffaf2;
    --surface: #ffffff;
    --ink: #22201d;
    --muted: #706a62;
    --orange: #dc6b35;
    --orange-dark: #b84b22;
    --orange-soft: #f7dfcf;
    --green: #23705a;
    --green-soft: #e6f2ec;
    --border: #e5ddd2;
    --whatsapp: #dff5d8;
    --shadow: 0 25px 70px rgba(64, 45, 28, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background:
        radial-gradient(
            circle at 74% 20%,
            rgba(232, 166, 113, 0.19),
            transparent 27rem
        ),
        linear-gradient(135deg, var(--background-light), var(--background));
    font-family: "DM Sans", sans-serif;
}

a {
    color: inherit;
}

.site-header {
    width: min(1400px, calc(100% - 56px));
    min-height: 86px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.brand {
    width: max-content;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.06em;
    text-decoration: none;
}

.brand::after {
    content: ".";
    color: var(--orange);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-nav a {
    color: #4f4a44;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
}

.header-cta {
    justify-self: end;
    padding: 11px 19px;
    color: #ffffff;
    background: var(--ink);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
}

.hero {
    width: min(1400px, calc(100% - 56px));
    min-height: calc(100vh - 86px);
    margin: 0 auto;
    padding: 46px 0 76px;
    display: grid;
    grid-template-columns: minmax(340px, 0.72fr) minmax(720px, 1.45fr);
    align-items: center;
    gap: clamp(38px, 5vw, 88px);
}

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

.eyebrow {
    margin: 0 0 18px;
    color: var(--orange-dark);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

h1 {
    max-width: 570px;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.75rem, 4.4vw, 4.65rem);
    line-height: 1.02;
    letter-spacing: -0.065em;
}

h1 span {
    display: block;
    color: var(--orange);
}

.hero-description {
    max-width: 540px;
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.65;
}

.hero-actions {
    margin-top: 31px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.button {
    min-height: 50px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.button-primary {
    color: #ffffff;
    background: var(--orange);
    box-shadow: 0 12px 25px rgba(184, 75, 34, 0.2);
}

.text-link {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.text-link span {
    margin-left: 5px;
    color: var(--orange);
}

.hero-note {
    max-width: 490px;
    margin: 18px 0 0;
    color: #8b8379;
    font-size: 0.79rem;
    line-height: 1.5;
}

.product-story {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns:
        minmax(250px, 0.78fr)
        90px
        minmax(360px, 1.15fr);
    align-items: center;
    gap: 15px;
}

.phone-panel,
.brief-panel {
    position: relative;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.phone-panel {
    overflow: hidden;
    border: 7px solid #252422;
    border-radius: 30px;
    transform: rotate(-1.3deg);
}

.phone-top {
    position: relative;
    padding-top: 20px;
    background: #f7f7f4;
}

.phone-camera {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 65px;
    height: 8px;
    background: #252422;
    border-radius: 999px;
    transform: translateX(-50%);
}

.whatsapp-header {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f7f7f4;
    border-bottom: 1px solid #e6e5e1;
}

.avatar {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--orange);
    border-radius: 50%;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.whatsapp-header div:last-child {
    display: flex;
    flex-direction: column;
}

.whatsapp-header strong {
    font-size: 0.82rem;
}

.whatsapp-header span {
    color: #7d7974;
    font-size: 0.64rem;
}

.chat-area {
    min-height: 454px;
    padding: 15px 12px;
    background:
        linear-gradient(rgba(245, 238, 224, 0.92), rgba(245, 238, 224, 0.92)),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 11px,
            rgba(140, 128, 109, 0.09) 12px
        );
}

.chat-time {
    width: max-content;
    margin: 0 auto 12px;
    padding: 4px 8px;
    color: #77716a;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 5px;
    font-size: 0.56rem;
}

.message {
    width: 89%;
    margin-bottom: 10px;
    padding: 9px 10px 6px;
    border-radius: 9px;
    box-shadow: 0 2px 5px rgba(70, 60, 45, 0.08);
    font-size: 0.67rem;
    line-height: 1.42;
}

.message p {
    margin: 0;
}

.message > span {
    display: block;
    margin-top: 3px;
    color: #847d75;
    font-size: 0.5rem;
    text-align: right;
}

.message.incoming {
    background: #ffffff;
    border-top-left-radius: 2px;
}

.message.outgoing {
    margin-left: auto;
    background: var(--whatsapp);
    border-top-right-radius: 2px;
}

.message.compact {
    width: 82%;
}

.capture-preview {
    margin-bottom: 8px;
    padding: 8px;
    background: #ffffff;
    border-radius: 6px;
}

.capture-title {
    padding-bottom: 5px;
    color: var(--orange-dark);
    border-bottom: 1px solid #eee8df;
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.capture-grid {
    padding-top: 6px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 10px;
    font-size: 0.54rem;
}

.capture-grid span {
    color: #7d776f;
}

.chat-input {
    min-height: 50px;
    padding: 8px 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #f3f2ef;
}

.chat-input > span {
    flex: 1;
    padding: 8px 10px;
    color: #9b9690;
    background: #ffffff;
    border-radius: 999px;
    font-size: 0.62rem;
}

.send-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: #249b75;
    border-radius: 50%;
    font-size: 0.72rem;
}

.transformation {
    position: relative;
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transform-line {
    position: absolute;
    left: -12px;
    right: -12px;
    top: 50%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(220, 107, 53, 0.45),
        var(--orange),
        rgba(220, 107, 53, 0.45),
        transparent
    );
}

.ai-mark {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: var(--orange);
    border: 8px solid #f5eee3;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(184, 75, 34, 0.25);
}

.ai-mark span {
    position: absolute;
    width: 15px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

.ai-mark span:first-child {
    transform: translateY(-6px);
}

.ai-mark span:last-child {
    transform: translateY(6px);
}

.transformation p {
    position: absolute;
    top: calc(50% + 37px);
    width: 110px;
    margin: 0;
    color: #8b8177;
    font-size: 0.59rem;
    line-height: 1.35;
    text-align: center;
}

.data-dot {
    position: absolute;
    z-index: 3;
    width: 5px;
    height: 5px;
    background: var(--orange);
    border-radius: 50%;
}

.dot-one {
    left: 10%;
    top: 43%;
}

.dot-two {
    right: 9%;
    top: 56%;
}

.dot-three {
    right: 23%;
    top: 44%;
}

.brief-panel {
    padding: 23px;
    border-radius: 20px;
    transform: rotate(1deg);
}

.brief-header {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.brief-header p {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 0.97rem;
    font-weight: 800;
}

.brief-header span {
    color: var(--muted);
    font-size: 0.62rem;
}

.brief-logo {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--orange);
    border-radius: 8px;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.brief-status {
    width: max-content;
    margin: 13px 0 3px;
    padding: 5px 9px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    background: var(--green-soft);
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 700;
}

.pulse {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

.brief-block {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.section-label {
    margin: 0 0 9px;
    color: var(--orange-dark);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.metric-row div {
    padding: 8px;
    background: #fbf8f3;
    border-radius: 7px;
}

.metric-row span {
    display: block;
    color: var(--muted);
    font-size: 0.54rem;
}

.metric-row strong {
    display: block;
    margin-top: 2px;
    font-size: 0.75rem;
}

.priority-block h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.priority-block > p:last-child {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.65rem;
    line-height: 1.45;
}

.action-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 7px;
    list-style: none;
}

.action-list li {
    display: grid;
    grid-template-columns: 21px 1fr;
    align-items: start;
    gap: 7px;
    font-size: 0.63rem;
    line-height: 1.4;
}

.action-list li > span {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    color: var(--orange-dark);
    background: var(--orange-soft);
    border-radius: 50%;
    font-size: 0.55rem;
    font-weight: 800;
}

.approval {
    padding-top: 14px;
}

.approval-copy {
    display: flex;
    align-items: center;
    gap: 8px;
}

.approval-check {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--green);
    border-radius: 50%;
    font-weight: 800;
}

.approval-copy strong {
    display: block;
    font-size: 0.68rem;
}

.approval-copy p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.56rem;
}

.approval button {
    width: 100%;
    min-height: 38px;
    margin-top: 11px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    background: var(--orange);
    border: 0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.66rem;
    font-weight: 800;
}

.anchor-section {
    height: 1px;
    overflow: hidden;
}

.anchor-section span {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
}

@media (max-width: 1180px) {
    .site-nav {
        display: none;
    }

    .site-header {
        grid-template-columns: 1fr auto;
    }

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

    .hero-copy {
        max-width: 700px;
    }

    .product-story {
        max-width: 900px;
    }
}

@media (max-width: 760px) {
    .site-header,
    .hero {
        width: min(100% - 28px, 1400px);
    }

    .site-header {
        min-height: 72px;
    }

    .header-cta {
        padding: 9px 14px;
        font-size: 0.76rem;
    }

    .hero {
        padding: 38px 0 65px;
        gap: 48px;
    }

    h1 {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

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

    .button {
        width: 100%;
        text-align: center;
    }

    .text-link {
        text-align: center;
    }

    .product-story {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .phone-panel {
        width: min(100%, 330px);
        justify-self: center;
        transform: none;
    }

    .transformation {
        min-height: 70px;
        transform: rotate(90deg);
    }

    .transformation p {
        display: none;
    }

    .brief-panel {
        width: min(100%, 470px);
        justify-self: center;
        transform: none;
    }
}

/* KADENOR SURFACE POLISH V1 */

/*
   Refinamiento exclusivamente visual.
   No modifica tamaños, posiciones ni altura del hero.
*/

.phone-panel,
.brief-panel {
    border-color: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 24px 58px rgba(62, 45, 31, 0.13),
        0 7px 18px rgba(62, 45, 31, 0.07),
        0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.phone-panel {
    border-color: #282623;
    box-shadow:
        0 26px 60px rgba(54, 40, 28, 0.16),
        0 8px 20px rgba(54, 40, 28, 0.08);
}

.phone-top,
.whatsapp-header {
    background: #faf9f6;
}

.whatsapp-header {
    border-bottom-color: #dedbd5;
}

.whatsapp-header strong,
.brief-header p,
.metric-row strong,
.priority-block h2,
.action-list li {
    color: #292622;
}

.whatsapp-header span,
.capture-grid span,
.metric-row span,
.priority-block > p:last-child,
.approval-copy p {
    color: #716a62;
}

.message {
    color: #38342f;
    box-shadow:
        0 2px 6px rgba(65, 54, 42, 0.08),
        0 1px 1px rgba(65, 54, 42, 0.04);
}

.message.incoming {
    border: 1px solid rgba(225, 220, 212, 0.75);
}

.message.outgoing {
    background: #d9f3df;
    border: 1px solid rgba(177, 216, 187, 0.7);
}

.capture-preview {
    border: 1px solid #e8e1d7;
    box-shadow: 0 4px 12px rgba(72, 57, 41, 0.06);
}

.chat-input {
    border-top: 1px solid #dfdcd6;
}

.brief-panel {
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 253, 249, 1) 100%
        );
}

.brief-header,
.brief-block {
    border-color: #e6dfd6;
}

.metric-row div {
    background: #fcf8f2;
    border: 1px solid #eee5da;
}

.brief-status {
    border: 1px solid rgba(43, 126, 98, 0.13);
}

.approval-check {
    box-shadow: 0 5px 12px rgba(35, 112, 90, 0.17);
}

.approval button {
    box-shadow: 0 9px 20px rgba(184, 75, 34, 0.16);
}

/* Conector más preciso y tecnológico. */

.transform-line {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(220, 107, 53, 0.18) 12%,
        rgba(220, 107, 53, 0.82) 50%,
        rgba(220, 107, 53, 0.18) 88%,
        transparent 100%
    );
    box-shadow: 0 0 12px rgba(220, 107, 53, 0.16);
}

.ai-mark {
    background: linear-gradient(145deg, #e3783e, #c95425);
    border-color: #f5eee3;
    box-shadow:
        0 9px 22px rgba(184, 75, 34, 0.23),
        0 0 0 1px rgba(255, 255, 255, 0.65);
}

.ai-mark::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
}

.data-dot {
    box-shadow:
        0 0 0 3px rgba(220, 107, 53, 0.09),
        0 0 8px rgba(220, 107, 53, 0.3);
}

.transformation p {
    color: #756d64;
    font-weight: 600;
    letter-spacing: 0.01em;
}


/* KADENOR HOW IT WORKS V1 */

.how-section {
    position: relative;
    padding: 118px 0 124px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 14% 24%,
            rgba(220, 107, 53, 0.1),
            transparent 24rem
        ),
        #fffaf2;
    border-top: 1px solid rgba(78, 63, 47, 0.08);
}

.how-section::after {
    content: "";
    position: absolute;
    right: -170px;
    bottom: 90px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(220, 107, 53, 0.11);
    border-radius: 50%;
}

.how-container {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
}

.how-heading {
    max-width: 780px;
}

.how-heading h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.4rem, 4.2vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.how-heading h2 span {
    display: block;
    color: var(--orange);
}

.how-heading > p:last-child {
    max-width: 690px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.how-system {
    margin-top: 62px;
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) 110px minmax(360px, 1.08fr);
    align-items: center;
    gap: 28px;
}

.how-inputs {
    display: grid;
    gap: 12px;
}

.how-signal {
    min-height: 118px;
    padding: 22px;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(82, 67, 52, 0.1);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(62, 45, 31, 0.05);
}

.signal-number {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--orange-dark);
    background: var(--orange-soft);
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 800;
}

.how-signal h3 {
    margin: 1px 0 7px;
    font-family: "Manrope", sans-serif;
    font-size: 0.96rem;
    letter-spacing: -0.02em;
}

.how-signal p {
    margin: 0;
    color: var(--muted);
    font-size: 0.81rem;
    line-height: 1.55;
}

.how-connector {
    min-height: 280px;
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    align-items: center;
}

.how-connector > span {
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(220, 107, 53, 0.08),
        rgba(220, 107, 53, 0.72)
    );
}

.how-connector > span:last-child {
    background: linear-gradient(
        90deg,
        rgba(220, 107, 53, 0.72),
        rgba(220, 107, 53, 0.08)
    );
}

.how-core {
    position: relative;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #e3783e, #c95425);
    border: 7px solid #fff4e9;
    border-radius: 50%;
    box-shadow:
        0 10px 24px rgba(184, 75, 34, 0.2),
        0 0 0 1px rgba(220, 107, 53, 0.14);
}

.how-core i {
    position: absolute;
    width: 13px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

.how-core i:first-child {
    transform: translateY(-5px);
}

.how-core i:last-child {
    transform: translateY(5px);
}

.how-direction {
    padding: clamp(30px, 4vw, 48px);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 1),
            rgba(255, 251, 245, 1)
        );
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow:
        0 24px 60px rgba(62, 45, 31, 0.11),
        0 6px 18px rgba(62, 45, 31, 0.05);
}

.how-direction h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.55rem, 2.5vw, 2.25rem);
    line-height: 1.17;
    letter-spacing: -0.045em;
}

.how-direction > p:not(.section-label) {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.65;
}

.direction-result {
    margin-top: 27px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.direction-result span {
    padding: 9px 13px;
    color: var(--green);
    background: var(--green-soft);
    border: 1px solid rgba(35, 112, 90, 0.11);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.how-delivery {
    margin-top: 34px;
    padding: clamp(28px, 4vw, 48px);
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(480px, 1.22fr);
    align-items: center;
    gap: clamp(35px, 6vw, 80px);
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(220, 107, 53, 0.22),
            transparent 18rem
        ),
        #26231f;
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(46, 36, 27, 0.14);
}

.delivery-copy .section-label {
    color: #f1a178;
}

.delivery-copy h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.55rem, 2.5vw, 2.2rem);
    line-height: 1.18;
    letter-spacing: -0.045em;
}

.delivery-copy > p:last-child {
    margin: 17px 0 0;
    color: #c9c1b8;
    font-size: 0.89rem;
    line-height: 1.65;
}

.delivery-moments {
    display: grid;
    gap: 12px;
}

.delivery-moments article {
    padding: 20px;
    display: grid;
    grid-template-columns: 43px 1fr;
    align-items: start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 15px;
}

.moment-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--orange);
    border-radius: 11px;
    font-size: 0.68rem;
    font-weight: 800;
}

.delivery-moments p {
    margin: 0 0 3px;
    color: #f1a178;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.delivery-moments h4 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
}

.delivery-moments div > span {
    display: block;
    margin-top: 6px;
    color: #c9c1b8;
    font-size: 0.76rem;
    line-height: 1.5;
}

.how-outcomes {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.how-outcomes article {
    min-height: 132px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(82, 67, 52, 0.09);
    border-radius: 17px;
}

.how-outcomes strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 0.98rem;
}

.how-outcomes span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .how-system {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .how-connector {
        min-height: 74px;
        grid-template-columns: 1fr 48px 1fr;
        transform: rotate(90deg);
    }

    .how-delivery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .how-section {
        padding: 82px 0 88px;
    }

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

    .how-heading h2 {
        font-size: clamp(2.25rem, 11vw, 3.2rem);
    }

    .how-heading > p:last-child {
        font-size: 0.94rem;
    }

    .how-system {
        margin-top: 42px;
    }

    .how-signal {
        min-height: auto;
        padding: 19px;
    }

    .how-direction,
    .how-delivery {
        border-radius: 20px;
    }

    .how-delivery {
        padding: 29px 22px;
    }

    .delivery-moments article {
        padding: 17px;
    }

    .how-outcomes {
        grid-template-columns: 1fr;
    }

    .how-outcomes article {
        min-height: auto;
    }
}


/* KADENOR WHO IT IS FOR V1 */

.audience-section {
    position: relative;
    padding: 120px 0 126px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 92% 15%,
            rgba(35, 112, 90, 0.09),
            transparent 25rem
        ),
        #fffdf9;
    border-top: 1px solid rgba(78, 63, 47, 0.08);
}

.audience-section::before {
    content: "";
    position: absolute;
    left: -210px;
    top: 330px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(220, 107, 53, 0.1);
    border-radius: 50%;
}

.audience-container {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
}

.audience-heading {
    max-width: 900px;
}

.audience-heading h2 {
    max-width: 880px;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.4rem, 4.2vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.audience-heading h2 span {
    display: block;
    color: var(--orange);
}

.audience-heading > p:last-child {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.audience-grid {
    margin-top: 62px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.audience-card {
    position: relative;
    min-height: 230px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(82, 67, 52, 0.1);
    border-radius: 19px;
    box-shadow: 0 14px 36px rgba(62, 45, 31, 0.055);
}

.audience-card::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -62px;
    width: 130px;
    height: 130px;
    background: var(--orange-soft);
    border-radius: 50%;
    opacity: 0;
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.audience-card:hover::after {
    opacity: 0.75;
    transform: translate(-8px, -8px);
}

.audience-card-featured {
    color: #ffffff;
    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(255, 255, 255, 0.15),
            transparent 12rem
        ),
        linear-gradient(145deg, #e3783e, #c95425);
    border-color: transparent;
    box-shadow: 0 20px 44px rgba(184, 75, 34, 0.19);
}

.audience-card-dark {
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(220, 107, 53, 0.22),
            transparent 12rem
        ),
        #26231f;
    border-color: transparent;
}

.audience-index {
    position: relative;
    z-index: 1;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    color: var(--orange-dark);
    background: var(--orange-soft);
    border-radius: 10px;
    font-size: 0.66rem;
    font-weight: 800;
}

.audience-card-featured .audience-index,
.audience-card-dark .audience-index {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.audience-card > div {
    position: relative;
    z-index: 1;
    margin-top: 38px;
}

.audience-card h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 1.08rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.audience-card p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.79rem;
    line-height: 1.58;
}

.audience-card-featured p,
.audience-card-dark p {
    color: rgba(255, 255, 255, 0.72);
}

.audience-flexibility {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 14px;
}

.flexibility-scale,
.flexibility-access {
    min-height: 385px;
    padding: clamp(32px, 4vw, 48px);
    border-radius: 24px;
}

.flexibility-scale {
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(220, 107, 53, 0.1),
            transparent 17rem
        ),
        #fff7ed;
    border: 1px solid rgba(220, 107, 53, 0.12);
}

.flexibility-access {
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(255, 255, 255, 0.08),
            transparent 15rem
        ),
        var(--green);
    box-shadow: 0 20px 48px rgba(35, 112, 90, 0.16);
}

.flexibility-scale h3,
.flexibility-access h3 {
    max-width: 520px;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.6rem, 2.7vw, 2.35rem);
    line-height: 1.14;
    letter-spacing: -0.045em;
}

.flexibility-scale > p:not(.section-label),
.flexibility-access > p:not(.section-label) {
    max-width: 540px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.68;
}

.flexibility-access .section-label {
    color: #b9ddd2;
}

.flexibility-access > p:not(.section-label) {
    color: rgba(255, 255, 255, 0.72);
}

.scale-path {
    margin-top: 42px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}

.scale-path span {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 700;
}

.scale-path i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--orange-dark);
    background: #ffffff;
    border: 1px solid rgba(220, 107, 53, 0.13);
    border-radius: 10px;
    font-size: 0.63rem;
    font-style: normal;
}

.scale-path b {
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(220, 107, 53, 0.22),
        rgba(220, 107, 53, 0.8),
        rgba(220, 107, 53, 0.22)
    );
}

.flexibility-access ul {
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.flexibility-access li {
    position: relative;
    padding: 12px 14px 12px 38px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 11px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.76rem;
    font-weight: 650;
}

.flexibility-access li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #f1a178;
    border-radius: 50%;
    transform: translateY(-50%);
}

.audience-diagnostic {
    margin-top: 28px;
    padding: clamp(34px, 5vw, 58px);
    display: grid;
    grid-template-columns: minmax(300px, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: clamp(36px, 7vw, 90px);
    background: #ffffff;
    border: 1px solid rgba(82, 67, 52, 0.09);
    border-radius: 25px;
    box-shadow:
        0 24px 60px rgba(62, 45, 31, 0.09),
        0 6px 18px rgba(62, 45, 31, 0.04);
}

.diagnostic-copy h3 {
    max-width: 650px;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.65rem, 2.8vw, 2.45rem);
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.diagnostic-signals {
    display: grid;
    gap: 10px;
}

.diagnostic-signals span {
    position: relative;
    padding: 16px 18px 16px 46px;
    color: var(--ink);
    background: #fffaf2;
    border: 1px solid rgba(220, 107, 53, 0.1);
    border-radius: 12px;
    font-size: 0.77rem;
    font-weight: 650;
    line-height: 1.45;
}

.diagnostic-signals span::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--orange);
    border: 4px solid var(--orange-soft);
    border-radius: 50%;
    transform: translateY(-50%);
}

@media (max-width: 900px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-flexibility,
    .audience-diagnostic {
        grid-template-columns: 1fr;
    }

    .flexibility-scale,
    .flexibility-access {
        min-height: auto;
    }
}

@media (max-width: 760px) {
    .audience-section {
        padding: 82px 0 88px;
    }

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

    .audience-heading h2 {
        font-size: clamp(2.25rem, 11vw, 3.2rem);
    }

    .audience-heading > p:last-child {
        font-size: 0.94rem;
    }

    .audience-grid {
        margin-top: 42px;
        grid-template-columns: 1fr;
    }

    .audience-card {
        min-height: 205px;
        padding: 23px;
    }

    .audience-flexibility {
        margin-top: 18px;
    }

    .flexibility-scale,
    .flexibility-access {
        padding: 29px 22px;
        border-radius: 20px;
    }

    .scale-path {
        margin-top: 34px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .scale-path b {
        width: 1px;
        height: 30px;
        margin-left: 18px;
        background: linear-gradient(
            180deg,
            rgba(220, 107, 53, 0.22),
            rgba(220, 107, 53, 0.82)
        );
    }

    .audience-diagnostic {
        margin-top: 18px;
        padding: 31px 22px;
        border-radius: 20px;
    }
}


/* KADENOR FOUNDER INVITATION V1 */

.founder-invitation {
    position: relative;
    padding: 34px 0 120px;
    overflow: hidden;
    background: #fffdf9;
}

.founder-container {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
}

.founder-panel {
    position: relative;
    min-height: 590px;
    padding: clamp(46px, 7vw, 86px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: clamp(44px, 8vw, 110px);
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 89% 14%,
            rgba(220, 107, 53, 0.25),
            transparent 24rem
        ),
        linear-gradient(145deg, #292621 0%, #1f211e 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 30px;
    box-shadow:
        0 30px 70px rgba(49, 39, 30, 0.15),
        0 8px 22px rgba(49, 39, 30, 0.08);
}

.founder-panel::before {
    content: "";
    position: absolute;
    left: -170px;
    bottom: -250px;
    width: 480px;
    height: 480px;
    background: rgba(35, 112, 90, 0.18);
    border-radius: 50%;
}

.founder-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );
    background-size: 38px 38px;
    mask-image: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.7)
    );
}

.founder-copy {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.founder-eyebrow {
    margin: 0 0 22px;
    color: #f1a178;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.founder-copy h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.55rem, 4.5vw, 4.55rem);
    line-height: 1.02;
    letter-spacing: -0.065em;
}

.founder-copy h2 span {
    display: block;
    color: #f1a178;
}

.founder-description {
    max-width: 580px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.72;
}

.founder-cta {
    width: fit-content;
    margin-top: 38px;
    padding: 10px 11px 10px 23px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #ffffff;
    background: var(--orange);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(194, 76, 32, 0.24);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.founder-cta:hover {
    background: #e4783f;
    transform: translateY(-2px);
    box-shadow: 0 19px 36px rgba(194, 76, 32, 0.31);
}

.founder-cta:focus-visible {
    outline: 3px solid rgba(241, 161, 120, 0.45);
    outline-offset: 4px;
}

.founder-cta-arrow {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--orange-dark);
    background: #ffffff;
    border-radius: 50%;
    font-size: 1rem;
    transition: transform 180ms ease;
}

.founder-cta:hover .founder-cta-arrow {
    transform: translateX(3px);
}

.founder-visual {
    position: relative;
    z-index: 2;
    min-height: 390px;
    display: grid;
    place-items: center;
}

.founder-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.founder-orbit::before,
.founder-orbit::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border: 5px solid rgba(220, 107, 53, 0.16);
    border-radius: 50%;
}

.founder-orbit-large {
    width: 350px;
    height: 350px;
}

.founder-orbit-large::before {
    top: 35px;
    right: 55px;
}

.founder-orbit-large::after {
    left: 7px;
    bottom: 105px;
}

.founder-orbit-medium {
    width: 245px;
    height: 245px;
    border-color: rgba(241, 161, 120, 0.2);
}

.founder-orbit-medium::before {
    right: -7px;
    bottom: 82px;
}

.founder-orbit-medium::after {
    display: none;
}

.founder-core {
    position: relative;
    z-index: 2;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 34% 25%,
            rgba(255, 255, 255, 0.18),
            transparent 8rem
        ),
        var(--orange);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 18px rgba(220, 107, 53, 0.07),
        0 22px 45px rgba(0, 0, 0, 0.2);
}

.founder-core span,
.founder-core small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.61rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.founder-core strong {
    margin: 2px 0;
    font-family: "Manrope", sans-serif;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -0.06em;
}

.founder-cohort {
    position: absolute;
    z-index: 3;
    min-width: 105px;
    padding: 10px 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    font-size: 0.66rem;
    font-weight: 700;
}

.founder-cohort span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(220, 107, 53, 0.72);
    border-radius: 8px;
    font-size: 0.58rem;
}

.founder-cohort-one {
    top: 34px;
    left: 8px;
}

.founder-cohort-two {
    top: 91px;
    right: -3px;
}

.founder-cohort-three {
    left: 28px;
    bottom: 39px;
}

@media (max-width: 900px) {
    .founder-panel {
        grid-template-columns: 1fr;
    }

    .founder-copy {
        max-width: 720px;
    }

    .founder-visual {
        width: min(100%, 460px);
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    .founder-invitation {
        padding: 18px 0 88px;
    }

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

    .founder-panel {
        min-height: auto;
        padding: 44px 22px 32px;
        gap: 28px;
        border-radius: 22px;
    }

    .founder-copy h2 {
        font-size: clamp(2.35rem, 11vw, 3.2rem);
    }

    .founder-description {
        font-size: 0.92rem;
    }

    .founder-cta {
        max-width: 100%;
        margin-top: 30px;
        padding-left: 19px;
        gap: 12px;
    }

    .founder-visual {
        min-height: 310px;
        transform: scale(0.82);
    }
}

@media (max-width: 420px) {
    .founder-visual {
        width: 360px;
        margin-left: 50%;
        transform: translateX(-50%) scale(0.74);
    }
}


/* KADENOR PUBLIC FOOTER V1 */

.site-footer {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #181a18;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -210px;
    right: -170px;
    width: 430px;
    height: 430px;
    pointer-events: none;
    background: rgba(220, 107, 53, 0.08);
    border-radius: 50%;
}

.footer-container {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
    padding: 76px 0 28px;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.1fr) minmax(480px, 1fr);
    gap: clamp(70px, 10vw, 150px);
}

.footer-brand-column {
    max-width: 430px;
}

.footer-brand {
    display: inline-block;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
    text-decoration: none;
}

.footer-brand::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 4px;
    display: inline-block;
    background: var(--orange);
    border-radius: 50%;
}

.footer-statement {
    max-width: 410px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.91rem;
    line-height: 1.75;
}

.footer-email {
    width: fit-content;
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f1a178;
    font-size: 0.82rem;
    font-weight: 750;
    text-decoration: none;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.footer-email:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.footer-heading {
    margin: 0 0 7px;
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-column a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.45;
    text-decoration: none;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.footer-column a:hover {
    color: #f1a178;
    transform: translateX(2px);
}

.footer-email:focus-visible,
.footer-column a:focus-visible,
.footer-brand:focus-visible {
    outline: 3px solid rgba(241, 161, 120, 0.4);
    outline-offset: 4px;
    border-radius: 4px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    margin-top: 62px;
    background: rgba(255, 255, 255, 0.09);
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.67rem;
    line-height: 1.5;
}

.footer-principle {
    text-align: right;
}

.footer-principle span {
    margin-left: 4px;
    color: rgba(241, 161, 120, 0.68);
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .footer-navigation {
        max-width: 650px;
    }
}

@media (max-width: 620px) {
    .footer-container {
        width: min(100% - 36px, 1180px);
        padding: 58px 0 24px;
    }

    .footer-main {
        gap: 46px;
    }

    .footer-navigation {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
    }

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

    .footer-divider {
        margin-top: 48px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .footer-principle {
        max-width: 290px;
        text-align: left;
    }

    .footer-principle span {
        margin-left: 0;
        display: block;
    }
}

@media (max-width: 380px) {
    .footer-navigation {
        grid-template-columns: 1fr;
    }

    .footer-column:last-child {
        grid-column: auto;
    }
}
