:root {
    --brand: #285c4d;
    --brand-dark: #173f35;
    --accent: #cbd95b;
    --highlight: #e87951;
    --paper: #f7f2e8;
    --ink: var(--brand-dark);
    --muted: #65736e;
    --line: rgba(23, 63, 53, 0.14);
    --surface: #fffdf8;
    --surface-soft: #eef0e6;
    --white: #ffffff;
    --shadow-sm: 0 12px 30px rgba(19, 50, 43, 0.08);
    --shadow-lg: 0 28px 80px rgba(19, 50, 43, 0.16);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 34px;
    --container: 1180px;
    --header-height: 82px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
    background: var(--paper);
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

::selection {
    color: var(--white);
    background: var(--brand);
}

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

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
select {
    cursor: pointer;
}

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

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--ink);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(3.15rem, 6.5vw, 5.65rem);
}

h2 {
    font-size: clamp(2.35rem, 4.8vw, 4.35rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
}

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

.section {
    position: relative;
    padding: clamp(88px, 10vw, 140px) 0;
}

.section--tint {
    background: color-mix(in srgb, var(--brand) 6%, var(--surface));
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--brand-dark);
    border-radius: 10px;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

:focus-visible {
    outline: 3px solid var(--highlight);
    outline-offset: 3px;
}

.eyebrow {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    color: var(--brand);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 30px;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
}

.eyebrow--light {
    color: var(--accent);
}

.lead-copy {
    color: var(--ink);
    font-size: clamp(1.25rem, 2.2vw, 1.72rem);
    line-height: 1.55;
    letter-spacing: -0.025em;
}

.button {
    display: inline-flex;
    min-height: 54px;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 14px 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .94rem;
    font-weight: 750;
    line-height: 1;
    letter-spacing: -.01em;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s var(--ease), box-shadow .25s ease;
}

.button span {
    font-size: 1.05em;
    transition: transform .25s var(--ease);
}

.button:hover {
    transform: translateY(-2px);
}

.button:hover span {
    transform: translate(2px, -2px);
}

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

.button--primary {
    color: var(--brand-dark);
    background: var(--accent);
    box-shadow: 0 14px 28px color-mix(in srgb, var(--accent) 24%, transparent);
}

.button--primary:hover {
    background: color-mix(in srgb, var(--accent) 86%, white);
    box-shadow: 0 18px 38px color-mix(in srgb, var(--accent) 34%, transparent);
}

.button--dark {
    color: var(--white);
    background: var(--brand-dark);
}

.button--dark:hover {
    background: color-mix(in srgb, var(--brand-dark) 86%, black);
}

.button--ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, .46);
    border-color: rgba(23, 63, 53, .24);
    backdrop-filter: blur(10px);
}

.button--ghost:hover {
    background: rgba(255, 255, 255, .78);
    border-color: var(--brand);
}

.button--light {
    color: var(--brand-dark);
    background: var(--white);
}

.button--outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .04);
}

.button--outline-light:hover {
    border-color: rgba(255, 255, 255, .68);
    background: rgba(255, 255, 255, .1);
}

.button--full {
    width: 100%;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.text-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding-bottom: 4px;
    color: var(--brand);
    border-bottom: 1px solid currentColor;
    font-weight: 750;
    line-height: 1.2;
}

.text-link span {
    transition: transform .2s var(--ease);
}

.text-link:hover span {
    transform: translate(2px, -2px);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: height .25s var(--ease), background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header--solid {
    height: 72px;
    background: color-mix(in srgb, var(--paper) 92%, transparent);
    border-color: var(--line);
    box-shadow: 0 10px 35px rgba(23, 63, 53, .06);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 10px;
    align-items: center;
    color: var(--brand-dark);
}

.brand__mark {
    position: relative;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    overflow: hidden;
    background: var(--brand-dark);
    border-radius: 11px;
    transform: rotate(-3deg);
}

.brand__mark::before,
.brand__mark::after,
.brand__mark span {
    position: absolute;
    content: "";
    border-radius: 3px;
}

.brand__mark::before {
    width: 15px;
    height: 15px;
    border: 3px solid var(--accent);
}

.brand__mark::after {
    top: 5px;
    right: 5px;
    width: 5px;
    height: 5px;
    background: var(--highlight);
}

.brand__mark span {
    bottom: 5px;
    left: 5px;
    width: 5px;
    height: 5px;
    background: var(--accent);
}

.brand__word {
    font-size: 1.28rem;
    font-weight: 850;
    letter-spacing: -.045em;
}

.brand__image {
    width: auto;
    max-width: 174px;
    height: 40px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    gap: clamp(18px, 2.2vw, 34px);
    align-items: center;
}

.site-nav > a:not(.button) {
    position: relative;
    color: color-mix(in srgb, var(--ink) 84%, transparent);
    font-size: .9rem;
    font-weight: 650;
}

.site-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--highlight);
    border-radius: 99px;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s var(--ease);
}

.site-nav > a:not(.button):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 0;
    background: transparent;
    border-radius: 12px;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--brand-dark);
    border-radius: 99px;
    transition: transform .25s ease, opacity .2s ease;
}

