:root {
    --bg: #0a1018;
    --bg-soft: #111c29;
    --panel: rgba(14, 24, 37, 0.9);
    --panel-strong: #142233;
    --panel-border: rgba(151, 191, 255, 0.16);
    --text: #eef4ff;
    --muted: #9cb1cb;
    --cyan: #56d4ff;
    --blue: #4f7cff;
    --amber: #ffb24d;
    --success: #56e0a8;
    --danger: #ff7d7d;
    --shadow: 0 24px 80px rgba(2, 8, 18, 0.44);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(86, 212, 255, 0.12), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(79, 124, 255, 0.18), transparent 26%),
        linear-gradient(180deg, #07111b 0%, #09131e 30%, #0a1018 100%);
    font-family: Bahnschrift, "Segoe UI Variable", "Trebuchet MS", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
    pointer-events: none;
}

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

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

.site-shell {
    position: relative;
    overflow: hidden;
}

.topbar,
.ticker-band,
.showcase-slider,
.hero,
.section,
.site-footer,
.trust-band,
.message-strip {
    width: min(calc(100% - 32px), var(--max-width));
    margin-inline: auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(8, 15, 24, 0.76);
    border: 1px solid rgba(151, 191, 255, 0.12);
    border-radius: 999px;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    display: block;
    width: 116px;
    height: auto;
    flex: 0 0 auto;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-size: 1rem;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.82rem;
}

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

.static-nav {
    position: static;
}

.site-nav a {
    padding: 10px 14px;
    color: var(--muted);
    border-radius: 999px;
    transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.site-nav .nav-pill {
    color: #061019;
    background: linear-gradient(135deg, var(--amber), #ffd277);
    font-weight: 700;
}

.nav-toggle {
    display: none;
    padding: 10px 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.ticker-band {
    margin-top: 12px;
    padding: 11px 0;
    overflow: hidden;
    background: rgba(4, 8, 14, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
}

.ticker-track {
    display: flex;
    width: max-content;
    min-width: 100%;
    animation: ticker-scroll 26s linear infinite;
    will-change: transform;
}

.ticker-band:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-segment {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 16px;
    padding-right: 16px;
    white-space: nowrap;
}

.ticker-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    margin-left: 16px;
    padding: 7px 14px;
    color: #201200;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, var(--amber), #ffd277);
    border-radius: 999px;
}

.ticker-dot {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 195, 96, 0.92);
}

.ticker-item {
    color: #d9e4f2;
    font-size: 0.98rem;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.showcase-slider {
    margin-top: 24px;
}

.showcase-slider-shell {
    position: relative;
}

.showcase-slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-y pinch-zoom;
    -ms-overflow-style: none;
}

.showcase-slider-track::-webkit-scrollbar {
    display: none;
}

.showcase-slider-shell.is-dragging .showcase-slider-track {
    scroll-snap-type: none;
    cursor: grabbing;
}

.showcase-slide {
    position: relative;
    min-height: 420px;
    padding: 34px 34px 102px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.12), transparent 18%),
        linear-gradient(135deg, rgba(9, 20, 32, 0.98), rgba(14, 28, 45, 0.98) 48%, rgba(17, 34, 58, 0.94));
    border: 1px solid rgba(151, 191, 255, 0.14);
    border-radius: 34px;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
}

.showcase-slide::before,
.showcase-slide::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.showcase-slide::before {
    inset: auto -6% -20% auto;
    width: min(42vw, 520px);
    height: min(42vw, 520px);
    border-radius: 999px;
    opacity: 0.24;
    filter: blur(12px);
    background: radial-gradient(circle, var(--slide-accent), transparent 62%);
}

.showcase-slide::after {
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.03), transparent 32%),
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.showcase-tone-cyan {
    --slide-accent: rgba(86, 212, 255, 0.95);
}

.showcase-tone-cyan-alt {
    --slide-accent: rgba(74, 145, 255, 0.92);
}

.showcase-tone-amber {
    --slide-accent: rgba(255, 178, 77, 0.94);
}

.showcase-tone-blue {
    --slide-accent: rgba(79, 124, 255, 0.94);
}

.showcase-slide-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 24px;
    align-items: stretch;
    min-height: 100%;
}

.showcase-slide-copy,
.showcase-slide-panel {
    display: grid;
    align-content: space-between;
    gap: 22px;
}

.showcase-slide-copy {
    max-width: 720px;
}

.showcase-slide-media {
    min-height: 0;
    padding: 0;
    background: #0b1520;
}

.showcase-slide-media::before {
    display: none;
}

.showcase-slide-media::after {
    display: none;
}

.showcase-slide-media-layer,
.showcase-slide-media-image {
    display: block;
    width: 100%;
}

