:root {
    --iw-home-bg: #07080a;
    --iw-home-panel: #0d0f12;
    --iw-home-panel-2: #111318;
    --iw-home-line: rgba(214, 178, 105, .17);
    --iw-home-line-soft: rgba(255, 255, 255, .07);
    --iw-home-gold: #d4ad63;
    --iw-home-gold-bright: #edcf8e;
    --iw-home-text: #f2f0ea;
    --iw-home-muted: #9ca1aa;
    --iw-home-serif: Georgia, "Times New Roman", serif;
}

html {
    scroll-behavior: smooth;
}

body.iwrite-home-page {
    margin: 0;
    overflow-x: hidden;
    background: var(--iw-home-bg);
    color: var(--iw-home-text);
}

body.iwrite-home-page::before {
    content: "";
    position: fixed;
    z-index: -2;
    inset: 0;
    background:
        radial-gradient(circle at 78% 12%, rgba(200, 158, 76, .055), transparent 26rem),
        linear-gradient(180deg, #090a0c 0%, #07080a 44%, #090a0c 100%);
    pointer-events: none;
}

.iw-home {
    position: relative;
    isolation: isolate;
    overflow: clip;
    color: var(--iw-home-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.iw-home *,
.iw-home *::before,
.iw-home *::after {
    box-sizing: border-box;
}

.iw-home a {
    color: inherit;
}

.iw-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.iw-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: #b89c69;
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .2em;
}

.iw-kicker > span {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 173, 99, .2), var(--iw-home-gold));
}

.iw-hero {
    position: relative;
    min-height: calc(100svh - var(--er-shared-header-height, 76px));
    display: grid;
    place-items: center;
    padding: clamp(64px, 8vw, 110px) 0 90px;
    border-bottom: 1px solid rgba(255, 255, 255, .045);
}

.iw-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -22%;
    bottom: -42%;
    width: 72%;
    aspect-ratio: 1;
    border: 1px solid rgba(212, 173, 99, .035);
    border-radius: 50%;
    box-shadow:
        0 0 0 110px rgba(212, 173, 99, .012),
        0 0 0 220px rgba(212, 173, 99, .008);
}

.iw-hero__ambient,
.iw-hero__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.iw-hero__ambient {
    z-index: -2;
    overflow: hidden;
}

.iw-hero__grid {
    opacity: .22;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(circle at 72% 42%, #000 0%, transparent 58%);
    mask-image: radial-gradient(circle at 72% 42%, #000 0%, transparent 58%);
}

.iw-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.iw-hero__orb--one {
    top: 2%;
    right: 11%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(206, 161, 75, .08), rgba(206, 161, 75, 0) 68%);
    animation: iwOrbDrift 11s ease-in-out infinite alternate;
}

.iw-hero__orb--two {
    left: 5%;
    bottom: 7%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(150, 126, 82, .035), transparent 70%);
    animation: iwOrbDrift 14s ease-in-out -5s infinite alternate-reverse;
}

.iw-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.iw-hero__copy {
    position: relative;
    z-index: 4;
}

.iw-hero__copy h1,
.iw-section-heading h2,
.iw-voice__copy h2,
.iw-final-cta h2 {
    margin: 0;
    font-family: var(--iw-home-serif);
    font-weight: 400;
    letter-spacing: -.04em;
}

.iw-hero__copy h1 {
    max-width: 690px;
    font-size: clamp(3rem, 5.3vw, 5.35rem);
    line-height: .96;
}

.iw-hero__copy h1 em,
.iw-section-heading h2 em,
.iw-voice__copy h2 em,
.iw-final-cta h2 em {
    color: var(--iw-home-gold-bright);
    font-weight: 400;
}

.iw-hero__lead {
    max-width: 620px;
    margin: 28px 0 0;
    color: #aeb2b9;
    font-size: clamp(1rem, 1.3vw, 1.16rem);
    line-height: 1.75;
}

.iw-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.iw-button {
    position: relative;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 9px;
    text-decoration: none;
    font-size: .89rem;
    font-weight: 750;
    letter-spacing: .01em;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.iw-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    transition: transform .2s ease;
}

.iw-button:hover svg,
.iw-button:focus-visible svg {
    transform: translateX(3px);
}