/* Hero */
.hero {
    position: relative;
    display: grid;
    min-height: min(880px, 100svh);
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero__media,
.hero__media picture,
.hero__media img {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__media img {
    object-fit: cover;
    object-position: center center;
}

.hero__wash {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: linear-gradient(90deg, color-mix(in srgb, var(--paper) 94%, transparent) 0%, color-mix(in srgb, var(--paper) 88%, transparent) 34%, color-mix(in srgb, var(--paper) 24%, transparent) 61%, transparent 100%);
}

.hero::before {
    position: absolute;
    z-index: -1;
    bottom: -140px;
    left: -80px;
    width: 440px;
    height: 440px;
    background: color-mix(in srgb, var(--accent) 22%, transparent);
    border-radius: 50%;
    filter: blur(80px);
    content: "";
}

.hero__inner {
    display: flex;
    min-height: inherit;
    align-items: center;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 76px;
}

.hero__content {
    width: min(640px, 57%);
}

.hero h1 {
    margin-bottom: 28px;
    max-width: 700px;
}

.hero h1 em {
    display: block;
    color: var(--highlight);
    font-style: normal;
}

.hero__lead {
    max-width: 600px;
    margin-bottom: 34px;
    color: color-mix(in srgb, var(--ink) 76%, transparent);
    font-size: clamp(1.07rem, 1.65vw, 1.3rem);
    line-height: 1.65;
    letter-spacing: -.018em;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__note {
    display: flex;
    gap: 13px;
    align-items: center;
    margin-top: 34px;
}

.hero__note p {
    max-width: 270px;
    margin: 0;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.45;
}

.avatar-stack {
    display: flex;
    padding-left: 8px;
}

.avatar-stack i {
    display: grid;
    width: 32px;
    height: 32px;
    margin-left: -8px;
    place-items: center;
    color: var(--white);
    background: var(--brand-dark);
    border: 2px solid var(--paper);
    border-radius: 50%;
    font-size: .68rem;
    font-style: normal;
    font-weight: 800;
}

.avatar-stack i:nth-child(2) {
    color: var(--brand-dark);
    background: var(--accent);
}

.avatar-stack i:nth-child(3) {
    background: var(--highlight);
}

/* Value strip */
.value-strip {
    color: var(--white);
    background: var(--brand-dark);
}

.value-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.value-item {
    display: flex;
    min-height: 116px;
    gap: 13px;
    align-items: center;
    padding: 22px clamp(15px, 2vw, 28px);
    border-right: 1px solid rgba(255, 255, 255, .13);
}

.value-item:first-child {
    padding-left: 0;
}

.value-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.value-item__check {
    display: grid;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    place-items: center;
    color: var(--brand-dark);
    background: var(--accent);
    border-radius: 50%;
    font-size: .78rem;
    font-weight: 900;
}

.value-item strong,
.value-item span {
    display: block;
}

.value-item strong {
    margin-bottom: 2px;
    font-size: .95rem;
}

.value-item div > span {
    color: rgba(255, 255, 255, .62);
    font-size: .75rem;
    line-height: 1.4;
}

/* Shared section headings */
.section-heading {
    margin-bottom: 54px;
}

.section-heading h2 {
    max-width: 800px;
    margin-bottom: 0;
}

.section-heading--row {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(250px, .55fr);
    gap: clamp(30px, 7vw, 110px);
    align-items: end;
}

.section-heading--row > p,
.section-heading--center > p,
.section-heading--sticky > p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
}

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

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading--center h2 {
    margin-inline: auto;
    margin-bottom: 22px;
}

/* About */
.about__grid {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    gap: clamp(56px, 10vw, 150px);
    align-items: start;
}

.section-heading--sticky {
    position: sticky;
    top: 120px;
    margin-bottom: 0;
}

.about__content > .lead-copy {
    margin-bottom: 52px;
}

.about__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about__cards article {
    min-height: 246px;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.about__cards article:nth-child(2) {
    background: var(--surface-soft);
}

.about__cards article > span {
    display: inline-block;
    margin-bottom: 48px;
    color: var(--highlight);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.about__cards h3 {
    margin-bottom: 12px;
}

.about__cards p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .91rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    display: flex;
    min-height: 355px;
    flex-direction: column;
    padding: clamp(27px, 4vw, 42px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}

.service-card:hover {
    border-color: color-mix(in srgb, var(--brand) 35%, transparent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.service-card:nth-child(4n + 2),
.service-card:nth-child(4n + 3) {
    background: var(--brand-dark);
}

.service-card:nth-child(4n + 2) h3,
.service-card:nth-child(4n + 3) h3,
.service-card:nth-child(4n + 2) .service-card__footer a,
.service-card:nth-child(4n + 3) .service-card__footer a {
    color: var(--white);
}

.service-card:nth-child(4n + 2) p,
.service-card:nth-child(4n + 3) p,
.service-card:nth-child(4n + 2) .service-card__price,
.service-card:nth-child(4n + 3) .service-card__price,
.service-card:nth-child(4n + 2) .service-card__number,
.service-card:nth-child(4n + 3) .service-card__number {
    color: rgba(255, 255, 255, .62);
}

.service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 42px;
}

.service-card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--brand-dark);
    background: var(--accent);
    border-radius: 17px;
}

.service-card__icon svg {
    width: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.service-card__number {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: clamp(1.55rem, 2.7vw, 2.25rem);
}

.service-card > p {
    max-width: 470px;
    margin-bottom: 35px;
    color: var(--muted);
}

.service-card__footer {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(128, 145, 138, .2);
}

.service-card__price {
    color: var(--muted);
    font-size: .83rem;
}

.service-card__footer a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: .9rem;
    font-weight: 750;
}

.empty-panel {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding: clamp(28px, 5vw, 54px);
    background: var(--surface);
    border: 1px dashed color-mix(in srgb, var(--brand) 38%, transparent);
    border-radius: var(--radius-md);
}

.empty-panel p {
    max-width: 620px;
    margin: 0;
    font-size: 1.05rem;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}

.product-card:hover {
    border-color: color-mix(in srgb, var(--brand) 35%, transparent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-7px);
}

.product-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--surface-soft);
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.product-card:hover .product-card__media img {
    transform: scale(1.045);
}

.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 12px;
    color: var(--brand-dark);
    background: var(--accent);
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, color-mix(in srgb, var(--brand) 72%, black), var(--brand-dark));
}