.showcase-slide-media-image {
    aspect-ratio: 1920 / 768;
    object-fit: cover;
    object-position: center;
}

.showcase-slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #bfd6f5;
    font-size: 0.98rem;
    font-weight: 700;
}

.showcase-slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--slide-accent);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.06);
}

.showcase-slide h2 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(2.8rem, 5.4vw, 5.2rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.showcase-slide p {
    max-width: 56ch;
    margin: 0;
    color: #c0d2e8;
    font-size: 1.04rem;
    line-height: 1.8;
}

.showcase-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.showcase-slide-panel {
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(17, 31, 48, 0.9), rgba(11, 20, 32, 0.96));
    border: 1px solid rgba(151, 191, 255, 0.12);
    border-radius: 28px;
    backdrop-filter: blur(16px);
}

.showcase-slide-panel-top {
    display: grid;
    gap: 12px;
}

.showcase-slide-panel-top span,
.showcase-slide-metrics div {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.showcase-slide-panel-top span {
    color: #edf4ff;
    font-weight: 600;
    line-height: 1.5;
}

.showcase-slide-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.showcase-slide-metrics span {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
}

.showcase-slide-metrics strong {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.5;
}

.showcase-slider-controls {
    position: absolute;
    right: 34px;
    bottom: 28px;
    left: 34px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    pointer-events: none;
}

.showcase-slider-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    pointer-events: auto;
}

.showcase-slider-dot,
.showcase-slider-button {
    border: 0;
    transition: 180ms ease;
}

.showcase-slider-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.18);
}

.showcase-slider-dot.is-active,
.showcase-slider-dot:hover,
.showcase-slider-dot:focus-visible {
    background: var(--cyan);
    box-shadow: 0 0 0 6px rgba(86, 212, 255, 0.12);
}

.showcase-slider-buttons {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.showcase-slider-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--text);
    font-size: 1.6rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-slider-button:hover,
.showcase-slider-button:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    gap: 28px;
    align-items: stretch;
    padding: 30px 0 28px;
}

.hero-copy,
.hero-panel,
.section,
.trust-band,
.message-strip,
.site-footer {
    position: relative;
    z-index: 1;
}

.checkout-section {
    padding-top: 54px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 18px;
    margin-top: 30px;
}

.checkout-card {
    padding: 24px;
    background: linear-gradient(180deg, rgba(18, 29, 44, 0.96), rgba(11, 18, 28, 0.96));
    border: 1px solid var(--panel-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.checkout-summary-head,
.cart-overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr);
    gap: 18px;
    align-items: center;
}