.iw-button--primary {
    border-color: #d1ac68;
    background: linear-gradient(135deg, #e0bf7e, #b98c45);
    color: #11100e !important;
    box-shadow: 0 14px 35px rgba(126, 90, 36, .18), inset 0 1px 0 rgba(255,255,255,.45);
}

.iw-button--primary:hover,
.iw-button--primary:focus-visible {
    transform: translateY(-2px);
    border-color: #ebcf96;
    background: linear-gradient(135deg, #e9ca8b, #c69a50);
    box-shadow: 0 18px 42px rgba(126, 90, 36, .24), inset 0 1px 0 rgba(255,255,255,.5);
    outline: none;
}

.iw-button--ghost {
    background: rgba(255, 255, 255, .018);
    color: #d7d9dd !important;
}

.iw-button--ghost:hover,
.iw-button--ghost:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(212, 173, 99, .28);
    background: rgba(212, 173, 99, .045);
    color: #efd69f !important;
    outline: none;
}

.iw-button--large {
    min-height: 54px;
    padding-inline: 26px;
}

.iw-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 28px;
    color: #747983;
    font-size: .72rem;
    letter-spacing: .03em;
}

.iw-hero__trust span {
    position: relative;
    padding-left: 13px;
}

.iw-hero__trust span::before {
    content: "";
    position: absolute;
    top: .48em;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #b99050;
    box-shadow: 0 0 8px rgba(212, 173, 99, .45);
}

.iw-hero__visual {
    position: relative;
    min-width: 0;
    perspective: 1200px;
}

.iw-stage {
    --iw-rx: 0deg;
    --iw-ry: 0deg;
    position: relative;
    min-height: 570px;
    transform: rotateX(var(--iw-rx)) rotateY(var(--iw-ry));
    transform-style: preserve-3d;
    transition: transform .18s ease-out;
}

.iw-stage__halo {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 82%;
    height: 78%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 171, 92, .09), rgba(214, 171, 92, 0) 66%);
    filter: blur(15px);
    animation: iwHalo 5s ease-in-out infinite alternate;
}

.iw-stage__rail {
    position: absolute;
    z-index: 6;
    top: 105px;
    left: -18px;
    display: grid;
    gap: 22px;
    color: #4d5159;
    font: 700 .6rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: .08em;
    transform: translateZ(24px);
}

.iw-stage__rail span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-left: 1px solid rgba(255,255,255,.07);
}

.iw-stage__rail span.is-active {
    border-color: #c49a52;
    color: #caa964;
}

.iw-manuscript {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 10px;
    width: min(500px, calc(100% - 34px));
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.105);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.025), transparent 20%),
        #0d0f12;
    box-shadow: 0 42px 95px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.035);
    transform: translateZ(36px) rotateY(-2deg) rotateX(1deg);
    animation: iwManuscriptFloat 6.5s ease-in-out infinite;
}

.iw-manuscript::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 30%, rgba(229, 197, 134, .032) 48%, transparent 63%);
    transform: translateX(-120%);
    animation: iwSurfaceSweep 7.5s ease-in-out 1.2s infinite;
}

.iw-manuscript__topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 46px;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: #656a72;
    font: 700 .58rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: .08em;
}

.iw-manuscript__dots {
    display: flex;
    gap: 5px;
}

.iw-manuscript__dots i {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4a4d53;
}

.iw-manuscript__saved {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #777b82;
    letter-spacing: .03em;
}

.iw-manuscript__saved i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9b7d47;
    box-shadow: 0 0 10px rgba(213, 174, 98, .45);
    animation: iwStatusBlink 2.8s ease-in-out infinite;
}

.iw-manuscript__body {
    position: relative;
    padding: 46px 46px 28px;
}

.iw-manuscript__meta > span {
    display: block;
    margin-bottom: 10px;
    color: #82725a;
    font: 700 .58rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: .17em;
}

.iw-manuscript__meta > strong {
    display: block;
    max-width: 330px;
    color: #ece7dc;
    font-family: var(--iw-home-serif);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.iw-copy-lines {
    display: grid;
    gap: 11px;
    margin-top: 31px;
}

.iw-copy-line {
    position: relative;
    display: block;
    height: 5px;
    overflow: hidden;
    border-radius: 4px;
    background: #34373d;
}

.iw-copy-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #6c5a3a, #b28c4d 52%, #6c5a3a);
    transform: scaleX(0);
    transform-origin: left;
    animation: iwLineReview 6s ease-in-out infinite;
}