.product-placeholder::before {
    width: 46%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 30%;
    content: "";
    transform: rotate(14deg);
}

.product-placeholder i {
    position: absolute;
    width: 35px;
    height: 35px;
    background: var(--accent);
    border-radius: 11px;
}

.product-placeholder i:nth-child(1) { transform: translate(-34px, -8px); }
.product-placeholder i:nth-child(2) { background: var(--highlight); transform: translate(13px, 24px); }
.product-placeholder i:nth-child(3) { width: 20px; height: 20px; transform: translate(45px, -30px); }

.product-card__body {
    padding: 25px;
}

.product-card__category {
    margin-bottom: 8px;
    color: var(--highlight);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-card h3 {
    margin-bottom: 12px;
    font-size: 1.42rem;
}

.product-card h3 a:hover {
    color: var(--brand);
}

.product-card__body > p:not(.product-card__category) {
    min-height: 68px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: .89rem;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 17px;
    border-top: 1px solid var(--line);
}

.product-card__footer strong {
    font-size: .93rem;
}

.circle-link {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--white);
    background: var(--brand-dark);
    border-radius: 50%;
    transition: color .25s ease, background-color .25s ease, transform .25s var(--ease);
}

.circle-link:hover {
    color: var(--brand-dark);
    background: var(--accent);
    transform: rotate(8deg);
}

/* Invitation */
.invitation {
    padding-top: 26px;
}

.invitation__card {
    position: relative;
    display: grid;
    min-height: 620px;
    grid-template-columns: 1.05fr .95fr;
    overflow: hidden;
    color: var(--white);
    background: var(--brand-dark);
    border-radius: var(--radius-lg);
}

.invitation__card::before {
    position: absolute;
    top: -200px;
    left: -160px;
    width: 480px;
    height: 480px;
    background: color-mix(in srgb, var(--brand) 70%, transparent);
    border-radius: 50%;
    filter: blur(90px);
    content: "";
}

.invitation__copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 7vw, 86px);
}

.invitation__copy h2 {
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(2.65rem, 5vw, 4.65rem);
}

.invitation__copy > p:not(.eyebrow) {
    max-width: 610px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .67);
    font-size: 1.05rem;
}

.feature-list {
    display: grid;
    gap: 13px;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 11px;
    align-items: center;
    color: color-mix(in srgb, var(--ink) 82%, transparent);
    font-size: .92rem;
}

.feature-list li > span {
    display: grid;
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--brand-dark);
    background: var(--accent);
    border-radius: 50%;
    font-size: .67rem;
    font-weight: 900;
}

.feature-list--light li {
    color: rgba(255, 255, 255, .76);
}

.invitation__visual {
    position: relative;
    display: grid;
    min-height: 560px;
    place-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 55% 48%, color-mix(in srgb, var(--accent) 25%, transparent), transparent 47%);
}

.invite-card {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(330px, 70%);
    aspect-ratio: .72;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
    color: #654a39;
    background: #f6eadc;
    border: 10px solid rgba(255, 255, 255, .5);
    border-radius: 190px 190px 22px 22px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .32);
    text-align: center;
    transform: rotate(4deg);
}

.invite-card::before,
.invite-card::after {
    position: absolute;
    width: 60px;
    height: 130px;
    background: rgba(140, 158, 77, .26);
    border-radius: 100% 0 100% 0;
    content: "";
}

.invite-card::before { top: 32px; left: 7px; transform: rotate(-20deg); }
.invite-card::after { right: 7px; bottom: 40px; transform: rotate(160deg); }

.invite-card__ornament {
    margin-bottom: 28px;
    color: #9aa756;
    font-size: 2.4rem;
}

.invite-card small {
    margin-bottom: 10px;
    font-family: Georgia, serif;
    font-size: .83rem;
    font-style: italic;
}

.invite-card strong {
    font-family: Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    font-weight: 500;
    line-height: 1.1;
}

.invite-card > i {
    width: 48px;
    height: 1px;
    margin: 25px 0;
    background: #a99578;
}

.invite-card > p {
    font-size: .8rem;
    font-weight: 750;
    letter-spacing: .15em;
}

.invite-card__button {
    margin-top: 16px;
    padding: 9px 17px;
    color: #f8efe3;
    background: #7a6e43;
    border-radius: 99px;
    font-size: .66rem;
}

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

.invite-orbit--one { width: 480px; height: 480px; }
.invite-orbit--two { width: 630px; height: 630px; }

/* Si Kudit */
.kudit__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(58px, 9vw, 130px);
    align-items: center;
}

.kudit__visual {
    position: relative;
    display: grid;
    min-height: 650px;
    place-items: center;
    overflow: hidden;
    background: color-mix(in srgb, var(--accent) 54%, white);
    border-radius: var(--radius-lg);
}

.kudit__visual::before,
.kudit__visual::after {
    position: absolute;
    border: 1px solid rgba(23, 63, 53, .16);
    border-radius: 50%;
    content: "";
}

.kudit__visual::before { width: 500px; height: 500px; }
.kudit__visual::after { width: 370px; height: 370px; }

.kudit__app-image {
    position: relative;
    z-index: 2;
    width: 88%;
    height: 88%;
    object-fit: contain;
}

.phone-mockup {
    position: relative;
    z-index: 2;
    width: min(310px, 67%);
    padding: 10px;
    background: #0d211c;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 45px;
    box-shadow: 0 40px 70px rgba(23, 63, 53, .25);
    transform: rotate(-4deg);
}