.cart-overview {
    margin-top: 26px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(18, 29, 44, 0.96), rgba(11, 18, 28, 0.96));
    border: 1px solid var(--panel-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.cart-overview h3,
.checkout-summary-head h3 {
    margin: 8px 0 10px;
}

.cart-overview p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.cart-overview-actions {
    display: grid;
    gap: 14px;
}

.checkout-summary .price-box {
    margin-top: 24px;
}

.price-box.compact {
    margin-top: 0;
}

.checkout-form {
    display: grid;
    gap: 18px;
}

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

.form-grid label {
    display: grid;
    gap: 8px;
}

.form-grid span,
.form-note {
    color: var(--muted);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    padding: 14px 16px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    outline: none;
}

.form-grid select option,
.form-grid select optgroup {
    color: #132238;
    background: #ffffff;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: rgba(86, 212, 255, 0.48);
    box-shadow: 0 0 0 4px rgba(86, 212, 255, 0.08);
}

.form-span-2 {
    grid-column: 1 / -1;
}

.form-note {
    margin: 0;
    line-height: 1.7;
}

.top-gap-sm {
    margin-top: 12px;
}

.cart-line-list {
    display: grid;
    gap: 14px;
}

.cart-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-line-copy {
    display: grid;
    gap: 6px;
}

.cart-line-copy strong {
    font-size: 1.02rem;
}

.cart-line-copy span,
.cart-line-copy small,
.cart-line-total span,
.qty-field span {
    color: var(--muted);
}

.cart-line-meta {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 110px;
    gap: 12px;
    align-items: end;
}

.qty-field {
    display: grid;
    gap: 8px;
}

.qty-field input {
    width: 100%;
    padding: 12px 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
}

.cart-line-total {
    display: grid;
    gap: 8px;
}

.checkout-help-box {
    display: grid;
    gap: 14px;
}

.checkout-help-box strong {
    font-size: 1.06rem;
}

.checkout-help-box p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.payment-frame-grid {
    align-items: start;
}

.payment-frame-card {
    padding: 18px;
}

.payment-frame {
    display: block;
    width: 100%;
    min-height: 720px;
    overflow: hidden;
    background: #ffffff;
    border: 0;
    border-radius: 20px;
}

.payment-summary-card {
    position: sticky;
    top: 110px;
}

.payment-summary-card .portal-profile-list > div {
    color: #132238;
    background: #ffffff;
    border: 1px solid #dfe7f1;
}

.payment-summary-card .portal-profile-list span {
    color: #5f6f84;
}

.payment-summary-card .portal-profile-list strong {
    color: #132238;
}

.payment-result-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.payment-result-copy {
    max-width: 48ch;
    margin: 12px auto 0;
    color: var(--muted);
    line-height: 1.8;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--cyan);
    font-size: 0.88rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
    margin: 0;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero h1 {
    max-width: 12ch;
    font-size: clamp(3.1rem, 7.6vw, 6.4rem);
}

.hero-text,
.section-heading p,
.product-summary,
.workflow-card p,
.license-card p,
.proof-card p,
.contact-copy p,
.contact-card p,
.trust-band p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-text {
    max-width: 60ch;
    margin: 22px 0 0;
    font-size: 1.05rem;
}

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

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

.button,
.pay-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.pay-form button:hover,
.pay-form button:focus-visible {
    transform: translateY(-2px);
}

.button.primary,
.pay-form button {
    color: #061019;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), #9bf1ff);
    box-shadow: 0 14px 32px rgba(86, 212, 255, 0.22);
}

.button.secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.button.ghost {
    color: var(--muted);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.button.full,
.pay-form,
.pay-form button {
    width: 100%;
}

.hero-inline-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-inline-points span {
    padding: 10px 14px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.glass-card,
.product-card,
.workflow-card,
.license-card,
.proof-card,
.contact-card,
.trust-band article,
.message-strip {
    background: linear-gradient(180deg, rgba(18, 29, 44, 0.96), rgba(11, 18, 28, 0.96));
    border: 1px solid var(--panel-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.glass-card {
    height: 100%;
    padding: 24px;
}

.hero-suite-card {
    background:
        radial-gradient(circle at top right, rgba(86, 212, 255, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(18, 29, 44, 0.98), rgba(11, 18, 28, 0.98));
}

.glass-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 8px rgba(86, 224, 168, 0.12);
}

.hero-stack {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.suite-headline {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.suite-headline strong {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.suite-headline p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.mini-card {
    padding: 18px 18px 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-card strong {
    display: block;
    font-size: 1.06rem;
    margin-bottom: 8px;
}

.mini-card p,
.hero-meta span,
.contact-list span,
.price-box span,
.product-kicker,
.version-pill,
.proof-mark {
    color: var(--muted);
}

.mini-card p {
    margin: 0;
    line-height: 1.55;
}

.hero-track-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 8px;
}

.hero-track-top span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    padding: 7px 10px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
}

.accent-cyan {
    border-left: 4px solid var(--cyan);
}

.accent-amber {
    border-left: 4px solid var(--amber);
}

.accent-blue {
    border-left: 4px solid var(--blue);
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
}

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

.hero-meta div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.hero-meta strong,
.contact-list strong {
    display: block;
    margin-top: 6px;
    font-size: 1rem;
}

.message-strip {
    margin-top: 12px;
    padding: 18px 22px;
}

.message-strip p {
    margin: 0;
}

.message-strip-success {
    border-color: rgba(86, 224, 168, 0.28);
}

.message-strip-error {
    border-color: rgba(255, 125, 125, 0.32);
}

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

.trust-band article {
    padding: 22px;
}

.trust-band strong,
.workflow-card h3,
.license-card h3,
.contact-card h3,
.product-card h3 {
    display: block;
    margin: 0 0 10px;
}

.trust-band p,
.section-heading p,
.workflow-card p,
.license-card p,
.contact-card p,
.proof-card p {
    margin: 0;
}

.section {
    padding: 90px 0 0;
}

.section-heading {
    max-width: 720px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4.4vw, 3.7rem);
}

.section-heading p {
    margin-top: 18px;
    font-size: 1rem;
}

.product-grid,
.workflow-grid,
.license-cards,
.proof-grid,
.contact-grid {
    display: grid;
    gap: 18px;
}

.product-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.product-card {
    position: relative;
    padding: 24px;
    overflow: hidden;
}

.bundle-card {
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 178, 77, 0.15), transparent 32%),
        linear-gradient(180deg, rgba(18, 29, 44, 0.96), rgba(11, 18, 28, 0.96));
    border: 1px solid rgba(255, 178, 77, 0.18);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.bundle-card h3 {
    margin: 18px 0 10px;
    font-size: 1.34rem;
}

.bundle-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.bundle-card-head,
.bundle-summary-item,
.active-bundle-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.bundle-save-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    color: #221306;
    font-size: 0.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--amber), #ffd277);
    border-radius: 999px;
}

.bundle-feature-list {
    margin-top: 18px;
}

.bundle-price-box {
    display: grid;
    gap: 8px;
    margin-top: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.bundle-price-box strong {
    font-size: 1.6rem;
}

.bundle-price-box span,
.price-subnote,
.bundle-summary-item small,
.active-bundle-item span {
    color: var(--muted);
    line-height: 1.6;
}

.bundle-form {
    margin-top: 18px;
}

.product-card::after {
    content: "";
    position: absolute;
    inset: auto -40px -70px auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    opacity: 0.22;
    filter: blur(8px);
}

.campaign-sticker {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    color: #1d1300;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffd86d, #ffb24d 58%, #ff8f3a);
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(255, 178, 77, 0.28);
}

.tone-1::after {
    background: radial-gradient(circle, var(--cyan), transparent 62%);
}

.tone-2::after {
    background: radial-gradient(circle, var(--amber), transparent 62%);
}

.tone-3::after {
    background: radial-gradient(circle, var(--blue), transparent 62%);
}

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

.product-kicker,
.version-pill {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.version-pill {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.product-card h3 {
    margin-top: 16px;
    font-size: 1.45rem;
}

.product-showcase {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 24px;
    align-items: stretch;
}

.product-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    min-height: 100%;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.12), transparent 18%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.product-stage::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -58px;
    width: 200px;
    height: 200px;
    border-radius: 999px;
    opacity: 0.24;
    filter: blur(6px);
}

.tone-1 .product-stage::after {
    background: radial-gradient(circle, var(--cyan), transparent 64%);
}

.tone-2 .product-stage::after {
    background: radial-gradient(circle, var(--amber), transparent 64%);
}

.tone-3 .product-stage::after {
    background: radial-gradient(circle, var(--blue), transparent 64%);
}

.product-stage-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-mark {
    position: relative;
    z-index: 1;
    font-size: clamp(3.4rem, 7vw, 5.8rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
    font-weight: 900;
}

.product-mark-title {
    max-width: 11ch;
    font-size: clamp(2rem, 4.1vw, 3.2rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.product-stage-title {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.stage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stage-tags span {
    position: relative;
    z-index: 1;
    padding: 10px 12px;
    color: var(--muted);
    font-size: 0.84rem;
    border-radius: 999px;
    background: rgba(6, 12, 20, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-body {
    display: grid;
    align-content: center;
}

.product-summary {
    min-height: auto;
    margin: 14px 0 0;
}

.feature-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}

.feature-list li {
    position: relative;
    padding-left: 18px;
    color: #d9e5f5;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.price-box {
    display: grid;
    gap: 8px;
    margin-top: 22px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.price-box strong {
    font-size: 1.18rem;
}

.price-subnote {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
}

.product-actions {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.workflow-card,
.license-card,
.proof-card,
.contact-card {
    padding: 24px;
}

.workflow-card span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    color: #081018;
    font-weight: 800;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--amber), #ffd786);
}

.license-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 22px;
    align-items: start;
}

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

.text-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--cyan);
}

.proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.proof-card {
    min-height: 160px;
}

.proof-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    color: var(--cyan);
    font-size: 1.4rem;
    border-radius: 12px;
    background: rgba(86, 212, 255, 0.08);
}

.contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    align-items: start;
    margin-top: 28px;
}

.legal-page {
    padding-top: 56px;
}

.legal-heading {
    max-width: 880px;
}

.legal-heading h1 {
    margin: 0;
    line-height: 1;
    letter-spacing: -0.04em;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.legal-stack {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.legal-card {
    padding: 26px;
    background: linear-gradient(180deg, rgba(18, 29, 44, 0.96), rgba(11, 18, 28, 0.96));
    border: 1px solid var(--panel-border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.legal-card h2 {
    margin: 0 0 16px;
    font-size: 1.34rem;
}

.legal-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.legal-card p + p,
.legal-card p + .legal-list,
.legal-list + .legal-note {
    margin-top: 14px;
}

.legal-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
    color: #dce7f6;
    line-height: 1.7;
}

.legal-note {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.contact-list div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stack-actions {
    margin-top: 20px;
}

.download-support-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    margin-bottom: 22px;
}

.download-support-strip span {
    color: var(--text);
    font-weight: 600;
}

.download-support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.download-grid-wrap {
    padding: 26px;
}

.download-grid-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.download-grid-head strong {
    font-size: 1.1rem;
}

.download-grid-head span,
.download-card-copy p,
.download-card-copy span {
    color: var(--muted);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.download-card,
.download-empty {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.download-card-copy {
    display: grid;
    gap: 8px;
}

.download-card-copy strong {
    font-size: 1.08rem;
}

.download-card-copy p,
.download-card-copy span {
    margin: 0;
    line-height: 1.55;
    word-break: break-word;
}

.site-footer {
    padding: 54px 0 40px;
}

.footer-shell {
    padding: 28px;
    color: #132238;
    background:
        linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid #dfe7f1;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(4, 12, 24, 0.12);
}

.footer-top,
.footer-contact-grid,
.footer-bottom {
    display: grid;
    gap: 18px;
}

.footer-top {
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
    align-items: start;
    justify-content: space-between;
    padding-bottom: 18px;
}

.footer-contact-head h3,
.footer-location-head strong {
    margin: 0;
}

.footer-links-col a,
.footer-location-card p,
.footer-contact-head p,
.footer-contact-card span,
.footer-bottom p {
    color: #5f6f84;
}

.footer-location-card p,
.footer-contact-head p,
.footer-bottom p {
    margin: 12px 0 0;
    line-height: 1.7;
}

.footer-action-row,
.footer-location-actions,
.footer-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-brand-block,
.footer-links-col {
    display: grid;
    gap: 12px;
}

.footer-brand-block p {
    max-width: 58ch;
    margin: 0;
    color: #5f6f84;
    line-height: 1.8;
}

.footer-brand-block strong,
.footer-links-col strong {
    font-size: 1rem;
}

.footer-brand-block a,
.footer-links-col a {
    color: #4e6480;
    font-weight: 600;
}

.footer-links-right {
    justify-content: start;
    justify-self: end;
    min-width: 280px;
}

.footer-links-right strong {
    font-size: 1.05rem;
}

.footer-brand-meta {
    display: grid;
    gap: 8px;
    color: #4e6480;
    font-weight: 600;
}

.footer-brand-block a:hover,
.footer-brand-block a:focus-visible,
.footer-links-col a:hover,
.footer-links-col a:focus-visible {
    color: #11243a;
}

.footer-location-card,
.footer-contact-board {
    padding: 18px;
    background: #ffffff;
    border: 1px solid #d9e4f0;
    border-radius: 24px;
}

.footer-location-head,
.footer-contact-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.footer-location-head span,
.footer-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.84rem;
    font-weight: 700;
    border-radius: 999px;
}

.footer-location-head {
    align-items: center;
}

.footer-location-head small {
    display: block;
    margin-top: 4px;
    color: #6b7d92;
    font-size: 0.92rem;
}

.footer-location-head span {
    color: #1f5f95;
    background: #e8f1fa;
}

.footer-status-pill {
    color: #0d7a52;
    background: #e7f7ef;
}

.footer-map-card {
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid #e1e8f2;
    border-radius: 18px;
}

.footer-map-surface {
    position: relative;
    min-height: 160px;
    background:
        linear-gradient(135deg, #f4efe2 0%, #eef2f8 42%, #d5ddea 42%, #d5ddea 58%, #eef2f8 58%, #eef2f8 100%);
}

.footer-map-surface::before,
.footer-map-surface::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0 3px, transparent 3px),
        linear-gradient(rgba(255, 255, 255, 0.65) 0 3px, transparent 3px);
    background-size: 78px 78px;
    opacity: 0.55;
}

.footer-map-pin {
    position: absolute;
    top: 44%;
    left: 56%;
    width: 22px;
    height: 22px;
    background: #f04438;
    border-radius: 999px 999px 999px 0;
    transform: rotate(-45deg);
    box-shadow: 0 8px 20px rgba(240, 68, 56, 0.26);
}

.footer-map-pin::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 999px;
}

.footer-map-label {
    position: absolute;
    top: 54%;
    left: 62%;
    padding: 8px 12px;
    color: #d92d20;
    font-size: 0.86rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(17, 36, 58, 0.08);
}

.footer-location-actions,
.footer-action-row {
    margin-top: 18px;
}

.site-footer .button.secondary {
    color: #132238;
    background: #edf3f9;
    border: 1px solid #d7e2ee;
}

.site-footer .button.ghost {
    color: #486179;
    background: transparent;
    border: 1px solid #d7e2ee;
}

.footer-contact-board {
    margin-top: 18px;
}

.footer-contact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 18px;
}

.footer-contact-card {
    padding: 18px;
    background: #fbfdff;
    border: 1px solid #e3eaf3;
    border-radius: 18px;
}

.footer-contact-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.08rem;
    word-break: break-word;
}

.footer-contact-card-wide {
    grid-column: span 4;
}

.footer-info-rows {
    display: grid;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e6edf5;
}

.footer-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    background: #fbfdff;
    border: 1px solid #e3eaf3;
    border-radius: 16px;
}

.footer-info-row span {
    color: #62768e;
}

.footer-info-row strong {
    text-align: right;
}

.footer-info-row-highlight {
    background: #f6fbff;
    border-color: #cfe0f3;
}

.active-bundle-list,
.bundle-summary-list {
    display: grid;
    gap: 12px;
}

.active-bundle-list {
    margin-top: 16px;
}

.active-bundle-item,
.bundle-summary-item {
    padding: 14px 16px;
    background: #fbfdff;
    border: 1px solid #e3eaf3;
    border-radius: 16px;
}

.active-bundle-item strong,
.bundle-summary-item strong {
    white-space: nowrap;
}

.bundle-summary-box {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.footer-badge-row span {
    padding: 11px 16px;
    font-size: 0.92rem;
    font-weight: 700;
    background: #ffffff;
    border: 1px solid #d9e4f0;
    border-radius: 999px;
}

.footer-paytr-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
}

.footer-paytr-logo {
    display: block;
    width: auto;
    height: 22px;
}

.footer-bottom {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e1e8f2;
}

.footer-bottom p {
    margin: 0;
}

.legal-footer .footer-shell {
    padding: 22px 24px;
}

.legal-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.7fr);
    gap: 18px;
    align-items: start;
}

.legal-footer-grid strong {
    display: block;
    margin-bottom: 8px;
}

.legal-footer-grid p,
.legal-footer-grid a {
    color: #5f6f84;
}

.legal-footer-bottom {
    margin-top: 18px;
}

.contact-page-grid,
.contact-page-bottom {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.contact-page-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
}

.contact-page-bottom {
    grid-template-columns: 1fr;
}

.contact-page-card,
.contact-page-map,
.contact-page-sidecard,
.contact-page-meta,
.contact-page-hours {
    padding: 18px;
    color: #132238;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid #dfe7f1;
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(4, 12, 24, 0.1);
}

.contact-page-card h2,
.contact-page-sidecard h2,
.contact-page-meta h2,
.contact-page-hours h2 {
    margin: 0;
    font-size: 1.9rem;
}

.contact-page-card p,
.contact-page-sidecard p,
.contact-page-meta p,
.contact-page-hours p {
    margin: 8px 0 0;
    color: #62768e;
}

.contact-page-map p a {
    color: #1f5f95;
    font-weight: 700;
}

.contact-page-map-embed {
    position: relative;
    min-height: 630px;
    margin-top: 16px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #e1e8f2;
    background: #eef3f8;
}

.contact-page-map-frame {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 630px;
    border: 0;
}

.contact-page-sidecard-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.contact-page-open-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    color: #0d7a52;
    font-size: 0.86rem;
    font-weight: 700;
    background: #e7f7ef;
    border-radius: 999px;
}