.iw-copy-line:nth-child(2)::after { animation-delay: .12s; }
.iw-copy-line:nth-child(3)::after { animation-delay: .24s; }
.iw-copy-line:nth-child(4)::after { animation-delay: .36s; }
.iw-copy-line:nth-child(5)::after { animation-delay: .48s; }
.iw-copy-line:nth-child(6)::after { animation-delay: .6s; }
.iw-copy-line:nth-child(7)::after { animation-delay: .72s; }

.iw-copy-line--96 { width: 96%; }
.iw-copy-line--94 { width: 94%; }
.iw-copy-line--90 { width: 90%; }
.iw-copy-line--86 { width: 86%; }
.iw-copy-line--82 { width: 82%; }
.iw-copy-line--76 { width: 76%; }
.iw-copy-line--68 { width: 68%; }

.iw-copy-line.is-reviewing {
    box-shadow: 0 0 0 7px rgba(211, 172, 97, .035);
}

.iw-ai-note {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    margin-top: 35px;
    padding: 14px 38px 14px 14px;
    border: 1px solid rgba(205, 166, 91, .18);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(205,166,91,.06), rgba(255,255,255,.018));
}

.iw-ai-note__icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(210,172,99,.25);
    border-radius: 8px;
    background: #121317;
    color: #caa45c;
}

.iw-ai-note__icon svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.2;
}

.iw-ai-note small,
.iw-stage-card small,
.iw-feature small,
.iw-workflow__steps small {
    display: block;
    color: #8a7450;
    font: 800 .56rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: .13em;
}

.iw-ai-note strong {
    display: block;
    margin-top: 5px;
    color: #d9d6cf;
    font-size: .78rem;
}

.iw-ai-note p {
    margin: 5px 0 0;
    color: #777c84;
    font-size: .66rem;
    line-height: 1.45;
}

.iw-ai-note__pulse {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c29a53;
    box-shadow: 0 0 0 0 rgba(194,154,83,.25);
    animation: iwPulse 2.2s ease-out infinite;
}

.iw-manuscript__footer {
    display: flex;
    justify-content: space-between;
    margin-top: 31px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.055);
    color: #5e6269;
    font: 600 .58rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.iw-stage-card {
    position: absolute;
    z-index: 8;
    width: 168px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 11px;
    background: rgba(13,15,18,.92);
    box-shadow: 0 18px 45px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.035);
    backdrop-filter: blur(12px);
    transform: translateZ(72px);
}

.iw-stage-card--top {
    top: 92px;
    right: -63px;
    animation: iwCardFloat 5.7s ease-in-out -1.4s infinite;
}

.iw-stage-card--bottom {
    right: 70px;
    bottom: 4px;
    width: 190px;
    animation: iwCardFloat 6.2s ease-in-out -.4s infinite reverse;
}

.iw-stage-card strong {
    display: block;
    margin-top: 7px;
    color: #d9d5cc;
    font-family: var(--iw-home-serif);
    font-size: .93rem;
    font-weight: 400;
    line-height: 1.2;
}

.iw-stage-card--top > span {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: #777c82;
    font-size: .62rem;
}

.iw-stage-card--top > span i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b8914d;
    box-shadow: 0 0 9px rgba(184,145,77,.55);
}

.iw-stage-card__meter {
    height: 3px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 3px;
    background: #25282d;
}

.iw-stage-card__meter span {
    display: block;
    width: 62%;
    height: 100%;
    background: linear-gradient(90deg, #7f6438, #d3aa60);
    animation: iwMeter 4.5s ease-in-out infinite alternate;
}

.iw-scroll-cue {
    position: absolute;
    bottom: 22px;
    left: 50%;
    display: grid;
    justify-items: center;
    gap: 9px;
    color: #555a62 !important;
    text-decoration: none;
    transform: translateX(-50%);
}

.iw-scroll-cue span {
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .18em;
}

.iw-scroll-cue i {
    position: relative;
    display: block;
    width: 1px;
    height: 22px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
}

.iw-scroll-cue i::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 1px;
    height: 70%;
    background: #b69050;
    animation: iwScrollLine 2s ease-in-out infinite;
}