.phone-mockup__speaker {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 50%;
    width: 78px;
    height: 21px;
    background: #0d211c;
    border-radius: 0 0 13px 13px;
    transform: translateX(-50%);
}

.phone-mockup__screen {
    min-height: 570px;
    padding: 46px 20px 24px;
    overflow: hidden;
    color: var(--brand-dark);
    background: #f7f5e9;
    border-radius: 35px;
}

.mini-brand {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: .77rem;
    font-weight: 850;
}

.mini-brand i {
    width: 17px;
    height: 17px;
    background: var(--brand-dark);
    border-radius: 5px;
}

.mini-greeting {
    display: flex;
    flex-direction: column;
    margin-top: 34px;
    color: var(--muted);
    font-size: .72rem;
}

.mini-greeting strong {
    margin-top: 3px;
    color: var(--brand-dark);
    font-size: 1.22rem;
}

.mini-balance {
    position: relative;
    display: flex;
    min-height: 110px;
    flex-direction: column;
    justify-content: center;
    margin-top: 21px;
    padding: 18px;
    color: var(--white);
    background: var(--brand-dark);
    border-radius: 20px;
}

.mini-balance small { color: rgba(255,255,255,.55); font-size: .67rem; }
.mini-balance strong { margin-top: 5px; font-size: 1.7rem; letter-spacing: .06em; }
.mini-balance > span { position: absolute; top: 15px; right: 15px; display: grid; width: 29px; height: 29px; place-items: center; color: var(--brand-dark); background: var(--accent); border-radius: 50%; }

.mini-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.mini-actions i {
    height: 62px;
    background: #e4e7d7;
    border-radius: 15px;
}

.mini-actions i:nth-child(2) { background: color-mix(in srgb, var(--highlight) 24%, white); }
.mini-actions i:nth-child(3) { background: color-mix(in srgb, var(--accent) 54%, white); }

.mini-chart {
    display: flex;
    height: 130px;
    gap: 10px;
    align-items: end;
    margin-top: 24px;
    padding: 16px;
    background: var(--white);
    border-radius: 18px;
}

.mini-chart span { width: 100%; height: 35%; background: var(--brand); border-radius: 7px 7px 3px 3px; }
.mini-chart span:nth-child(2) { height: 68%; }
.mini-chart span:nth-child(3) { height: 48%; background: var(--highlight); }
.mini-chart span:nth-child(4) { height: 82%; }
.mini-chart span:nth-child(5) { height: 58%; background: var(--accent); }
.mini-chart span:nth-child(6) { height: 92%; }

.kudit-float {
    position: absolute;
    z-index: 3;
    padding: 11px 17px;
    color: var(--white);
    background: var(--brand-dark);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 99px;
    box-shadow: var(--shadow-sm);
    font-size: .78rem;
    font-weight: 750;
}

.kudit-float--one { top: 23%; right: 4%; transform: rotate(7deg); }
.kudit-float--two { bottom: 20%; left: 4%; color: var(--brand-dark); background: var(--white); transform: rotate(-6deg); }

.kudit__content h2 {
    margin-bottom: 25px;
}

.kudit__content > .lead-copy {
    margin-bottom: 30px;
    color: color-mix(in srgb, var(--ink) 78%, transparent);
    font-size: clamp(1.13rem, 1.8vw, 1.38rem);
}

.kudit__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -6px 0 30px;
}

.kudit__meta > span {
    display: flex;
    min-width: 98px;
    flex-direction: column;
    padding: 10px 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.kudit__meta small {
    color: var(--muted);
    font-size: .66rem;
    text-transform: uppercase;
}

.kudit__meta strong {
    font-size: .84rem;
}

.kudit__release {
    margin: -16px 0 28px;
    color: var(--muted);
    font-size: .78rem;
}

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

.kudit__download {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 18px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.qr-card {
    flex: 0 0 auto;
    padding: 9px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.qr-card img {
    width: 92px;
    height: 92px;
    object-fit: contain;
}

.kudit__download > div:last-child > p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: .76rem;
}

/* Marketplace */
.marketplace {
    padding: 86px 0;
    color: var(--white);
    background: var(--brand-dark);
}

.marketplace__inner {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: clamp(40px, 7vw, 90px);
    align-items: center;
}

.marketplace h2 {
    max-width: 430px;
    margin-bottom: 14px;
    color: var(--white);
    font-size: clamp(2rem, 3.6vw, 3.25rem);
}

.marketplace__description {
    max-width: 410px;
    margin: 0;
    color: rgba(255, 255, 255, .6);
    font-size: .91rem;
}

.marketplace__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.marketplace__links > a {
    display: flex;
    min-height: 86px;
    gap: 14px;
    align-items: center;
    padding: 14px 17px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    transition: background-color .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.marketplace__links > a:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 255, 255, .3);
    transform: translateY(-3px);
}

.marketplace__initial {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--brand-dark);
    background: var(--accent);
    border-radius: 14px;
    font-weight: 900;
}

.marketplace__links > a:nth-child(2n) .marketplace__initial {
    color: var(--white);
    background: var(--highlight);
}

.marketplace__links a > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.marketplace__links small {
    color: rgba(255, 255, 255, .5);
    font-size: .67rem;
}

