:root {
    --color-bg: #f9fafb;
    --color-bg-elevated: #ffffff;
    --color-primary: #f7901e;
    --color-primary-soft: rgba(247, 144, 30, 0.12);
    --color-primary-dark: #e46c00;
    --color-text: #111827;
    --color-text-soft: #4b5563;
    --color-border: #e5e7eb;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
    --radius-xl: 1.5rem;
    --radius-lg: 1rem;
    --radius-full: 999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #fff7ed 0, #f9fafb 40%, #f3f4f6 100%);
    color: var(--color-text);
}

.page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */

.header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: linear-gradient(
        to bottom,
        rgba(249, 250, 251, 0.92),
        rgba(249, 250, 251, 0.8),
        transparent
    );
    border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 1.25rem;
    background: conic-gradient(
        from 180deg,
        #f59e0b,
        #f97316,
        #fb923c,
        #facc15,
        #f59e0b
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(248, 137, 36, 0.45);
}

.logo-mark span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
}

.logo-text-primary {
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.logo-text-secondary {
    font-size: 0.8rem;
    color: var(--color-text-soft);
}

/* Nav */

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.nav a {
    text-decoration: none;
    color: var(--color-text-soft);
    padding: 0.35rem 0;
    position: relative;
}

.nav a:hover,
.nav a.is-active {
    color: var(--color-text);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, #f97316, #facc15);
    transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
    width: 100%;
}

/* Mobile nav */

.nav-toggle {
    display: none;
    border: none;
    background: var(--color-primary-soft);
    border-radius: 999px;
    padding: 0.4rem 0.7rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-primary-dark);
    position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-primary-dark);
}

.nav-toggle span::before {
    top: -5px;
}

.nav-toggle span::after {
    top: 5px;
}

@media (max-width: 768px) {
    .nav {
        position: absolute;
        inset-inline: 0;
        top: 56px;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 1.25rem 1rem;
        background: rgba(249, 250, 251, 0.97);
        border-bottom: 1px solid var(--color-border);
        transform-origin: top;
        transform: scaleY(0.6);
        opacity: 0;
        pointer-events: none;
        transition: all 0.18s ease-out;
    }

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

    .nav-toggle {
        display: inline-flex;
    }
}

/* Hero */

.hero {
    padding: 3.5rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(251, 146, 60, 0.35);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-soft);
}

.hero-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle, #f97316, #f59e0b);
}

.hero-title {
    margin: 1.1rem 0 0.8rem;
    font-size: clamp(2.1rem, 3vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-title span {
    background-image: linear-gradient(to right, #f97316, #facc15);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-lead {
    margin: 0 0 1.5rem;
    font-size: 0.98rem;
    color: var(--color-text-soft);
    max-width: 34rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 1.3rem;
}

.btn {
    border-radius: var(--radius-full);
    border: none;
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #facc15);
    color: #111827;
    box-shadow: 0 14px 35px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 50px rgba(248, 113, 22, 0.5);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(249, 115, 22, 0.22);
    color: var(--color-text-soft);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.8rem;
    color: var(--color-text-soft);
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero-meta-label {
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.7rem;
}

.hero-meta-value {
    font-weight: 600;
}

/* Hero visual */

.hero-card {
    position: relative;
    padding: 1.4rem;
    border-radius: 1.75rem;
    background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.4), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(249, 115, 22, 0.16);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    font-size: 0.72rem;
    color: var(--color-text-soft);
    margin-bottom: 0.8rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.08);
    color: #166534;
    font-size: 0.7rem;
}

.hero-main-figure {
    border-radius: 1.3rem;
    overflow: hidden;
    margin-bottom: 0.9rem;
    position: relative;
}

.hero-main-figure img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1.03);
    transform-origin: center;
}

.hero-orbit,
.hero-orbit-secondary {
    position: absolute;
    border-radius: 999px;
    border: 1px dashed rgba(249, 115, 22, 0.4);
}

.hero-orbit {
    width: 140%;
    height: 140%;
    left: -20%;
    top: -20%;
    opacity: 0.3;
}

.hero-orbit-secondary {
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
    opacity: 0.35;
}

/* Hero chips */

.hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    font-size: 0.78rem;
}

.hero-chip {
    padding: 0.65rem 0.7rem;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(229, 231, 235, 0.9);
}

.hero-chip strong {
    display: block;
    margin-bottom: 0.1rem;
}