.iw-principles {
    position: relative;
    background: #090a0c;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.iw-principles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.iw-principles article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    min-height: 145px;
    align-items: center;
    padding: 28px 36px;
    border-left: 1px solid rgba(255,255,255,.05);
}

.iw-principles article:last-child {
    border-right: 1px solid rgba(255,255,255,.05);
}

.iw-principles article > span {
    color: #6d5c3d;
    font: 700 .64rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.iw-principles strong {
    display: block;
    color: #ddd9d0;
    font-family: var(--iw-home-serif);
    font-size: 1.13rem;
    font-weight: 400;
}

.iw-principles p {
    margin: 7px 0 0;
    color: #6e737b;
    font-size: .75rem;
    line-height: 1.5;
}

.iw-section {
    position: relative;
    padding: clamp(90px, 10vw, 150px) 0;
    scroll-margin-top: calc(var(--er-shared-header-height, 76px) + 14px);
}

.iw-section-heading {
    max-width: 790px;
}

.iw-section-heading h2,
.iw-voice__copy h2,
.iw-final-cta h2 {
    font-size: clamp(2.4rem, 4.2vw, 4rem);
    line-height: 1.02;
}

.iw-section-heading > p:last-child,
.iw-voice__copy > p:last-child {
    max-width: 650px;
    margin: 24px 0 0;
    color: #8e939b;
    font-size: .98rem;
    line-height: 1.75;
}

.iw-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 60px;
}

.iw-feature {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    padding: 38px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.018), transparent 40%),
        #0c0e11;
    transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.iw-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(213,174,99,.17);
    background:
        linear-gradient(145deg, rgba(213,174,99,.025), transparent 46%),
        #0d0f12;
}

.iw-feature--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    min-height: 430px;
    padding-right: 28px;
}

.iw-feature__number {
    position: absolute;
    top: 24px;
    right: 28px;
    color: #34373c;
    font: 700 .68rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.iw-feature__icon {
    display: grid;
    width: 40px;
    height: 40px;
    margin-bottom: 28px;
    place-items: center;
    border: 1px solid rgba(214,174,99,.22);
    border-radius: 9px;
    background: rgba(214,174,99,.035);
    color: #c9a158;
}

.iw-feature__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.2;
}

.iw-feature h3 {
    max-width: 520px;
    margin: 12px 0 0;
    color: #e2ded5;
    font-family: var(--iw-home-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 400;
    line-height: 1.12;
}

.iw-feature p {
    max-width: 540px;
    margin: 18px 0 0;
    color: #777c84;
    font-size: .85rem;
    line-height: 1.7;
}

.iw-context-map {
    position: relative;
    min-height: 300px;
}

.iw-context-map::before {
    content: "";
    position: absolute;
    inset: 5% 8%;
    border: 1px solid rgba(213,174,99,.08);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(213,174,99,.012), 0 0 0 76px rgba(213,174,99,.007);
}

.iw-context-map__node {
    position: absolute;
    z-index: 3;
    display: grid;
    min-width: 74px;
    height: 32px;
    place-items: center;
    padding: 0 11px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 8px;
    background: #101216;
    color: #747981;
    font: 700 .56rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: .07em;
}

.iw-context-map__node.is-main {
    top: 42%;
    left: 42%;
    border-color: rgba(213,174,99,.32);
    color: #d0aa62;
    box-shadow: 0 0 32px rgba(213,174,99,.08);
}

.iw-context-map__node.is-a { top: 8%; left: 14%; }
.iw-context-map__node.is-b { top: 14%; right: 2%; }
.iw-context-map__node.is-c { bottom: 8%; left: 12%; }

.iw-context-map__line {
    position: absolute;
    z-index: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(213,174,99,.18), rgba(213,174,99,.03));
    transform-origin: left;
}

.iw-context-map__line::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 5px;
    height: 3px;
    border-radius: 50%;
    background: #c29a54;
    box-shadow: 0 0 8px rgba(194,154,84,.55);
    animation: iwSignal 3.4s linear infinite;
}

.iw-context-map__line.is-a { top: 33%; left: 28%; width: 28%; transform: rotate(31deg); }
.iw-context-map__line.is-b { top: 34%; left: 57%; width: 25%; transform: rotate(-28deg); }
.iw-context-map__line.is-c { top: 57%; left: 27%; width: 30%; transform: rotate(-33deg); }

.iw-mini-control {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-top: 54px;
}