.contact-page-detail-list,
.contact-page-company-list,
.contact-page-hours-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.contact-page-company-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.contact-page-detail,
.contact-page-company-item,
.contact-page-hours-item {
    padding: 18px;
    background: #fbfdff;
    border: 1px solid #e3eaf3;
    border-radius: 18px;
}

.contact-page-detail strong,
.contact-page-company-item strong,
.contact-page-hours-item strong {
    display: block;
    color: #182b44;
}

.contact-page-detail span,
.contact-page-company-item span {
    display: block;
    margin-top: 8px;
    color: #315478;
    line-height: 1.7;
}

.contact-page-company-item {
    min-height: 100%;
}

.contact-page-whatsapp-list,
.contact-page-action-stack {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.contact-page-whatsapp-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid #dfe7f1;
    border-radius: 18px;
}

.contact-page-whatsapp-item span {
    color: #1a7f49;
    font-weight: 700;
}

.contact-page-whatsapp-item strong {
    color: #54708f;
}

.contact-page-action-stack .button.primary {
    background: linear-gradient(135deg, #28cf63, #30d86b);
    box-shadow: 0 14px 30px rgba(40, 207, 99, 0.22);
}

.contact-page-hours-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.portal-auth-grid,
.portal-overview-grid,
.portal-data-grid,
.portal-summary-grid,
.portal-profile-list,
.portal-order-billing {
    display: grid;
    gap: 18px;
}

.portal-auth-grid,
.portal-overview-grid,
.portal-data-grid {
    margin-top: 30px;
}

.portal-auth-grid,
.portal-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portal-data-grid {
    grid-template-columns: 1.05fr 0.95fr;
}

.portal-data-grid-single {
    grid-template-columns: 1fr;
}

.portal-card {
    padding: 22px;
    color: #132238;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid #dfe7f1;
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(4, 12, 24, 0.1);
}

.portal-card h2,
.portal-card p {
    margin-top: 0;
}

.portal-card .form-grid span,
.portal-card .form-note {
    color: #7f98b8;
}

.portal-card .form-grid input,
.portal-card .form-grid select,
.portal-card .form-grid textarea {
    color: #132238;
    background: #ffffff;
    border: 1px solid #d5e1ef;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.portal-card .form-grid input::placeholder,
.portal-card .form-grid textarea::placeholder {
    color: #8da5c2;
}

.portal-card .form-grid input:focus,
.portal-card .form-grid select:focus,
.portal-card .form-grid textarea:focus {
    border-color: #6ec8ec;
    box-shadow: 0 0 0 4px rgba(86, 212, 255, 0.12);
}

.portal-card .button.secondary {
    color: #132238;
    font-weight: 700;
    background: #edf4fb;
    border: 1px solid #d0deec;
}

.portal-card .button.ghost {
    color: #4f6782;
    background: transparent;
    border: 1px solid #d0deec;
}

.portal-card input:-webkit-autofill,
.portal-card input:-webkit-autofill:hover,
.portal-card input:-webkit-autofill:focus,
.portal-card textarea:-webkit-autofill,
.portal-card select:-webkit-autofill {
    -webkit-text-fill-color: #132238;
    box-shadow: 0 0 0 1000px #ffffff inset;
    transition: background-color 9999s ease-in-out 0s;
}

.portal-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.portal-card-head p {
    margin: 6px 0 0;
    color: #5f6f84;
}

.portal-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.portal-summary-item,
.portal-profile-list > div,
.portal-order-billing > div {
    padding: 16px 18px;
    background: #fbfdff;
    border: 1px solid #e3eaf3;
    border-radius: 18px;
}

.portal-summary-item span,
.portal-profile-list span,
.portal-order-billing span,
.portal-order-head span {
    display: block;
    color: #5f6f84;
}

.portal-summary-item strong,
.portal-profile-list strong,
.portal-order-billing strong,
.portal-order-head strong {
    display: block;
    margin-top: 8px;
}

.portal-empty {
    color: #5f6f84;
    line-height: 1.7;
}

.portal-license-list {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.portal-license-card {
    display: grid;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #bfd0e3;
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(17, 36, 58, 0.08);
}

.portal-license-top,
.portal-license-bottom {
    display: grid;
    gap: 0;
}

.portal-license-top {
    grid-template-columns: minmax(160px, 0.8fr) minmax(280px, 1.35fr) 110px minmax(290px, 1.15fr);
    background: linear-gradient(180deg, #f7fbff, #eef5fc);
    border-bottom: 1px solid #c8d8e8;
}

.portal-license-bottom {
    grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(120px, 0.55fr));
}

.portal-license-title,
.portal-license-status,
.portal-license-device,
.portal-license-keybox,
.portal-license-bottom > div {
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 16px 18px;
}

.portal-license-top > *:not(:last-child),
.portal-license-bottom > *:not(:last-child) {
    border-right: 1px solid #d2dfec;
}

.portal-license-bottom > div {
    background: #ffffff;
}

.portal-license-top span,
.portal-license-device span,
.portal-license-bottom span {
    color: #5f6f84;
    font-size: 0.9rem;
}

.portal-license-top strong,
.portal-license-device code,
.portal-license-bottom strong {
    color: #132238;
    font-size: 1rem;
}

.portal-license-keybox small {
    display: block;
    color: #62768e;
    font-size: 0.9rem;
    line-height: 1.5;
}

.portal-license-status-inline {
    align-content: center;
    background: rgba(255, 255, 255, 0.48);
}

.portal-license-device-inline {
    background: rgba(255, 255, 255, 0.42);
}

.portal-license-device-inline code {
    white-space: nowrap;
    overflow-x: auto;
    padding-bottom: 0;
}

.portal-renew-inline {
    justify-content: flex-start;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.62);
}

.portal-table-wrap {
    overflow-x: auto;
    margin-top: 18px;
}

.portal-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1320px;
}

.portal-table th,
.portal-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid #e3eaf3;
    vertical-align: top;
}