.marketplace__links strong {
    overflow: hidden;
    font-size: .92rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.marketplace__links i {
    margin-left: auto;
    font-style: normal;
}

.marketplace__soon {
    margin: 0;
    padding: 24px;
    background: rgba(255,255,255,.06);
    border: 1px dashed rgba(255,255,255,.22);
    border-radius: 18px;
    color: rgba(255,255,255,.65);
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.portfolio-card:nth-child(3n) {
    grid-column: span 2;
}

.portfolio-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.45;
    background: var(--surface-soft);
    border-radius: var(--radius-md);
}

.portfolio-card:nth-child(3n) .portfolio-card__media {
    aspect-ratio: 2.2;
}

.portfolio-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.portfolio-card:hover img {
    transform: scale(1.035);
}

.portfolio-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-dark), color-mix(in srgb, var(--brand) 70%, var(--accent)));
}

.portfolio-card__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 4px 0;
}

.portfolio-card__body p {
    margin-bottom: 5px;
    color: var(--highlight);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.portfolio-card__body h3 {
    margin-bottom: 0;
    font-size: 1.55rem;
}

/* Process */
.process {
    overflow: hidden;
    background: var(--surface);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    counter-reset: steps;
    list-style: none;
}

.process-list li {
    position: relative;
    min-height: 280px;
    padding: 30px 26px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.process-list li:last-child {
    border-right: 0;
}

.process-list li > span {
    display: inline-block;
    margin-bottom: 72px;
    color: var(--highlight);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .15em;
}

.process-list h3 {
    margin-bottom: 13px;
}

.process-list p {
    margin: 0;
    color: var(--muted);
    font-size: .87rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.testimonial-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    margin-bottom: 0;
    padding: 30px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.testimonial-card__stars {
    margin-bottom: 28px;
    color: var(--highlight);
    font-size: .8rem;
    letter-spacing: .15em;
}

.testimonial-card blockquote {
    margin-bottom: 30px;
    color: var(--ink);
    font-size: 1.1rem;
    line-height: 1.65;
    letter-spacing: -.02em;
}

.testimonial-card figcaption {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: auto;
}

.testimonial-card__avatar {
    display: grid;
    width: 43px;
    height: 43px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--white);
    background: var(--brand);
    border-radius: 50%;
    font-weight: 850;
}

.testimonial-card figcaption > span:last-child {
    display: flex;
    flex-direction: column;
}

.testimonial-card figcaption strong {
    font-size: .84rem;
}

.testimonial-card figcaption small {
    color: var(--muted);
    font-size: .7rem;
}

/* FAQ */
.faq__grid {
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    gap: clamp(56px, 10vw, 150px);
    align-items: start;
}

.faq .section-heading--sticky h2 {
    margin-bottom: 22px;
}

.faq .section-heading--sticky .text-link {
    margin-top: 25px;
}

.accordion details {
    border-top: 1px solid var(--line);
}

.accordion details:last-child {
    border-bottom: 1px solid var(--line);
}

.accordion summary {
    display: flex;
    min-height: 92px;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 24px 2px;
    font-size: 1.05rem;
    font-weight: 750;
    line-height: 1.35;
    list-style: none;
}

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

.accordion summary i {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.accordion summary i::before,
.accordion summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    background: var(--ink);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform .25s ease;
}

.accordion summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary i {
    color: var(--brand-dark);
    background: var(--accent);
    border-color: var(--accent);
}

.accordion details[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.accordion__answer {
    max-width: 680px;
    padding: 0 54px 30px 2px;
}

.accordion__answer p {
    margin: 0;
    color: var(--muted);
}

/* Contact */
.contact {
    color: var(--white);
    background: var(--brand-dark);
}

.contact::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 0 40%, color-mix(in srgb, var(--brand) 74%, transparent), transparent 62%);
    content: "";
}

.contact__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: clamp(55px, 9vw, 120px);
    align-items: start;
}

.contact__intro {
    position: sticky;
    top: 118px;
}

.contact__intro h2 {
    margin-bottom: 24px;
    color: var(--white);
}

.contact__intro > p:not(.eyebrow) {
    max-width: 480px;
    color: rgba(255, 255, 255, .62);
    font-size: 1.04rem;
}

.contact__direct {
    display: grid;
    gap: 12px;
    margin-top: 44px;
}

.contact__direct > a,
.contact__direct > span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact__direct small {
    color: rgba(255, 255, 255, .45);
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact__direct strong {
    color: var(--white);
    font-size: .95rem;
}

.contact__direct a:hover strong {
    color: var(--accent);
}

.contact-form-wrap {
    padding: clamp(28px, 5vw, 48px);
    color: var(--ink);
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: 0 35px 80px rgba(0, 0, 0, .17);
}

.alert {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    padding: 15px 17px;
    border-radius: 13px;
    font-size: .82rem;
}

.alert--success {
    color: #285537;
    background: #e1f4e6;
    border: 1px solid #bee2c8;
}

.alert--error {
    color: #7d352b;
    background: #fff0ed;
    border: 1px solid #efc1ba;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.field--wide {
    grid-column: 1 / -1;
}

.field label {
    color: var(--ink);
    font-size: .78rem;
    font-weight: 750;
}

.field label > span[aria-hidden] {
    color: var(--highlight);
}

.optional {
    margin-left: 5px;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 500;
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    outline: none;
    background: #fbfaf5;
    border-radius: 12px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.field input:not([type="checkbox"]),
.field select {
    height: 49px;
    padding: 0 14px;
}

.field textarea {
    min-height: 132px;
    padding: 12px 14px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    background: var(--white);
    border-color: var(--brand);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 13%, transparent);
}

.field--error input,
.field--error select,
.field--error textarea {
    border-color: #c65b4a !important;
}

.field > small {
    color: #a44234;
    font-size: .7rem;
}

.field--consent label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 500;
    line-height: 1.5;
}

.field--consent input {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 2px;
    accent-color: var(--brand);
}

.field--consent a {
    color: var(--brand);
    text-decoration: underline;
}