.iw-mini-control i {
    position: relative;
    height: 3px;
    border-radius: 4px;
    background: #25282c;
}

.iw-mini-control i.is-on {
    background: #c59d54;
    box-shadow: 0 0 12px rgba(197,157,84,.28);
}

.iw-mini-control i.is-on::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    border: 2px solid #c59d54;
    border-radius: 50%;
    background: #0d0f12;
    transform: translate(-50%, -50%);
}

.iw-pipeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 54px;
}

.iw-pipeline span {
    position: relative;
    height: 1px;
    background: #292c31;
}

.iw-pipeline span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    border: 1px solid #4e535b;
    border-radius: 50%;
    background: #0d0f12;
    transform: translateY(-50%);
}

.iw-pipeline span.is-done,
.iw-pipeline span.is-active {
    background: rgba(197,157,84,.45);
}

.iw-pipeline span.is-done::before {
    border-color: #8d713f;
    background: #8d713f;
}

.iw-pipeline span.is-active::before {
    border-color: #c59d54;
    box-shadow: 0 0 0 5px rgba(197,157,84,.06), 0 0 13px rgba(197,157,84,.18);
}

.iw-workflow {
    border-top: 1px solid rgba(255,255,255,.045);
    border-bottom: 1px solid rgba(255,255,255,.045);
    background: #090a0c;
}

.iw-workflow__layout {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 90px;
    align-items: start;
}

.iw-section-heading--sticky {
    position: sticky;
    top: calc(var(--er-shared-header-height, 76px) + 58px);
}

.iw-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    color: #c4a260 !important;
    font-size: .82rem;
    font-weight: 750;
    text-decoration: none;
}

.iw-text-link span {
    transition: transform .2s ease;
}

.iw-text-link:hover span {
    transform: translateX(4px);
}

.iw-workflow__steps {
    border-top: 1px solid rgba(255,255,255,.07);
}

.iw-workflow__steps article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 26px;
    padding: 38px 6px 42px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.iw-step-number {
    color: #69583a;
    font: 700 .66rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.iw-workflow__steps h3 {
    margin: 10px 0 0;
    color: #dfdbd2;
    font-family: var(--iw-home-serif);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.iw-workflow__steps p {
    margin: 13px 0 0;
    color: #747981;
    font-size: .82rem;
    line-height: 1.7;
}

.iw-voice__panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr .9fr;
    min-height: 500px;
    align-items: center;
    gap: 70px;
    overflow: hidden;
    padding: clamp(48px, 7vw, 78px);
    border: 1px solid rgba(213,174,99,.11);
    border-radius: 20px;
    background:
        radial-gradient(circle at 82% 50%, rgba(213,174,99,.055), transparent 31%),
        linear-gradient(135deg, #0e1013, #0a0c0f);
}

.iw-voice__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 100% 42px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 72%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 72%, transparent);
    pointer-events: none;
}

.iw-voice__copy {
    position: relative;
    z-index: 4;
}

.iw-voice__glow {
    position: absolute;
    right: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197,157,84,.065), transparent 66%);
    filter: blur(8px);
}

.iw-voice__visual {
    position: relative;
    z-index: 3;
    width: min(380px, 100%);
    aspect-ratio: 1;
    justify-self: center;
}

.iw-voice__ring,
.iw-voice__core,
.iw-voice__sat {
    position: absolute;
}

.iw-voice__ring {
    inset: 50%;
    border: 1px solid rgba(210,171,95,.16);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.iw-voice__ring--outer {
    width: 88%;
    height: 88%;
    border-style: dashed;
    animation: iwSpin 32s linear infinite;
}

.iw-voice__ring--inner {
    width: 60%;
    height: 60%;
    box-shadow: 0 0 0 36px rgba(210,171,95,.01), 0 0 0 72px rgba(210,171,95,.007);
    animation: iwSpin 22s linear infinite reverse;
}

.iw-voice__core {
    top: 50%;
    left: 50%;
    display: grid;
    width: 110px;
    height: 110px;
    place-content: center;
    border: 1px solid rgba(218,181,109,.34);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211,171,95,.1), #0d0f12 70%);
    text-align: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 45px rgba(211,171,95,.055), inset 0 0 22px rgba(211,171,95,.04);
}