.portal-table th {
    color: #5f6f84;
    font-size: 0.88rem;
    font-weight: 700;
}

.portal-table td small {
    display: block;
    margin-top: 6px;
    color: #5f6f84;
}

.portal-table th:first-child,
.portal-table td:first-child {
    width: 160px;
}

.portal-table th:nth-child(2),
.portal-table td:nth-child(2) {
    min-width: 320px;
}

.portal-table th:nth-child(3),
.portal-table td:nth-child(3) {
    width: 280px;
}

.portal-table th:nth-child(8),
.portal-table td:nth-child(8) {
    width: 320px;
}

.portal-table code {
    display: inline-block;
    white-space: nowrap;
    word-break: normal;
    font-size: 0.94rem;
}

.portal-renew-form,
.portal-action-stack {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.portal-renew-form select {
    flex: 1 1 180px;
    min-height: 48px;
    padding: 12px 14px;
    color: #132238;
    background: #ffffff;
    border: 1px solid #d5e1ef;
    border-radius: 14px;
}

.portal-renew-form .button {
    flex: 0 0 auto;
    min-width: 124px;
    white-space: nowrap;
}

.portal-order-list {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.portal-order-item {
    padding: 18px;
    background: #fbfdff;
    border: 1px solid #e3eaf3;
    border-radius: 20px;
}

.portal-order-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.portal-order-meta {
    text-align: right;
}

.portal-inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.portal-inline-list li {
    padding: 8px 12px;
    color: #315478;
    font-weight: 600;
    background: #eef4fb;
    border-radius: 999px;
}

.portal-order-billing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
}

.portal-billing-address {
    grid-column: 1 / -1;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 550ms ease, transform 550ms ease;
}

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

@media (max-width: 1120px) {
    .showcase-slide-grid,
    .hero,
    .license-layout,
    .contact-grid,
    .checkout-grid,
    .footer-top,
    .footer-bottom,
    .legal-footer-grid,
    .contact-page-grid,
    .contact-page-bottom {
        grid-template-columns: 1fr;
    }

    .contact-page-company-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portal-auth-grid,
    .portal-overview-grid,
    .portal-data-grid {
        grid-template-columns: 1fr;
    }

    .portal-license-top,
    .portal-license-bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid,
    .bundle-grid,
    .workflow-grid,
    .proof-grid,
    .license-cards,
    .trust-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .footer-contact-card-wide {
        grid-column: span 2;
    }

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

    .cart-overview,
    .checkout-summary-head,
    .cart-line {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .topbar {
        border-radius: 24px;
    }

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

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        background: rgba(8, 15, 24, 0.96);
        border: 1px solid rgba(151, 191, 255, 0.12);
        border-radius: 24px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
    }

    .showcase-slide {
        min-height: 0;
        padding: 24px 24px 92px;
    }

    .showcase-slide-media {
        padding: 0;
    }

    .showcase-slide h2 {
        max-width: 100%;
    }

    .showcase-slide-metrics {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 40px;
    }

    .hero h1 {
        max-width: 100%;
    }

    .product-grid,
    .bundle-grid,
    .workflow-grid,
    .proof-grid,
    .license-cards,
    .trust-band,
    .contact-list,
    .form-grid,
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-company-list {
        grid-template-columns: 1fr;
    }

    .portal-summary-grid,
    .portal-order-billing {
        grid-template-columns: 1fr;
    }

    .portal-license-top,
    .portal-license-bottom {
        grid-template-columns: 1fr;
    }

    .portal-license-top > *,
    .portal-license-bottom > * {
        border-right: 0;
    }

    .portal-license-top > *:not(:last-child),
    .portal-license-bottom > *:not(:last-child) {
        border-bottom: 1px solid #e3eaf3;
    }

    .portal-card-head,
    .portal-order-head {
        flex-direction: column;
    }

    .portal-order-meta {
        text-align: left;
    }

    .footer-contact-card-wide {
        grid-column: auto;
    }

    .footer-links-right {
        justify-self: start;
        min-width: 0;
    }

    .product-actions,
    .feature-list,
    .hero-meta-compact {
        grid-template-columns: 1fr;
    }

    .cart-line-meta {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    .topbar,
    .ticker-band,
    .showcase-slider,
    .hero,
    .section,
    .site-footer,
    .trust-band,
    .message-strip {
        width: min(calc(100% - 20px), var(--max-width));
    }

    .topbar {
        padding: 14px;
    }

    .brand-logo {
        width: 96px;
    }

    .hero-actions,
    .product-actions,
    .stack-actions,
    .showcase-slide-actions,
    .showcase-slider-controls,
    .download-support-strip,
    .download-grid-head {
        flex-direction: column;
    }

    .download-support-strip,
    .download-grid-head {
        align-items: flex-start;
    }

    .glass-card,
    .product-card,
    .workflow-card,
    .license-card,
    .proof-card,
    .contact-card,
    .portal-card,
    .footer-shell,
    .footer-location-card,
    .footer-contact-board {
        padding: 20px;
    }

    .footer-location-head,
    .footer-contact-head,
    .footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
    }

    .footer-info-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .showcase-slide {
        padding: 22px 22px 94px;
        border-radius: 26px;
    }

    .showcase-slide-media {
        padding: 0;
    }

    .showcase-slide-panel {
        padding: 18px;
        border-radius: 22px;
    }

    .showcase-slider-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .showcase-slider-controls {
        right: 22px;
        bottom: 22px;
        left: 22px;
    }

}