/* Sections */

.section {
    padding: 2.8rem 0 2.6rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.7rem;
}

.section-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-primary-dark);
}

.section-title {
    margin: 0.25rem 0;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.section-lead {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-soft);
    max-width: 30rem;
}

/* Cards, pricing, content */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.card {
    padding: 1.1rem 1.1rem 1.2rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(
            135deg,
            rgba(251, 191, 36, 0.7),
            rgba(248, 250, 252, 0.1),
            rgba(249, 115, 22, 0.6)
        )
        border-box;
    mask:
        linear-gradient(#000 0 0) padding-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.card:hover::before {
    opacity: 1;
}

.card-label {
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-text-soft);
    margin-bottom: 0.3rem;
}

.card-title {
    font-size: 1.02rem;
    margin: 0 0 0.35rem;
}

.card-body {
    font-size: 0.9rem;
    color: var(--color-text-soft);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.price-card {
    padding: 1.25rem 1.25rem 1.3rem;
    border-radius: 1.3rem;
    background: #111827;
    color: #f9fafb;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.6);
}

.price-card.light {
    background: #ffffff;
    color: var(--color-text);
    box-shadow: var(--shadow-soft);
}

.price-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.18);
    font-size: 0.72rem;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0.75rem 0 0.3rem;
}

.price-amount span {
    font-size: 0.85rem;
    font-weight: 500;
}

.price-sub {
    font-size: 0.86rem;
    color: #e5e7eb;
}

.price-card.light .price-sub {
    color: var(--color-text-soft);
}

.price-list {
    margin: 1rem 0 1.2rem;
    padding: 0;
    list-style: none;
    font-size: 0.86rem;
}

.price-list li {
    display: flex;
    gap: 0.35rem;
    align-items: flex-start;
    margin-bottom: 0.4rem;
}

.price-list li::before {
    content: "•";
    font-size: 1rem;
    margin-top: -0.05rem;
    color: #facc15;
}

.price-card.light .price-list li::before {
    color: #f97316;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2rem;
}

.prose {
    font-size: 0.95rem;
    color: var(--color-text-soft);
    line-height: 1.6;
}

.prose h1,
.prose h2 {
    color: var(--color-text);
}

.prose h2 {
    margin-top: 1.2rem;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.prose p {
    margin: 0 0 0.7rem;
}

/* Footer */

.footer {
    margin-top: auto;
    padding: 1.5rem 0 1.8rem;
    border-top: 1px solid rgba(229, 231, 235, 0.9);
    background: rgba(249, 250, 251, 0.95);
    font-size: 0.82rem;
    color: var(--color-text-soft);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer a {
    color: var(--color-text-soft);
    text-decoration: none;
}

.footer a:hover {
    color: var(--color-text);
}

/* Cookie banner */

.cookie-banner {
    position: fixed;
    inset-inline: 0.75rem;
    bottom: 0.75rem;
    z-index: 50;
    max-width: 420px;
    margin-inline: auto;
    background: rgba(15, 23, 42, 0.96);
    color: #f9fafb;
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.8);
    font-size: 0.82rem;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    margin: 0 0 0.65rem;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.cookie-btn {
    border-radius: 999px;
    border: 0;
    padding: 0.4rem 0.9rem;
    font-size: 0.78rem;
    cursor: pointer;
}

.cookie-btn.primary {
    background: linear-gradient(135deg, #f97316, #facc15);
    color: #111827;
}

.cookie-btn.secondary {
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.9);
    color: #e5e7eb;
}

/* Forms */

.form-card {
    border-radius: 1.3rem;
    padding: 1.2rem 1.2rem 1.3rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(229, 231, 235, 0.96);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.form-field {
    margin-bottom: 0.7rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
    color: var(--color-text-soft);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    border-radius: 0.8rem;
    border: 1px solid rgba(209, 213, 219, 0.9);
    padding: 0.55rem 0.55rem;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    background: #f9fafb;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: rgba(249, 115, 22, 0.7);
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.1);
}

/* Tables */

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.table th,
.table td {
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.table th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-soft);
}

/* Responsive */

@media (max-width: 960px) {
    .hero-grid,
    .card-grid,
    .pricing-grid,
    .content-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 2.4rem;
    }
}

@media (max-width: 600px) {
    .card-grid,
    .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .section {
        padding: 2.2rem 0 2rem;
    }
}