.contact-form .button {
    margin-top: 24px;
    border: 0;
}

.contact-form .button[disabled] {
    cursor: wait;
    opacity: .65;
}

.form-note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: .67rem;
    text-align: center;
}

/* Closing */
.closing-cta {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--highlight);
}

.closing-cta::before,
.closing-cta::after {
    position: absolute;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 50%;
    content: "";
}

.closing-cta::before { top: -230px; left: -100px; width: 480px; height: 480px; }
.closing-cta::after { right: -190px; bottom: -340px; width: 650px; height: 650px; }

.closing-cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 510px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 85px 0;
    text-align: center;
}

.closing-cta__spark {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    place-items: center;
    color: var(--brand-dark);
    background: var(--accent);
    border-radius: 50%;
    font-size: 1.5rem;
}

.closing-cta__inner > p {
    margin-bottom: 12px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.closing-cta h2 {
    max-width: 870px;
    margin-bottom: 34px;
    color: var(--white);
}

/* Footer */
.site-footer {
    color: var(--white);
    background: #0d2620;
}

.site-footer__main {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, .75fr);
    gap: 42px;
    padding: 76px 0 65px;
}

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

.brand--footer .brand__mark {
    background: var(--white);
}

.brand--footer .brand__mark::before {
    border-color: var(--brand-dark);
}

.site-footer__brand p {
    max-width: 350px;
    margin: 23px 0 0;
    color: rgba(255,255,255,.53);
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__column h2 {
    margin-bottom: 13px;
    color: rgba(255,255,255,.42);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.site-footer__column a {
    color: rgba(255,255,255,.76);
    font-size: .84rem;
}

.site-footer__column a:hover {
    color: var(--accent);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0 25px;
    color: rgba(255,255,255,.42);
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .73rem;
}

.site-footer__bottom p {
    margin: 0;
}

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

/* Floating actions */
.floating-wa {
    position: fixed;
    z-index: 90;
    right: 24px;
    bottom: 24px;
    display: flex;
    height: 54px;
    gap: 9px;
    align-items: center;
    padding: 0 18px;
    color: var(--white);
    background: #1fa866;
    border: 2px solid rgba(255,255,255,.78);
    border-radius: 999px;
    box-shadow: 0 14px 35px rgba(8, 63, 39, .28);
    font-size: .82rem;
    font-weight: 800;
    transition: transform .25s var(--ease), box-shadow .25s ease;
}

.floating-wa:hover {
    box-shadow: 0 18px 45px rgba(8, 63, 39, .37);
    transform: translateY(-3px);
}

.floating-wa svg {
    width: 23px;
    fill: currentColor;
}

.mobile-cta {
    display: none;
}

/* Product page */
.page-product,
.page-legal {
    padding-top: 72px;
}

.breadcrumb {
    padding-top: 28px;
    padding-bottom: 12px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: .73rem;
    list-style: none;
}

.breadcrumb li + li::before {
    margin-right: 8px;
    color: color-mix(in srgb, var(--muted) 55%, transparent);
    content: "/";
}

.breadcrumb a:hover {
    color: var(--brand);
}

.product-hero {
    padding: 35px 0 clamp(80px, 9vw, 120px);
}

.product-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: clamp(42px, 7vw, 90px);
    align-items: center;
}

.product-gallery__main {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.16;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.product-gallery__main > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 13px;
    overflow-x: auto;
    padding: 3px;
}

.product-gallery__thumbs button {
    width: 76px;
    height: 58px;
    flex: 0 0 auto;
    overflow: hidden;
    padding: 0;
    background: var(--surface);
    border: 2px solid transparent;
    border-radius: 10px;
}

.product-gallery__thumbs button.is-active {
    border-color: var(--brand);
}

.product-gallery__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-summary h1 {
    margin-bottom: 24px;
    font-size: clamp(2.9rem, 5.3vw, 5.1rem);
}

.product-summary__lead {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 1.08rem;
}

.product-summary__price {
    display: flex;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 28px;
}

.product-summary__price strong {
    font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.product-summary__price del {
    color: var(--muted);
    font-size: .93rem;
}

.product-summary__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 35px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.product-trust li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.product-trust li > span {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--brand-dark);
    background: var(--accent);
    border-radius: 50%;
    font-size: .63rem;
    font-weight: 900;
}

.product-trust div {
    display: flex;
    flex-direction: column;
}

.product-trust strong { font-size: .75rem; }
.product-trust small { color: var(--muted); font-size: .65rem; line-height: 1.35; }

.product-detail {
    background: var(--surface);
}

.product-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
    gap: clamp(55px, 9vw, 125px);
    align-items: start;
}

.product-detail__content h2 {
    max-width: 720px;
    margin-bottom: 36px;
}

.rich-copy {
    color: color-mix(in srgb, var(--ink) 76%, transparent);
    font-size: 1.02rem;
    line-height: 1.85;
}

