:root {
    --canvas: #efe8db;
    --canvas-strong: #e2d7c4;
    --ink: #111111;
    --ink-soft: #1b1b1b;
    --text: #1f1912;
    --muted: #6d6458;
    --line: rgba(23, 18, 12, 0.12);
    --line-strong: rgba(255, 255, 255, 0.14);
    --gold: #b98a3b;
    --gold-soft: #d9b978;
    --iris: #9865ca;
    --iris-soft: #c8abeb;
    --white: #fffdf8;
    --success: #356c51;
    --shadow-soft: 0 20px 60px rgba(22, 15, 8, 0.08);
    --shadow-strong: 0 32px 90px rgba(7, 4, 2, 0.18);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 34px;
    --radius-pill: 999px;
    --max-width: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Instrument Sans", sans-serif;
    color: var(--text);
    line-height: 1.6;
    background:
        radial-gradient(circle at top left, rgba(185, 138, 59, 0.18), transparent 30%),
        linear-gradient(180deg, #f5f1e8 0%, var(--canvas) 36%, #f6f2eb 100%);
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(17, 17, 17, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    opacity: 0.5;
    z-index: -1;
}

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

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

code {
    font-family: inherit;
    font-size: 0.9em;
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.eyebrow::before {
    content: "";
    width: 2.4rem;
    height: 1px;
    background: currentColor;
}

.site-header {
    position: relative;
    z-index: 10;
}

.brand-band {
    width: 100%;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.brand-band__inner {
    width: min(var(--max-width), calc(100% - 48px));
    min-height: 112px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
}

.brand-mark img {
    height: clamp(46px, 5vw, 72px);
    width: auto;
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 18px 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
}

.menu-toggle__label {
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.menu-toggle__icon {
    width: 18px;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle__icon span {
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active .menu-toggle__icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .menu-toggle__icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.menu-panel {
    background: #0d0d0d;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform-origin: top;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.menu-panel.is-open {
    opacity: 1;
    transform: translateY(0);
}

.menu-panel__inner {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
    padding: 22px 0 26px;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
    gap: 32px;
}

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

.menu-panel__nav a,
.menu-panel__note {
    min-height: 82px;
    padding: 18px 20px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
}

.menu-panel__nav a {
    display: flex;
    align-items: flex-end;
    font-family: "Fraunces", serif;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1;
    transition: background 180ms ease, border-color 180ms ease;
}

.menu-panel__nav a:hover {
    background: rgba(185, 138, 59, 0.12);
    border-color: rgba(185, 138, 59, 0.5);
}

.menu-panel__note {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.7rem;
}

.menu-panel__note span {
    color: var(--gold-soft);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.menu-panel__note p {
    color: rgba(255, 255, 255, 0.74);
    max-width: 28ch;
}

.hero {
    padding: 68px 0 34px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 52px;
    align-items: center;
}

.hero-copy {
    padding: 18px 0;
    animation: rise-in 520ms ease both;
}

.hero-copy h1 {
    margin-top: 18px;
    font-family: "Fraunces", serif;
    font-size: clamp(3.5rem, 6.9vw, 6.2rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.06em;
    max-width: 10ch;
}

.hero-lead {
    margin-top: 22px;
    max-width: 34rem;
    font-size: 1.08rem;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-chips span {
    padding: 0.72rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: rgba(255, 253, 248, 0.55);
    color: var(--text);
    box-shadow: var(--shadow-soft);
}

.suite-panel {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 248, 0.72);
    border: 1px solid rgba(23, 18, 12, 0.12);
    box-shadow: var(--shadow-soft);
    animation: rise-in 620ms ease 80ms both;
}

.suite-panel::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 28px;
    border: 1px solid rgba(23, 18, 12, 0.08);
    pointer-events: none;
}

.suite-panel__topline,
.suite-grid {
    position: relative;
    z-index: 1;
}

.suite-panel__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.suite-panel__eyebrow,
.suite-panel__note {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.suite-panel__eyebrow {
    color: var(--ink);
}

.suite-panel__note {
    color: var(--muted);
}

.suite-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.suite-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    border-radius: 30px;
    border: 1px solid transparent;
}

.suite-card--dark {
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(185, 138, 59, 0.22), transparent 28%),
        linear-gradient(165deg, #080808 0%, #141311 70%, #1b1713 100%);
    box-shadow: var(--shadow-strong);
}

.suite-card--light {
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(152, 101, 202, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(246, 240, 234, 0.96) 100%);
    border-color: rgba(23, 18, 12, 0.1);
    box-shadow: var(--shadow-soft);
}

.suite-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.suite-card__tag,
.suite-card__type {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.suite-card__tag {
    background: rgba(185, 138, 59, 0.16);
    color: var(--gold-soft);
}

.suite-card__tag--iris {
    background: rgba(152, 101, 202, 0.12);
    color: #6f3ea7;
}

.suite-card__type {
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    opacity: 0.78;
}

.suite-card--light .suite-card__type {
    background: rgba(17, 17, 17, 0.05);
    opacity: 1;
    color: var(--muted);
}

.suite-card__logo {
    width: min(180px, 100%);
    margin-top: 18px;
    padding: 14px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.suite-card__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.suite-card__body {
    margin-top: 18px;
}

.suite-card__kicker {
    color: var(--gold-soft);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.suite-card__kicker--iris {
    color: var(--iris);
}

.suite-card__body h2 {
    margin-top: 10px;
    font-family: "Fraunces", serif;
    font-size: clamp(1.65rem, 2vw, 2.35rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.suite-card__body p {
    margin-top: 14px;
    color: inherit;
    opacity: 0.82;
}

.suite-card__list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.suite-card__list li {
    position: relative;
    padding-left: 18px;
    font-size: 0.95rem;
}

.suite-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.6;
}

.suite-card__cta {
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
}

.product-spotlight {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(185, 138, 59, 0.3), transparent 28%),
        linear-gradient(165deg, #080808 0%, #141311 70%, #1b1713 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-strong);
    animation: rise-in 620ms ease 80ms both;
}

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

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

.product-spotlight__tag,
.product-spotlight__edition {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.product-spotlight__tag {
    background: rgba(185, 138, 59, 0.16);
    color: var(--gold-soft);
}

.product-spotlight__edition {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
}

.product-spotlight__body {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.product-spotlight__logo {
    flex: 0 1 200px;
    width: min(22vw, 200px);
    max-width: 25%;
    min-width: 148px;
    padding: 16px;
    border-radius: 30px;
    background: rgba(248, 244, 236, 0.95);
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.product-spotlight__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-spotlight__content {
    flex: 1;
    min-width: 0;
}

.product-spotlight__kicker {
    color: var(--gold-soft);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-spotlight__content h2 {
    margin-top: 12px;
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 3vw, 3.1rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.045em;
    max-width: 12ch;
}

.product-spotlight__description {
    margin-top: 16px;
    max-width: 56ch;
    color: rgba(255, 255, 255, 0.78);
}

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

.product-spotlight__features li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.product-spotlight__features li::before {
    content: "";
    position: absolute;
    top: 0.68rem;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-soft);
}

.download-box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.download-box__label {
    display: inline-block;
    color: var(--gold-soft);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.download-box__note {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.68);
}

.download-box__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.download-box__actions .btn {
    flex: 1 1 188px;
    min-width: 188px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 14px 32px rgba(15, 12, 9, 0.15);
}

.btn-primary:hover {
    background: #222;
}

.btn-secondary {
    border-color: rgba(23, 18, 12, 0.18);
    background: rgba(255, 253, 248, 0.65);
    color: var(--text);
}

.btn-secondary:hover {
    background: rgba(255, 253, 248, 0.95);
}

.btn-light {
    background: var(--white);
    color: var(--ink);
}

.btn-light:hover {
    background: #f0e7d9;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.54);
    background: rgba(255, 255, 255, 0.04);
    cursor: default;
}

.btn-block {
    width: 100%;
}

.section-heading--centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.product-section {
    padding: 64px 0 80px;
}

.product-section--pseudonymia {
    padding-top: 34px;
}

.product-section--iuriq {
    padding-top: 18px;
}

.section-heading--product {
    max-width: 56rem;
}

.product-section__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 30px;
    align-items: start;
}

.product-section__main {
    display: grid;
    gap: 22px;
}

.product-section__aside {
    display: grid;
    gap: 18px;
}

.product-story {
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
}

.product-story--dark {
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(185, 138, 59, 0.24), transparent 28%),
        linear-gradient(165deg, #080808 0%, #141311 70%, #1b1713 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-story__header {
    display: flex;
    gap: 22px;
    align-items: center;
}

.product-story__logo {
    width: min(180px, 100%);
    min-width: 150px;
    padding: 14px;
    border-radius: 28px;
    background: rgba(248, 244, 236, 0.95);
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.product-story__logo img {
    width: 100%;
    height: auto;
}

.product-story__kicker {
    color: var(--gold-soft);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-story__kicker--iris {
    color: var(--iris-soft);
}

.product-story__header h3,
.iuriq-hero-card__brand h3 {
    margin-top: 10px;
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.product-story__lead {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.8);
}

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

.product-story__list li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.84);
}

.product-story__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-soft);
}

.download-slab {
    padding: 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, #121212 0%, #1c1a16 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-strong);
}

.future-product {
    padding: 28px 0 36px;
}

.future-product__intro {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
    gap: 26px;
    align-items: stretch;
}

.section-heading--compact {
    margin-bottom: 0;
    align-self: center;
}

.future-product__panel {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(152, 101, 202, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255, 253, 248, 0.9) 0%, rgba(249, 244, 236, 0.96) 100%);
    border: 1px solid rgba(23, 18, 12, 0.12);
    box-shadow: var(--shadow-soft);
}

.future-product__panel::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 28px;
    border: 1px solid rgba(152, 101, 202, 0.16);
    pointer-events: none;
}

.future-product__topline,
.future-product__pills,
.future-product__brand {
    position: relative;
    z-index: 1;
}

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

.future-product__tag,
.future-product__edition {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.future-product__tag {
    background: rgba(152, 101, 202, 0.12);
    color: #6f3ea7;
}

.future-product__edition {
    background: rgba(17, 17, 17, 0.05);
    color: var(--muted);
}

.future-product__brand {
    display: grid;
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    gap: 24px;
    margin-top: 26px;
    align-items: center;
}

.future-product__logo {
    padding: 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(23, 18, 12, 0.08);
    box-shadow: 0 16px 42px rgba(22, 15, 8, 0.08);
}

.future-product__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.future-product__kicker {
    color: var(--iris);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.future-product__headline h3 {
    margin-top: 10px;
    font-family: "Fraunces", serif;
    font-size: clamp(1.85rem, 2.8vw, 2.8rem);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -0.04em;
    max-width: 14ch;
}

.future-product__headline p {
    margin-top: 14px;
    max-width: 52ch;
    color: var(--muted);
}

.future-product__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.future-product__pills span {
    min-height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(152, 101, 202, 0.12);
    color: var(--ink-soft);
}

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

.future-feature-card {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 253, 248, 0.62);
    border: 1px solid rgba(23, 18, 12, 0.1);
    box-shadow: var(--shadow-soft);
}

.future-feature-card h3 {
    font-size: 1.08rem;
    margin-bottom: 0.55rem;
}

.future-feature-card p {
    color: var(--muted);
}

.future-product__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
    padding: 24px 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.96) 0%, rgba(38, 30, 45, 0.96) 100%);
    color: var(--white);
    box-shadow: var(--shadow-strong);
}

.future-product__footer p {
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.78);
}

.iuriq-showcase {
    display: grid;
    gap: 24px;
}

.iuriq-hero-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(152, 101, 202, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255, 253, 248, 0.92) 0%, rgba(249, 244, 236, 0.96) 100%);
    border: 1px solid rgba(23, 18, 12, 0.12);
    box-shadow: var(--shadow-soft);
}

.iuriq-hero-card__brand {
    display: grid;
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.iuriq-hero-card__logo {
    padding: 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(23, 18, 12, 0.08);
}

.iuriq-hero-card__logo img {
    width: 100%;
    height: auto;
}

.iuriq-hero-card__brand p:last-child {
    margin-top: 14px;
    color: var(--muted);
}

.signals {
    padding: 16px 0 44px;
}

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

.signal-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 253, 248, 0.56);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.signal-card__value {
    display: inline-block;
    margin-bottom: 18px;
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    color: var(--ink);
}

.signal-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
}

.signal-card p {
    color: var(--muted);
}

.workflow,
.pricing {
    padding: 64px 0 80px;
}

.section-heading {
    max-width: 48rem;
    margin-bottom: 32px;
}

.section-heading h2 {
    margin-top: 16px;
    font-family: "Fraunces", serif;
    font-size: clamp(2.4rem, 4vw, 4.3rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.section-heading p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading--left {
    margin-bottom: 0;
}

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

.workflow-step {
    position: relative;
    min-height: 240px;
    padding: 26px;
    border-radius: 30px;
    background: rgba(255, 253, 248, 0.7);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.workflow-step__index {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    margin-bottom: 40px;
    border-radius: var(--radius-pill);
    background: var(--ink);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.workflow-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.workflow-step p {
    color: var(--muted);
}

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 36px;
    align-items: start;
}

.pricing-card {
    padding: 30px;
    border-radius: 32px;
    background: linear-gradient(180deg, #121212 0%, #1c1a16 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-strong);
}

.pricing-card__tag {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    background: rgba(185, 138, 59, 0.16);
    color: var(--gold-soft);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pricing-card__amount {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 20px;
}

.pricing-card__amount strong {
    font-family: "Fraunces", serif;
    font-size: clamp(3.4rem, 6vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.pricing-card__amount span {
    color: rgba(255, 255, 255, 0.66);
}

.pricing-card__list {
    list-style: none;
    margin: 26px 0 28px;
}

.pricing-card__list li {
    position: relative;
    padding: 0.7rem 0 0.7rem 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-soft);
}

.site-footer {
    background: #060606;
    color: var(--white);
    padding: 42px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: 24px;
    align-items: end;
}

.site-footer__brand img {
    height: 28px;
    width: auto;
}

.site-footer__brand p {
    max-width: 34rem;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.66);
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px 22px;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__copy {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.9rem;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .menu-panel__inner,
    .hero-grid,
    .suite-grid,
    .future-product__intro,
    .product-section__layout,
    .pricing-layout,
    .signals-grid,
    .workflow-grid,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .menu-panel__nav {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 48px;
    }

    .suite-panel__topline,
    .product-spotlight__body,
    .download-box,
    .future-product__footer,
    .product-story__header {
        flex-direction: column;
        align-items: stretch;
    }

    .future-product__brand,
    .future-product__features,
    .iuriq-hero-card__brand,
    .product-story__list {
        grid-template-columns: 1fr;
    }

    .suite-card__logo,
    .product-spotlight__logo {
        width: min(220px, 100%);
        max-width: 220px;
    }

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

    .download-box__actions {
        justify-content: flex-start;
    }

    .future-product__footer .btn {
        width: 100%;
    }

    .site-footer__links {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .container,
    .brand-band__inner,
    .menu-panel__inner {
        width: min(var(--max-width), calc(100% - 32px));
    }

    .brand-band__inner {
        min-height: 92px;
    }

    .menu-toggle {
        padding: 0 14px 0 16px;
        min-height: 46px;
    }

    .menu-toggle__label {
        display: none;
    }

    .hero-copy h1 {
        font-size: clamp(2.9rem, 13vw, 4.2rem);
    }

    .hero-lead,
    .section-heading p,
    .signal-card p,
    .workflow-step p {
        font-size: 0.98rem;
    }

    .product-spotlight,
    .suite-panel,
    .suite-card,
    .product-story,
    .download-slab,
    .future-product__panel,
    .iuriq-hero-card,
    .future-feature-card,
    .future-product__footer,
    .signal-card,
    .workflow-step,
    .pricing-card {
        padding: 22px;
    }

    .product-spotlight__topline,
    .suite-card__head,
    .future-product__topline {
        flex-wrap: wrap;
    }

    .suite-card__body h2,
    .product-spotlight__content h2,
    .future-product__headline h3,
    .product-story__header h3,
    .iuriq-hero-card__brand h3,
    .section-heading h2 {
        font-size: clamp(1.9rem, 10vw, 3rem);
    }

    .btn,
    .btn-light,
    .btn-ghost {
        width: 100%;
    }
}