.iw-voice__core span {
    color: #74613f;
    font-size: .53rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.iw-voice__core strong {
    margin-top: 5px;
    color: #e0c58d;
    font-family: var(--iw-home-serif);
    font-size: 1.25rem;
    font-weight: 400;
}

.iw-voice__sat {
    display: grid;
    height: 27px;
    place-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 7px;
    background: #0d0f12;
    color: #777b82;
    font: 700 .52rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: .1em;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.iw-voice__sat--a { top: 14%; left: 44%; animation: iwSatellite 5.6s ease-in-out infinite; }
.iw-voice__sat--b { right: 2%; bottom: 28%; animation: iwSatellite 6.3s ease-in-out -2s infinite; }
.iw-voice__sat--c { bottom: 13%; left: 12%; animation: iwSatellite 5.1s ease-in-out -1s infinite; }

.iw-final-cta {
    position: relative;
    display: grid;
    min-height: 600px;
    place-items: center;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.045);
    background: #08090b;
}

.iw-final-cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(213,174,99,.07);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 90px rgba(213,174,99,.012), 0 0 0 180px rgba(213,174,99,.006);
}

.iw-final-cta__lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, transparent calc(50% - .5px), rgba(213,174,99,.06) 50%, transparent calc(50% + .5px)),
        linear-gradient(transparent calc(50% - .5px), rgba(213,174,99,.035) 50%, transparent calc(50% + .5px));
    pointer-events: none;
}

.iw-final-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 850px;
    text-align: center;
}

.iw-final-cta .iw-kicker {
    justify-content: center;
}

.iw-final-cta p:not(.iw-kicker) {
    max-width: 520px;
    margin: 24px auto 30px;
    color: #858a92;
    line-height: 1.7;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1);
}

