:root {
    --bg: #f4efe8;
    --bg-strong: #efe5d6;
    --panel: rgba(255, 252, 246, 0.82);
    --panel-strong: #fffaf2;
    --line: rgba(53, 40, 28, 0.12);
    --line-strong: rgba(53, 40, 28, 0.2);
    --text: #1c1a17;
    --muted: #665e54;
    --accent: #173f38;
    --accent-soft: #2d645a;
    --accent-warm: #cc6b49;
    --accent-gold: #d7a257;
    --shadow: 0 24px 80px rgba(57, 34, 14, 0.08);
    --shadow-soft: 0 10px 30px rgba(57, 34, 14, 0.06);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --font-display: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
    --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(238, 188, 107, 0.22), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(204, 107, 73, 0.16), transparent 24%),
        linear-gradient(180deg, #f8f3ed 0%, #f4efe8 45%, #efe7da 100%);
    color: var(--text);
    font-family: var(--font-body);
    padding: 28px 24px 52px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

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

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

.page-noise {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23957b5a' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3Ccircle cx='80' cy='54' r='1'/%3E%3Ccircle cx='120' cy='118' r='1'/%3E%3Ccircle cx='155' cy='70' r='1'/%3E%3Ccircle cx='46' cy='142' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    mix-blend-mode: multiply;
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.page-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
    animation: drift 18s ease-in-out infinite;
}

.orb-left {
    width: 300px;
    height: 300px;
    background: rgba(239, 188, 120, 0.38);
    left: -100px;
    top: 180px;
}

.orb-right {
    width: 380px;
    height: 380px;
    background: rgba(33, 93, 84, 0.16);
    right: -120px;
    top: 80px;
    animation-duration: 24s;
}

.topbar,
.site-shell,
.footer {
    position: relative;
    z-index: 1;
}

.topbar {
    max-width: 1200px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--accent);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, #25564d 70%, #3b7a6d 100%);
    color: #fffaf2;
    font-family: var(--font-display);
    font-size: 0.98rem;
    box-shadow: var(--shadow-soft);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.topnav {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.55);
    backdrop-filter: blur(10px);
}

.topnav a {
    color: var(--muted);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.topnav a:hover,
.contact-links a:hover {
    color: var(--accent);
}

.nav-cta,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.nav-cta {
    padding: 12px 18px;
    background: rgba(23, 63, 56, 0.08);
    color: var(--accent);
    border: 1px solid rgba(23, 63, 56, 0.14);
}

.nav-cta:hover,
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.site-shell {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.card-panel,
.product-card {
    border: 1px solid var(--line);
    background: var(--panel);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.card-panel {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 28px;
    padding: 34px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow,
.section-kicker {
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 16px;
}

.hero h1,
.info-grid h2,
.section-heading h2,
.detail-grid h2 {
    font-family: var(--font-display);
    letter-spacing: -0.05em;
    line-height: 1.04;
}

.hero h1 {
    font-size: clamp(2.8rem, 4vw, 4.9rem);
    max-width: 10.5ch;
}

.hero-text,
.intro-card p:not(.section-kicker),
.product-summary,
.product-points li,
.promise-list span,
.reach-lines span,
.principle-list li,
.contact-links a {
    color: var(--muted);
    line-height: 1.75;
}

.hero-text {
    margin-top: 18px;
    font-size: 1.02rem;
    max-width: 62ch;
}

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

.hero-actions {
    margin-top: 28px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 22px;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #24584f 100%);
    color: #fff8ef;
    box-shadow: 0 14px 30px rgba(23, 63, 56, 0.18);
}

.btn-primary:hover {
    box-shadow: 0 18px 38px rgba(23, 63, 56, 0.24);
}

.btn-secondary {
    border: 1px solid var(--line-strong);
    background: rgba(255, 251, 245, 0.9);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: rgba(23, 63, 56, 0.24);
    color: var(--accent);
}

.hero-metrics {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-metrics li {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 249, 239, 0.88);
    border: 1px solid rgba(53, 40, 28, 0.08);
}

.hero-metrics strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 6px;
}

.hero-metrics span {
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-frame {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 218, 157, 0.78), transparent 24%),
        linear-gradient(160deg, #fff8ef 0%, #f8ecdc 42%, #f2e5d5 100%);
    border: 1px solid rgba(53, 40, 28, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-chip {
    position: absolute;
    max-width: 250px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 251, 245, 0.82);
    border: 1px solid rgba(53, 40, 28, 0.08);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
    animation: rise 8s ease-in-out infinite;
}

.chip-top {
    top: 26px;
    left: -12px;
}

.chip-bottom {
    right: 8px;
    bottom: 18px;
    animation-delay: -4s;
}

.chip-label {
    display: inline-block;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-warm);
    margin-bottom: 8px;
    font-weight: 800;
}

.floating-chip strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.floating-chip small {
    display: block;
    color: var(--muted);
    line-height: 1.5;
}

.info-grid,
.detail-grid {
    display: grid;
    gap: 20px;
}

.info-grid {
    grid-template-columns: 1.25fr 0.9fr 0.95fr 0.9fr;
}

.intro-card,
.principle-card,
.stack-card,
.reach-card,
.promise-card,
.link-card {
    padding: 28px;
}

.intro-card h2,
.detail-grid h2,
.section-heading h2 {
    font-size: clamp(1.7rem, 2vw, 2.4rem);
    margin-bottom: 16px;
}

.principle-list,
.product-points {
    list-style: none;
}

.principle-list {
    display: grid;
    gap: 12px;
}

.principle-list li,
.product-points li {
    position: relative;
    padding-left: 18px;
}

.principle-list li::before,
.product-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-gold));
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud span,
.platform-pill,
.status-pill {
    border-radius: 999px;
    font-weight: 700;
}

.tag-cloud span {
    padding: 10px 14px;
    background: rgba(23, 63, 56, 0.06);
    color: var(--accent);
    border: 1px solid rgba(23, 63, 56, 0.12);
}

.reach-lines {
    display: grid;
    gap: 18px;
}

.reach-lines strong,
.promise-list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--accent);
}