.product-info-card {
    position: sticky;
    top: 105px;
    padding: 27px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.product-info-card dl {
    margin-bottom: 24px;
}

.product-info-card dl > div {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.product-info-card dt {
    color: var(--muted);
    font-size: .75rem;
}

.product-info-card dd {
    margin: 0;
    font-size: .78rem;
    font-weight: 750;
    text-align: right;
}

.product-info-card .text-link {
    font-size: .76rem;
}

.product-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-features__grid li {
    display: flex;
    min-height: 120px;
    gap: 13px;
    align-items: flex-start;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.product-features__grid li > span {
    display: grid;
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--brand-dark);
    background: var(--accent);
    border-radius: 50%;
    font-size: .68rem;
    font-weight: 900;
}

.product-features__grid p {
    margin: 1px 0 0;
    font-size: .9rem;
    font-weight: 650;
}

/* Legal pages */
.legal-hero {
    position: relative;
    overflow: hidden;
    background: color-mix(in srgb, var(--brand) 7%, var(--paper));
    border-bottom: 1px solid var(--line);
}

.legal-hero::after {
    position: absolute;
    top: -180px;
    right: -80px;
    width: 440px;
    height: 440px;
    background: color-mix(in srgb, var(--accent) 30%, transparent);
    border-radius: 50%;
    filter: blur(60px);
    content: "";
}

.legal-hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 14px;
    padding-bottom: clamp(75px, 9vw, 120px);
}

.legal-hero .breadcrumb {
    width: auto;
    margin-bottom: clamp(45px, 7vw, 90px);
    padding: 15px 0 0;
}

.legal-hero h1 {
    max-width: 800px;
    margin-bottom: 24px;
}

.legal-hero__inner > p:not(.eyebrow) {
    max-width: 680px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 1.12rem;
}

.legal-hero__inner > small {
    color: var(--muted);
    font-size: .73rem;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(240px, .5fr) minmax(0, 1.5fr);
    gap: clamp(50px, 9vw, 130px);
    align-items: start;
}

.legal-aside {
    position: sticky;
    top: 105px;
}

.legal-aside > div {
    padding: 25px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.legal-aside > div > span {
    display: grid;
    width: 35px;
    height: 35px;
    margin-bottom: 25px;
    place-items: center;
    color: var(--brand-dark);
    background: var(--accent);
    border-radius: 50%;
    font-family: Georgia, serif;
    font-weight: 800;
}

.legal-aside h2 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.legal-aside p {
    color: var(--muted);
    font-size: .83rem;
}

.legal-aside .text-link {
    font-size: .74rem;
}

.legal-content {
    max-width: 790px;
}

.legal-content > h2 {
    margin: 56px 0 18px;
    padding-top: 8px;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    letter-spacing: -.03em;
}

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

.legal-content > p {
    margin-bottom: 24px;
    color: color-mix(in srgb, var(--ink) 75%, transparent);
    line-height: 1.85;
}

.legal-contact {
    margin-top: 65px;
    padding: clamp(25px, 5vw, 40px);
    background: var(--brand-dark);
    border-radius: var(--radius-md);
}

.legal-contact h2 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 1.5rem;
}

.legal-contact p {
    color: rgba(255,255,255,.62);
}

.legal-contact a {
    display: block;
    width: fit-content;
    color: var(--accent);
    font-size: .88rem;
}

.legal-contact a + a {
    margin-top: 4px;
}

/* Progressive reveal */
.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .site-nav {
        gap: 18px;
    }

    .site-nav > a:not(.button) {
        font-size: .84rem;
    }

    .hero__content {
        width: 62%;
    }

    .hero__wash {
        background: linear-gradient(90deg, color-mix(in srgb, var(--paper) 96%, transparent) 0%, color-mix(in srgb, var(--paper) 90%, transparent) 40%, color-mix(in srgb, var(--paper) 30%, transparent) 70%, transparent 100%);
    }

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

    .value-item:nth-child(2) {
        border-right: 0;
    }

    .value-item:first-child,
    .value-item:nth-child(3) {
        padding-left: 0;
    }

    .value-item:nth-child(3),
    .value-item:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,.13);
    }

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

    .marketplace__inner {
        grid-template-columns: .85fr 1.15fr;
    }

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

    .process-list li:nth-child(2) {
        border-right: 0;
    }

    .process-list li:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .site-footer__main {
        grid-template-columns: 1.4fr repeat(3, .8fr);
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 72px;
    }

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

    .nav-toggle {
        display: block;
    }

    .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] > span:nth-child(4) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        z-index: 99;
        top: 72px;
        right: 0;
        left: 0;
        display: flex;
        max-height: calc(100svh - 72px);
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        overflow-y: auto;
        padding: 20px 16px 28px;
        background: color-mix(in srgb, var(--paper) 97%, transparent);
        border-top: 1px solid var(--line);
        box-shadow: 0 20px 40px rgba(23,63,53,.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .25s var(--ease);
        backdrop-filter: blur(18px);
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav > a:not(.button) {
        padding: 14px 8px;
        border-bottom: 1px solid var(--line);
        font-size: 1rem;
    }

    .site-nav > a:not(.button)::after {
        display: none;
    }

    .site-nav .button {
        margin-top: 20px;
    }

    .hero {
        min-height: 780px;
    }

    .hero__content {
        width: min(640px, 78%);
    }

    .hero__wash {
        background: linear-gradient(90deg, color-mix(in srgb, var(--paper) 96%, transparent), color-mix(in srgb, var(--paper) 82%, transparent) 58%, color-mix(in srgb, var(--paper) 28%, transparent));
    }

    .section-heading--row,
    .about__grid,
    .faq__grid,
    .contact__grid,
    .kudit__grid,
    .product-detail__grid,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .section-heading--row {
        gap: 25px;
        align-items: start;
    }

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

    .section-heading--sticky,
    .contact__intro,
    .product-info-card,
    .legal-aside {
        position: static;
    }

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

    .invitation__visual {
        min-height: 500px;
    }

    .kudit__visual {
        min-height: 590px;
    }

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

    .marketplace h2 {
        max-width: 680px;
    }

    .contact__intro {
        max-width: 680px;
    }

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

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .product-hero__grid {
        grid-template-columns: 1fr;
    }

    .product-summary {
        max-width: 700px;
    }

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

    .legal-aside > div {
        max-width: 560px;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 66px;
    }

    .page-product,
    .page-legal {
        padding-top: 68px;
    }

    h1 {
        font-size: clamp(2.8rem, 13vw, 4.15rem);
    }

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

    .section {
        padding: 82px 0;
    }

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

    .site-header,
    .site-header.is-scrolled,
    .site-header--solid {
        height: 68px;
    }

    .brand__word {
        font-size: 1.15rem;
    }

    .brand__mark {
        width: 31px;
        height: 31px;
        border-radius: 9px;
    }

    .brand__image {
        max-width: 145px;
        height: 34px;
    }

    .site-nav {
        top: 68px;
        max-height: calc(100svh - 68px);
    }

    .hero {
        min-height: 790px;
    }

    .hero__inner {
        align-items: flex-end;
        padding-top: 122px;
        padding-bottom: 62px;
    }

    .hero__content {
        width: 100%;
    }

    .hero__media img {
        object-position: 65% center;
    }

    .hero__media {
        opacity: .45;
    }

    .hero__wash {
        background: linear-gradient(180deg, color-mix(in srgb, var(--paper) 65%, transparent) 0%, color-mix(in srgb, var(--paper) 84%, transparent) 40%, var(--paper) 88%);
    }

    .hero h1 {
        margin-bottom: 22px;
    }

    .hero__lead {
        font-size: 1rem;
    }

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

    .hero__actions .button {
        width: 100%;
    }

    .value-strip__grid {
        grid-template-columns: 1fr;
    }

    .value-item,
    .value-item:first-child,
    .value-item:nth-child(3) {
        min-height: 92px;
        padding: 17px 0;
        border-top: 1px solid rgba(255,255,255,.13);
        border-right: 0;
    }

    .value-item:first-child {
        border-top: 0;
    }

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

    .about__grid,
    .faq__grid,
    .contact__grid,
    .kudit__grid,
    .product-detail__grid,
    .legal-layout {
        gap: 43px;
    }

    .about__cards,
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .portfolio-grid,
    .marketplace__links,
    .product-features__grid {
        grid-template-columns: 1fr;
    }

    .about__cards article {
        min-height: 215px;
    }

    .about__cards article > span {
        margin-bottom: 35px;
    }

    .service-card {
        min-height: 335px;
    }

    .empty-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .product-card__body > p:not(.product-card__category) {
        min-height: 0;
    }

    .invitation {
        padding-top: 12px;
    }

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

    .invitation__copy {
        padding: 38px 24px 30px;
    }

    .invitation__copy h2 {
        font-size: 2.7rem;
    }

    .invitation__visual {
        min-height: 430px;
    }

    .invite-card {
        width: 66%;
        padding: 25px;
    }

    .kudit__visual {
        min-height: 510px;
    }

    .phone-mockup {
        width: 66%;
    }

    .phone-mockup__screen {
        min-height: 450px;
    }

    .mini-chart {
        height: 90px;
    }

    .kudit-float--one { top: 14%; }
    .kudit-float--two { bottom: 14%; }

    .kudit__download {
        align-items: flex-start;
    }

    .qr-card img {
        width: 76px;
        height: 76px;
    }

    .marketplace {
        padding: 72px 0;
    }

    .portfolio-card:nth-child(3n) {
        grid-column: auto;
    }

    .portfolio-card:nth-child(3n) .portfolio-card__media,
    .portfolio-card__media {
        aspect-ratio: 1.35;
    }

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

    .process-list li,
    .process-list li:nth-child(2) {
        min-height: 225px;
        border-right: 0;
    }

    .process-list li > span {
        margin-bottom: 43px;
    }

    .accordion summary {
        min-height: 82px;
        font-size: .95rem;
    }

    .contact-form-wrap {
        padding: 25px 18px;
        border-radius: 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .field--wide {
        grid-column: auto;
    }

    .closing-cta__inner {
        min-height: 480px;
    }

    .site-footer__main {
        grid-template-columns: repeat(2, 1fr);
        gap: 38px 22px;
        padding-top: 62px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

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

    .site-footer__bottom {
        gap: 10px;
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-wa {
        display: none;
    }

    .mobile-cta {
        position: fixed;
        z-index: 95;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        height: 66px;
        grid-template-columns: .8fr 1.2fr;
        padding: 8px 10px;
        background: color-mix(in srgb, var(--paper) 95%, transparent);
        border-top: 1px solid var(--line);
        box-shadow: 0 -10px 35px rgba(23,63,53,.1);
        backdrop-filter: blur(14px);
    }

    .mobile-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        font-size: .78rem;
        font-weight: 800;
    }

    .mobile-cta a:last-child {
        color: var(--brand-dark);
        background: var(--accent);
    }

    .breadcrumb {
        padding-top: 22px;
    }

    .product-hero {
        padding-top: 22px;
    }

    .product-gallery__main {
        border-radius: 22px;
    }

    .product-summary h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .product-summary__actions {
        flex-direction: column;
    }

    .product-summary__actions .button {
        width: 100%;
    }

    .product-trust {
        grid-template-columns: 1fr;
    }

    .product-info-card {
        padding: 22px;
    }

    .legal-hero__inner {
        padding-bottom: 72px;
    }

    .legal-hero .breadcrumb {
        margin-bottom: 48px;
    }

    .legal-aside > div {
        max-width: none;
    }
}

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

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

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .site-header,
    .floating-wa,
    .mobile-cta,
    .closing-cta,
    .site-footer,
    .legal-aside {
        display: none !important;
    }

    body,
    .page-legal {
        padding: 0;
        color: #000;
        background: #fff;
    }

    .legal-hero {
        background: #fff;
    }

    .legal-layout {
        display: block;
    }
}