[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes iwOrbDrift {
    from { transform: translate3d(-12px, -10px, 0) scale(.96); }
    to { transform: translate3d(18px, 14px, 0) scale(1.05); }
}

@keyframes iwHalo {
    from { opacity: .55; transform: scale(.96); }
    to { opacity: 1; transform: scale(1.05); }
}

@keyframes iwManuscriptFloat {
    0%, 100% { transform: translateZ(36px) translateY(0) rotateY(-2deg) rotateX(1deg); }
    50% { transform: translateZ(42px) translateY(-8px) rotateY(-1.4deg) rotateX(.5deg); }
}

@keyframes iwCardFloat {
    0%, 100% { transform: translateZ(72px) translateY(0); }
    50% { transform: translateZ(78px) translateY(-9px); }
}

@keyframes iwSurfaceSweep {
    0%, 18% { transform: translateX(-120%); }
    40%, 100% { transform: translateX(120%); }
}

@keyframes iwStatusBlink {
    0%, 100% { opacity: .55; }
    50% { opacity: 1; }
}

@keyframes iwLineReview {
    0%, 10% { transform: scaleX(0); opacity: 0; }
    32%, 58% { transform: scaleX(1); opacity: .75; }
    75%, 100% { transform: scaleX(1); opacity: 0; }
}

@keyframes iwPulse {
    0% { box-shadow: 0 0 0 0 rgba(194,154,83,.25); }
    70% { box-shadow: 0 0 0 9px rgba(194,154,83,0); }
    100% { box-shadow: 0 0 0 0 rgba(194,154,83,0); }
}

@keyframes iwMeter {
    from { width: 44%; }
    to { width: 78%; }
}

@keyframes iwScrollLine {
    0% { transform: translateY(-20%); opacity: 0; }
    20% { opacity: 1; }
    70% { opacity: 1; }
    100% { transform: translateY(200%); opacity: 0; }
}

@keyframes iwSignal {
    from { left: 0; opacity: 0; }
    14% { opacity: 1; }
    86% { opacity: 1; }
    to { left: calc(100% - 5px); opacity: 0; }
}

@keyframes iwSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes iwSatellite {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 1180px) {
    .iw-hero__layout {
        grid-template-columns: minmax(0, 1fr) minmax(440px, .95fr);
        gap: 36px;
    }

    .iw-stage-card--top { right: -15px; }
    .iw-stage-card--bottom { right: 34px; }
    .iw-stage__rail { left: 0; }
}

@media (max-width: 980px) {
    .iw-shell {
        width: min(100% - 36px, 760px);
    }

    .iw-hero {
        padding-top: 72px;
    }

    .iw-hero__layout,
    .iw-workflow__layout,
    .iw-voice__panel {
        grid-template-columns: 1fr;
    }

    .iw-hero__layout {
        gap: 56px;
    }

    .iw-hero__copy {
        text-align: center;
    }

    .iw-hero__copy h1,
    .iw-hero__lead {
        margin-inline: auto;
    }

    .iw-hero__actions,
    .iw-hero__trust,
    .iw-hero__copy .iw-kicker {
        justify-content: center;
    }

    .iw-hero__visual {
        width: min(620px, 100%);
        margin: 0 auto;
    }

    .iw-stage {
        min-height: 550px;
    }

    .iw-principles__grid {
        width: min(100%, 760px);
        grid-template-columns: 1fr;
    }

    .iw-principles article,
    .iw-principles article:last-child {
        min-height: auto;
        border-right: 1px solid rgba(255,255,255,.05);
        border-bottom: 1px solid rgba(255,255,255,.05);
    }

    .iw-workflow__layout {
        gap: 52px;
    }

    .iw-section-heading--sticky {
        position: static;
    }

    .iw-voice__panel {
        gap: 35px;
    }

    .iw-voice__copy {
        max-width: 660px;
    }
}

@media (max-width: 720px) {
    .iw-shell {
        width: min(100% - 28px, 620px);
    }

    .iw-hero {
        min-height: auto;
        padding: 64px 0 74px;
    }

    .iw-hero__copy h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .iw-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .iw-button {
        width: 100%;
    }

    .iw-hero__trust {
        display: grid;
        justify-content: start;
        width: max-content;
        max-width: 100%;
        margin-inline: auto;
        text-align: left;
    }

    .iw-scroll-cue {
        display: none;
    }

    .iw-stage {
        min-height: 470px;
    }

    .iw-manuscript {
        right: 0;
        left: 0;
        width: 100%;
        min-height: 450px;
        margin: auto;
    }

    .iw-manuscript__body {
        padding: 34px 27px 24px;
    }

    .iw-stage-card--top {
        top: 68px;
        right: -5px;
        width: 142px;
    }

    .iw-stage-card--bottom {
        right: 14px;
        bottom: -7px;
        width: 170px;
    }

    .iw-stage__rail {
        display: none;
    }

    .iw-feature-grid {
        grid-template-columns: 1fr;
    }

    .iw-feature,
    .iw-feature--wide {
        grid-column: auto;
        display: block;
        min-height: 350px;
        padding: 30px;
    }

    .iw-feature--wide {
        min-height: 640px;
    }

    .iw-context-map {
        margin-top: 25px;
    }

    .iw-section {
        padding: 90px 0;
    }

    .iw-section-heading h2,
    .iw-voice__copy h2,
    .iw-final-cta h2 {
        font-size: clamp(2.25rem, 10vw, 3.2rem);
    }

    .iw-workflow__steps article {
        grid-template-columns: 34px 1fr;
        gap: 15px;
    }

    .iw-voice__panel {
        min-height: 680px;
        padding: 38px 26px;
    }

    .iw-voice__visual {
        width: min(330px, 100%);
    }

    .iw-final-cta {
        min-height: 540px;
    }
}

@media (max-width: 460px) {
    .iw-hero__copy h1 {
        font-size: 2.65rem;
    }

    .iw-hero__lead {
        font-size: .96rem;
    }

    .iw-stage {
        min-height: 430px;
    }

    .iw-manuscript {
        min-height: 420px;
        border-radius: 13px;
    }

    .iw-manuscript__topbar {
        grid-template-columns: 1fr auto;
    }

    .iw-manuscript__topbar > span:nth-child(2) {
        display: none;
    }

    .iw-manuscript__body {
        padding: 31px 22px 22px;
    }

    .iw-ai-note p {
        display: none;
    }

    .iw-stage-card--top {
        display: none;
    }

    .iw-stage-card--bottom {
        right: 8px;
        bottom: -10px;
        width: 154px;
    }

    .iw-principles article {
        padding: 24px 22px;
    }

    .iw-feature,
    .iw-feature--wide {
        padding: 26px;
    }

    .iw-feature--wide {
        min-height: 610px;
    }

    .iw-voice__panel {
        padding: 34px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .iw-home *,
    .iw-home *::before,
    .iw-home *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .iw-stage {
        transform: none !important;
    }
}