.products-section {
    display: grid;
    gap: 18px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.section-heading h2 {
    max-width: 18ch;
}

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

.product-card {
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    min-height: 100%;
}

.product-card.featured {
    grid-column: span 2;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.product-media {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}

.product-media::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    pointer-events: none;
}

.product-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 26px;
    filter: drop-shadow(0 24px 38px rgba(56, 35, 12, 0.18));
    transition: transform 0.45s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.03) translateY(-4px);
}

.tone-amber {
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 238, 202, 0.94), transparent 26%),
        linear-gradient(135deg, #f4d9a6 0%, #efc183 42%, #e2ab73 100%);
}

.tone-rose {
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 235, 231, 0.94), transparent 26%),
        linear-gradient(145deg, #f7d0c6 0%, #efb4a3 45%, #d88f7a 100%);
}

.tone-forest {
    background:
        radial-gradient(circle at 80% 20%, rgba(219, 243, 237, 0.75), transparent 24%),
        linear-gradient(145deg, #bfd8cb 0%, #87b4a0 48%, #5c8f7b 100%);
}

.tone-ink {
    background:
        radial-gradient(circle at 20% 16%, rgba(255, 221, 166, 0.18), transparent 24%),
        linear-gradient(145deg, #243431 0%, #20211f 52%, #131817 100%);
}

.product-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.product-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.platform-pill,
.status-pill {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 12px;
}

.platform-pill {
    background: rgba(23, 63, 56, 0.08);
    color: var(--accent);
}

.status-pill {
    background: rgba(204, 107, 73, 0.12);
    color: var(--accent-warm);
}

.status-pill.subtle {
    background: rgba(28, 26, 23, 0.06);
    color: var(--muted);
}

.product-body h3 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.product-summary {
    margin-bottom: 18px;
}

.product-points {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.product-actions {
    margin-top: auto;
}

.detail-grid {
    grid-template-columns: 1.2fr 0.8fr;
}

.promise-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.promise-list div,
.reach-lines div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 249, 239, 0.72);
    border: 1px solid rgba(53, 40, 28, 0.07);
}

.contact-actions {
    margin: 24px 0 18px;
}

.contact-links {
    display: grid;
    gap: 10px;
}

.footer {
    max-width: 1200px;
    margin: 26px auto 0;
    padding-top: 8px;
    color: var(--muted);
    font-size: 0.92rem;
}

@keyframes rise {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(14px, -18px, 0);
    }
}

@media (max-width: 1080px) {
    .hero,
    .product-card.featured,
    .info-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .visual-frame {
        min-height: 420px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading h2 {
        max-width: none;
    }

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

@media (max-width: 820px) {
    body {
        padding: 18px 16px 42px;
    }

    .topbar {
        flex-wrap: wrap;
    }

    .topnav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 24px;
    }

    .hero h1 {
        max-width: none;
    }

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

    .product-card.featured {
        grid-column: span 1;
    }

    .floating-chip {
        position: static;
        max-width: none;
    }

    .hero-visual {
        gap: 12px;
        min-height: auto;
        flex-direction: column;
    }

    .visual-frame {
        min-height: 360px;
    }
}

@media (max-width: 560px) {
    .brand-text {
        font-size: 0.95rem;
    }

    .nav-cta,
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-actions,
    .product-actions,
    .contact-actions {
        flex-direction: column;
    }

    .intro-card,
    .principle-card,
    .stack-card,
    .reach-card,
    .promise-card,
    .link-card,
    .product-body {
        padding: 22px;
    }

    .product-topline {
        flex-direction: column;
        align-items: flex-start;
    }
}
