﻿:root {
    --bg: #050b1e;
    --bg-soft: #0a1430;
    --panel: #0d1b41;
    --panel-2: #111f45;
    --line: rgba(255, 255, 255, 0.12);
    --line-warm: rgba(255, 200, 87, 0.22);
    --text: #f8f5ee;
    --muted: #949fb2;
    --muted-2: rgba(232, 237, 247, 0.72);
    --orange: #ff6b1a;
    --gold: #ffc857;
    --white: #ffffff;
    --black: #02050d;
    --radius: 12px;
    --container: 1276px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

html[lang="ko"] body {
    font-family: "Noto Sans KR", "Inter", Arial, sans-serif;
    word-break: keep-all;
}

html[lang="ko"] h1,
html[lang="ko"] h2,
html[lang="ko"] h3 {
    font-family: "Noto Sans KR", "Inter", Arial, sans-serif !important;
    letter-spacing: 0;
}

html[lang="ko"] .site-nav,
html[lang="ko"] .header-cta,
html[lang="ko"] .btn {
    letter-spacing: 0;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 0 clamp(20px, 5.7vw, 82px);
    background: rgba(7, 17, 35, 0.52);
    border-bottom: 1px solid rgba(255, 107, 26, 0.25);
    backdrop-filter: blur(18px);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(5, 11, 30, 0.9);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.25);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 254px;
}

.brand-mark {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    flex: 0 0 auto;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

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

.brand-text strong {
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.brand-text strong span {
    color: var(--gold);
}

.brand-text small {
    color: rgba(232, 237, 247, 0.58);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    line-height: 1.2;
}

.site-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.15vw, 31px);
    color: var(--muted-2);
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.site-nav a {
    transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--gold);
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}

.header-cta,
.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.header-cta {
    min-height: 42px;
    padding: 10px 24px;
    font-size: 14px;
    letter-spacing: 1px;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    min-height: 36px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted-2);
    font-family: "JetBrains Mono", "Noto Sans KR", monospace;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.language-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    transition: background 160ms ease, color 160ms ease;
}

.language-switch a:hover,
.language-switch a:focus-visible {
    color: var(--gold);
}

.language-switch a.is-active {
    background: var(--gold);
    color: #071123;
}

.nav-language-switch {
    display: none;
}

.btn-ghost {
    border-color: #384863;
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
}

.btn-light {
    min-height: 68px;
    background: var(--white);
    color: var(--orange);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    transform-origin: center;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 900px;
    display: flex;
    align-items: center;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(7, 17, 35, 0.86) 0%, rgba(7, 17, 35, 0.62) 46%, #071123 100%),
        url("../img/hero-refinery.webp") center / cover no-repeat;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.28;
    background-image:
        linear-gradient(90deg, rgba(39, 51, 71, 0.4) 1px, transparent 1px),
        linear-gradient(180deg, rgba(39, 51, 71, 0.28) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-inner {
    padding-top: 72px;
}

.eyebrow {
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 28px;
    padding: 11px 16px;
    border: 1px solid rgba(255, 200, 87, 0.4);
    border-radius: 3px;
    background: rgba(255, 200, 87, 0.05);
    color: var(--gold);
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex: 0 0 auto;
}

.hero h1,
.section-head h2,
.forecast h2,
.inquiry h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(58px, 7vw, 101px);
    line-height: 1.05;
}

.hero h1 span {
    color: transparent;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-copy {
    max-width: 595px;
    margin: 22px 0 0;
    color: rgba(232, 237, 247, 0.72);
    font-size: 18px;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 44px;
}

.ticker {
    height: 58px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--bg-soft);
    border-block: 1px solid var(--line-warm);
}

.ticker-track {
    display: flex;
    gap: 66px;
    min-width: max-content;
    animation: ticker 34s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.ticker-item::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.ticker-item strong {
    color: var(--gold);
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
}

.ticker-item span {
    color: var(--muted-2);
    font-size: 13px;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.section {
    padding: clamp(76px, 9vw, 124px) 0;
}

.section-head {
    max-width: 620px;
    margin-bottom: 48px;
}

.section-head-center {
    margin-inline: auto;
    text-align: center;
}

.section-head h2,
.forecast h2 {
    color: var(--text);
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.05;
}

.section-head p,
.forecast p {
    margin: 18px 0 0;
    color: var(--muted);
}

.intro {
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 107, 26, 0.09), transparent 34%),
        var(--bg);
}

.intro .section-head {
    max-width: 900px;
}

.intro .section-head p {
    max-width: 760px;
    margin-inline: auto;
    color: rgba(232, 237, 247, 0.78);
    font-size: 17px;
}

.process-hero {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1276 / 583;
    border: 10px solid rgba(255, 160, 60, 0.78);
    border-radius: 16px;
    background: #000;
}

.process-hero > img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center 58%;
}

.stat-grid {
    position: absolute;
    top: clamp(14px, 1.9vw, 24px);
    right: clamp(24px, 7.4vw, 96px);
    width: min(460px, calc(100% - 64px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.82);
}

.stat-card {
    min-height: 95px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 18px 21px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.stat-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
}

.stat-card strong span {
    color: var(--orange);
}

.stat-card small {
    color: var(--muted);
    font-size: 12px;
}

.pillars {
    background: #050a18;
}

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

.pillar-card {
    position: relative;
    overflow: hidden;
    min-height: 272px;
    border-radius: 8px;
    border: 8px solid rgba(255, 255, 255, 0.04);
    background: var(--black);
}

.pillar-featured {
    grid-row: span 2;
}

.pillar-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transform: scale(1.02);
}

.pillar-card::after,
.edge-image::after,
.revenue-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 11, 30, 0.04), rgba(5, 11, 30, 0.84));
}

.pillar-content {
    position: absolute;
    inset: auto 20px 20px;
    z-index: 1;
}

.pillar-content h3,
.edge-body h3,
.ore-card h3,
.driver-grid h3,
.revenue-list h3,
.roadmap-track h3,
.why-grid h3,
.partner-grid h3 {
    margin: 0;
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.15;
}

.card-tag {
    margin: 16px 0 8px;
    color: var(--gold);
    font-size: 15px;
}

.pillar-content p:last-child,
.edge-body li,
.ore-card p,
.driver-grid p,
.revenue-list p,
.why-grid p,
.partner-grid p {
    color: var(--muted-2);
}

.process {
    background:
        linear-gradient(180deg, #050a18, #071123 52%, #050b1e);
}

.video-frame {
    position: relative;
    overflow: hidden;
    width: min(1100px, 100%);
    margin-inline: auto;
    border-radius: 8px;
    background: #000;
}

.video-frame img,
.site-video {
    width: 100%;
    aspect-ratio: 1100 / 536;
    object-fit: cover;
    opacity: 0.72;
    background: #000;
}

.site-video {
    cursor: pointer;
    transition: opacity 220ms ease, filter 220ms ease;
}

.video-frame.is-playing .site-video {
    opacity: 1;
}

.play-button {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
    z-index: 2;
}

.video-frame.is-playing .play-button {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
}

.video-frame.is-playing:hover .play-button,
.video-frame.is-playing:focus-within .play-button {
    opacity: 0.86;
}

.play-button span {
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid var(--orange);
}

.play-button.is-playing span {
    position: relative;
    width: 28px;
    height: 30px;
    margin-left: 0;
    border: 0;
}

.play-button.is-playing span::before,
.play-button.is-playing span::after {
    content: "";
    position: absolute;
    top: 0;
    width: 9px;
    height: 30px;
    border-radius: 2px;
    background: var(--orange);
}

.play-button.is-playing span::before {
    left: 2px;
}

.play-button.is-playing span::after {
    right: 2px;
}

.video-meta {
    position: absolute;
    inset: auto 48px 48px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.86);
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}

.video-progress {
    position: absolute;
    left: 48px;
    right: 48px;
    bottom: 24px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    pointer-events: none;
    z-index: 1;
}

.video-progress span {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: var(--orange);
    transition: width 120ms linear;
}

.edge {
    background: #050b1e;
}

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

.edge-card {
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.edge-image {
    position: relative;
    min-height: 396px;
    overflow: hidden;
}

.edge-image img {
    width: 100%;
    height: 100%;
    min-height: 396px;
    object-fit: cover;
}

.edge-image span {
    position: absolute;
    z-index: 2;
    top: 24px;
    right: 24px;
    padding: 4px 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.78);
    color: var(--gold);
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
}

.edge-body {
    padding: 32px;
}

.edge-body ul {
    display: grid;
    gap: 16px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.edge-body li {
    position: relative;
    padding-left: 32px;
}

.edge-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 20px;
    height: 1px;
    background: var(--orange);
}

.ore-card {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 34px;
    align-items: center;
    margin-top: 40px;
    padding: 24px;
    border-radius: 12px;
    background: #0d1b41;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-badge {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(255, 200, 87, 0.12);
    color: var(--gold);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 700;
}

.ore-elements {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.ore-elements div {
    min-height: 167px;
    display: grid;
    place-items: center;
    gap: 14px;
    padding: 20px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
}

.ore-elements strong {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
}

.ore-elements span {
    color: var(--text);
    font-family: "JetBrains Mono", monospace;
}

.market-band {
    position: relative;
    padding: 128px 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5, 11, 30, 0.92), rgba(5, 11, 30, 0.74) 52%, rgba(5, 11, 30, 0.94)),
        url("../img/target-bg.webp") center / cover no-repeat;
}

.market-inner {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    gap: 80px;
    align-items: end;
}

.market-inner .section-head {
    margin-bottom: 0;
}

.driver-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-inline: 1px solid rgba(255, 255, 255, 0.22);
}

.driver-grid article {
    min-height: 192px;
    padding: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.driver-grid article:first-child {
    border-left: 0;
}

.driver-grid h3 {
    font-size: 25px;
}

.targets {
    position: relative;
    overflow: hidden;
    min-height: 495px;
    padding: 82px 0 86px;
    background: var(--bg-soft);
}

.targets-bg {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background:
        linear-gradient(90deg, rgba(5, 11, 30, 0.2), rgba(5, 11, 30, 0.88)),
        url("../img/target-bg.webp") center / cover no-repeat;
}

.targets-inner {
    position: relative;
    z-index: 1;
}

.target-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2px;
    margin-top: 82px;
}

.target-line::before {
    content: "";
    position: absolute;
    left: 8.3%;
    right: 8.3%;
    top: 22px;
    height: 1px;
    background: rgba(255, 200, 87, 0.38);
}

.target-line article {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 54px;
    text-align: center;
}

.target-line span {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-family: "JetBrains Mono", monospace;
}

.target-line span::after {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: inherit;
}

.target-line h3 {
    margin: 0;
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
}

.revenue {
    background: #071123;
}

.revenue-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 82px;
    align-items: center;
}

.revenue-visual {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.revenue-visual img {
    width: 100%;
    aspect-ratio: 611 / 664;
    object-fit: cover;
}

.revenue-list {
    display: grid;
}

.revenue-list article {
    padding: 0 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.revenue-list article + article {
    padding-top: 32px;
}

.revenue-list h3 {
    font-size: 34px;
}

.forecast {
    background: #050b1e;
}

.forecast-layout {
    display: grid;
    grid-template-columns: minmax(280px, 442px) 1fr;
    gap: 96px;
    align-items: center;
}

.forecast .btn {
    margin-top: 32px;
}

.kpi-table {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.kpi-row {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 0.9fr;
    min-height: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.kpi-row:first-child {
    border-top: 0;
}

.kpi-row span {
    display: flex;
    align-items: center;
    padding: 18px 40px;
}

.kpi-head {
    min-height: 80px;
    background: rgba(255, 107, 26, 0.16);
    color: var(--gold);
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
}

.roadmap {
    position: relative;
    overflow: hidden;
    padding: 126px 0;
    background: #061027;
}

.roadmap-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background:
        linear-gradient(180deg, #061027 0%, rgba(6, 16, 39, 0.72) 46%, #061027 100%),
        url("../img/roadmap-bg.webp") center / cover no-repeat;
}

.roadmap .container {
    position: relative;
    z-index: 1;
}

.roadmap-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-top: 86px;
}

.roadmap-track article {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(255, 200, 87, 0.35);
    border-radius: 8px;
    background:
        linear-gradient(rgba(5, 11, 30, 0.76), rgba(5, 11, 30, 0.76)),
        url("../img/texture.webp") center / cover;
}

.roadmap-state {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 107, 26, 0.18);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}

.roadmap-track ul {
    display: grid;
    gap: 10px;
    margin: 24px 0 32px;
    padding: 0;
    color: var(--muted-2);
    list-style: none;
}

.roadmap-track li::before {
    content: "*";
    color: var(--gold);
    margin-right: 8px;
}

.roadmap-track strong {
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
}

.why {
    background: #050b1e;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
}

.why-grid article {
    min-height: 217px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.why-grid article:first-child {
    border-left: 0;
}

.why-grid strong {
    display: block;
    margin-top: 12px;
    color: var(--gold);
    font-weight: 500;
}

.partners {
    padding: 96px 0 112px;
    background:
        radial-gradient(circle at 52% 18%, rgba(255, 107, 26, 0.18), transparent 24%),
        #071123;
}

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

.partner-grid article {
    position: relative;
    min-height: 228px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    background: rgba(5, 11, 30, 0.43);
}

.partner-grid article > span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 107, 26, 0.22);
    color: var(--gold);
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
}

.partner-grid small {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 10px;
    background: #000;
    color: var(--gold);
}

.partner-grid h3 {
    min-height: 62px;
    margin-top: 48px;
    font-size: 24px;
}

.strategic-strip {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 12px;
    background: rgba(5, 11, 30, 0.5);
}

.strategic-strip strong {
    flex: 0 0 auto;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.strategic-strip span {
    color: var(--muted-2);
    white-space: nowrap;
}

.inquiry {
    padding: 96px 0 0;
    background: #050b1e;
}

.inquiry-panel {
    min-height: 467px;
    display: grid;
    align-content: center;
    gap: 24px;
    padding: clamp(34px, 6vw, 72px) 48px;
    border-radius: 60px;
    text-align: center;
    background:
        linear-gradient(90deg, rgba(255, 107, 26, 0.91), rgba(255, 107, 26, 0.91)),
        url("../img/cta-bg.webp") center / cover no-repeat;
}

.inquiry h2 {
    max-width: 1066px;
    margin-inline: auto;
    color: var(--white);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
}

.inquiry p {
    margin: 0;
    color: var(--white);
}

.inquiry-actions {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 16px;
    align-items: end;
    margin-top: 28px;
    text-align: left;
}

.inquiry-form {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 16px;
    align-items: end;
    margin-top: 28px;
    text-align: left;
}

.inquiry-field {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.contact-box {
    display: grid;
    gap: 12px;
}

.inquiry-field label,
.contact-box small {
    color: var(--white);
    font-weight: 500;
}

.inquiry-field input,
.contact-box strong {
    display: flex;
    align-items: center;
    min-height: 68px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.43);
    color: #0b1020;
    font-size: 16px;
    font-weight: 400;
}

.inquiry-field input {
    width: 100%;
    outline: 0;
}

.inquiry-field input::placeholder {
    color: rgba(11, 16, 32, 0.52);
}

.inquiry-field input:focus {
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}

.inquiry-submit {
    min-height: 68px;
}

.inquiry-submit:disabled {
    cursor: wait;
    opacity: 0.78;
}

.inquiry-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-message {
    justify-self: center;
    width: min(720px, 100%);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 6px auto 0;
    padding: 13px 18px;
    border-radius: 12px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
}

.form-message[hidden] {
    display: none;
}

.form-message.is-success {
    background: rgba(12, 118, 82, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.form-message.is-error {
    background: rgba(120, 24, 24, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.site-footer {
    padding-top: 112px;
    background: #050b1e;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    padding: 42px;
    border-radius: 22px 22px 0 0;
    background: var(--panel);
}

.footer-inner .brand {
    min-width: 0;
}

.footer-inner p {
    margin: 20px 0 36px;
}

.footer-inner strong {
    color: var(--gold);
    font-weight: 400;
}

.footer-inner nav {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    justify-content: flex-end;
    gap: 31px;
    color: var(--muted-2);
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 42px 34px;
    background: var(--panel);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--muted);
}

.footer-bottom span:last-child {
    display: flex;
    gap: 44px;
}

@media (max-width: 1180px) {
    .site-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .site-nav {
        position: fixed;
        inset: 72px 0 auto;
        display: none;
        grid-column: 1 / -1;
        justify-content: start;
        width: 100%;
        padding: 24px 32px;
        background: rgba(5, 11, 30, 0.96);
        border-bottom: 1px solid var(--line);
    }

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

    .nav-toggle {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .nav-language-switch {
        display: inline-flex;
        margin-left: auto;
    }

    .market-inner,
    .revenue-layout,
    .forecast-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .driver-grid {
        grid-template-columns: 1fr;
        border: 0;
    }

    .driver-grid article {
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .target-line {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 46px;
    }

    .target-line::before {
        display: none;
    }

    .strategic-strip {
        flex-wrap: wrap;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 760px;
        background-position: 58% center;
    }

    .hero h1 {
        max-width: 620px;
    }

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

    .pillar-featured {
        grid-row: span 1;
    }

    .edge-grid,
    .roadmap-track,
    .why-grid,
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .why-grid article,
    .why-grid article:first-child {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .why-grid article:first-child {
        border-top: 0;
    }

    .ore-card {
        grid-template-columns: 1fr;
    }

    .ore-elements {
        grid-template-columns: repeat(5, minmax(92px, 1fr));
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .revenue-visual img {
        aspect-ratio: 16 / 10;
    }

    .inquiry-actions,
    .inquiry-form {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-inner nav {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .site-header {
        height: 66px;
        padding: 0 14px;
    }

    .brand {
        min-width: 0;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text small {
        max-width: 168px;
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-nav {
        inset: 66px 0 auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .nav-language-switch {
        margin-left: 0;
        margin-top: 8px;
    }

    .hero {
        min-height: 680px;
        background-position: 62% center;
    }

    .hero-inner {
        padding-top: 86px;
    }

    .eyebrow {
        padding: 10px 12px;
        font-size: 11px;
        letter-spacing: 0.4px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-copy {
        font-size: 16px;
        letter-spacing: 0;
    }

    .hero-actions {
        display: grid;
        gap: 12px;
    }

    .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .ticker-track {
        gap: 36px;
    }

    .section {
        padding: 72px 0;
    }

    .section-head {
        margin-bottom: 34px;
    }

    .section-head h2,
    .forecast h2 {
        font-size: 36px;
    }

    .process-hero {
        aspect-ratio: auto;
        border-width: 5px;
    }

    .process-hero > img {
        height: auto;
        min-height: 420px;
    }

    .stat-grid {
        position: static;
        width: 100%;
        grid-template-columns: 1fr;
        border-radius: 0;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 286px;
    }

    .video-frame img,
    .site-video {
        min-height: 420px;
    }

    .play-button {
        width: 74px;
        height: 74px;
    }

    .video-meta {
        inset: auto 18px 38px;
        display: grid;
        font-size: 11px;
    }

    .video-progress {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .edge-image,
    .edge-image img {
        min-height: 280px;
    }

    .edge-body {
        padding: 24px;
    }

    .market-band,
    .roadmap {
        padding: 82px 0;
    }

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

    .target-line article {
        gap: 28px;
    }

    .revenue-list h3 {
        font-size: 28px;
    }

    .kpi-row {
        grid-template-columns: 1fr;
    }

    .kpi-row span {
        padding: 12px 20px;
    }

    .kpi-row span:not(:first-child)::before {
        display: inline-block;
        min-width: 54px;
        margin-right: 12px;
        color: var(--gold);
        font-family: "JetBrains Mono", monospace;
        font-size: 12px;
    }

    .kpi-row:not(.kpi-head) span:nth-child(2)::before {
        content: "2026";
    }

    .kpi-row:not(.kpi-head) span:nth-child(3)::before {
        content: "2028";
    }

    .kpi-head {
        display: none;
    }

    .inquiry-panel {
        min-height: 0;
        padding: 42px 18px;
        border-radius: 28px;
    }

    .contact-box strong {
        min-height: 58px;
        overflow-wrap: anywhere;
    }

    .inquiry-field input,
    .inquiry-submit {
        min-height: 58px;
    }

    .site-footer {
        padding-top: 72px;
    }

    .footer-inner,
    .footer-bottom {
        padding-inline: 18px;
    }

    .footer-bottom {
        display: grid;
    }

    .footer-bottom span:last-child {
        gap: 20px;
        flex-wrap: wrap;
    }
}

/* Figma alignment pass */
.hero {
    background-size: 100% auto, 100% auto, cover;
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions {
    animation: heroRise 820ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hero h1 {
    animation-delay: 120ms;
}

.hero-copy {
    animation-delay: 220ms;
}

.hero-actions {
    animation-delay: 320ms;
}

.integrated-process {
    position: relative;
    overflow: hidden;
    padding: 96px 0 80px;
    background:
        linear-gradient(rgba(5, 11, 30, 0.62), rgba(5, 11, 30, 0.76)),
        url("../img/section-ore.webp") center 58% / cover no-repeat;
}

.integrated-process::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 80%, rgba(255, 107, 26, 0.22), transparent 42%);
    pointer-events: none;
}

.integrated-process .container {
    position: relative;
    z-index: 1;
}

.integrated-process .section-head {
    max-width: 980px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(255, 200, 87, 0.88);
    background: rgba(6, 17, 39, 0.9);
}

.process-step {
    min-height: 178px;
    padding: 36px 30px;
    border-right: 1px solid rgba(255, 200, 87, 0.68);
    border-bottom: 1px solid rgba(255, 200, 87, 0.68);
}

.process-step:nth-child(4n) {
    border-right: 0;
}

.process-step:nth-child(n + 5) {
    border-bottom: 0;
}

.process-step span {
    display: block;
    margin-bottom: 28px;
    color: var(--orange);
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    font-weight: 700;
}

.process-step h3 {
    margin: 0 0 14px;
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
}

.process-step p {
    margin: 0;
    color: var(--muted);
}

.process .section-head h2 {
    font-size: clamp(34px, 3.4vw, 46px);
}

.video-frame {
    width: min(1120px, 100%);
    border-radius: 22px;
    border: 1px solid rgba(255, 107, 26, 0.42);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.edge {
    background: #050b1e;
}

.edge .section-head h2 {
    text-transform: none;
}

.edge-card {
    background: #f6f7fb;
    color: #071123;
    border: 0;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.edge-image {
    min-height: 360px;
    margin: 12px;
    border-radius: 7px;
}

.edge-image img {
    min-height: 360px;
    border-radius: 7px;
}

.edge-image::after {
    background: linear-gradient(180deg, rgba(5, 11, 30, 0.03), rgba(5, 11, 30, 0.12));
}

.edge-body h3 {
    color: #071123;
}

.edge-body .card-tag {
    color: var(--orange);
    font-weight: 700;
}

.edge-body li {
    color: #526078;
}

.ore-card {
    grid-template-columns: minmax(220px, 1fr) 2.2fr;
    background: #f6f7fb;
    color: #071123;
    border: 0;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

.ore-card h3 {
    color: #071123;
}

.ore-card p {
    color: #667087;
}

.ore-elements div {
    min-height: 118px;
    border-radius: 8px;
    background: #071123;
    color: var(--text);
}

.ore-elements strong {
    background: transparent;
    border: 1px solid rgba(255, 200, 87, 0.42);
    color: var(--gold);
}

.ore-elements small {
    color: #f8f5ee;
    font-size: 12px;
    text-align: center;
}

.market-band {
    min-height: 597px;
    padding: 80px 0 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.58), rgba(5, 11, 30, 0.88)),
        url("../img/pillar-4.webp") center / cover no-repeat;
}

.market-band .section-head {
    max-width: 760px;
    margin-bottom: 54px;
}

.market-band .section-head h2 {
    font-size: clamp(38px, 4vw, 56px);
}

.market-arches {
    display: grid;
    grid-template-columns: 1fr 1.22fr 1.42fr 1.22fr 1fr;
    align-items: end;
    gap: 6px;
}

.market-arch {
    min-height: 170px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 18px;
    padding: 34px 24px 30px;
    border: 1px solid var(--orange);
    border-bottom: 0;
    border-radius: 999px 999px 0 0;
    background: rgba(10, 20, 48, 0.76);
    text-align: center;
    backdrop-filter: blur(8px);
}

.market-arch.level-1 {
    min-height: 188px;
}

.market-arch.level-2 {
    min-height: 270px;
    border-color: var(--gold);
}

.market-arch.level-3 {
    min-height: 390px;
    border-color: #7881ff;
}

.market-arch h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
}

.market-arch strong {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
}

.market-arch p {
    margin: 0;
    color: var(--muted);
}

.why-now {
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: center;
    aspect-ratio: 854 / 480;
    min-height: 620px;
    background: #050b1e;
    isolation: isolate;
}

.why-now::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 11, 30, 0.72), rgba(5, 11, 30, 0.34) 46%, rgba(5, 11, 30, 0.76)),
        linear-gradient(180deg, rgba(5, 11, 30, 0.48), rgba(5, 11, 30, 0.66));
    pointer-events: none;
}

.why-now-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.88;
    filter: saturate(1.16) contrast(1.08);
    pointer-events: none;
}

.why-now .container {
    position: relative;
    z-index: 2;
}

.why-now .section-head {
    margin-bottom: 34px;
}

.why-now-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.why-now-card {
    min-height: 164px;
    padding: 26px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(5, 11, 30, 0.58);
    backdrop-filter: blur(7px);
}

.why-now-card h3 {
    margin: 0 0 18px;
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
}

.why-now-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.targets {
    min-height: auto;
    padding: 74px 0 0;
    background: #050b1e;
}

.target-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 96px;
}

.target-card {
    min-height: 184px;
    padding: 26px 24px;
    border: 1px solid rgba(255, 200, 87, 0.65);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.52);
}

.target-card span {
    display: block;
    margin-bottom: 20px;
    color: var(--orange);
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
}

.target-card h3 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
}

.target-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.target-flow {
    position: relative;
    overflow: hidden;
    height: 495px;
    padding: 0;
    background: var(--bg-soft);
}

.target-flow .targets-bg {
    opacity: 1;
    background:
        linear-gradient(180deg, rgba(10, 20, 48, 0.82), rgba(10, 20, 48, 0.9) 58%, rgba(10, 20, 48, 0.98)),
        url("../img/target-bg.webp") center / cover no-repeat;
}

.target-flow .targets-inner {
    height: 100%;
}

.target-flow .section-head {
    position: absolute;
    top: 82px;
    left: 0;
    width: min(583px, 100%);
    margin: 0;
    text-align: left;
}

.target-flow .section-head h2 {
    font-family: "Times New Roman", Georgia, serif;
    font-size: clamp(40px, 3.65vw, 48px);
    line-height: 1;
    white-space: nowrap;
}

.target-flow .section-head p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.target-line {
    position: absolute;
    top: 249px;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 251fr repeat(5, 203fr);
    gap: 0;
    column-gap: 2px;
    width: 100%;
    height: 136px;
    margin-top: 0;
}

.target-line::before {
    left: 0;
    right: auto;
    width: 100vw;
    top: 16px;
    height: 12px;
    z-index: 0;
    transform: translateX(calc((100% - 100vw) / 2));
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.9);
}

.target-line article {
    z-index: 1;
    gap: 60px;
}

.target-line span {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: #071123;
    font-size: 14px;
    font-weight: 700;
}

.target-line h3 {
    font-size: 16px;
    line-height: 1.35;
}

.revenue {
    background: #f5f5f2;
    color: #071123;
}

.revenue .section-head h2,
.revenue-list h3 {
    color: #071123;
}

.revenue .section-head p {
    color: #8a92a3;
}

.revenue-layout {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 72px;
}

.revenue-visual {
    border: 5px solid #071123;
    border-radius: 10px;
}

.revenue-visual::after {
    content: none;
}

.revenue-list article {
    border-bottom-color: rgba(255, 107, 26, 0.45);
}

.revenue-list p {
    color: #667087;
}

.revenue .mini-badge {
    background: #071123;
    color: var(--gold);
}

.forecast {
    background: #050b1e;
}

.forecast-layout {
    gap: clamp(56px, 7vw, 120px);
}

.kpi-table {
    background: rgba(10, 20, 48, 0.9);
}

.roadmap {
    min-height: 720px;
    padding: 106px 0 116px;
}

.roadmap-bg {
    opacity: 0.32;
    background:
        linear-gradient(180deg, rgba(5, 11, 30, 0.85), rgba(5, 11, 30, 0.58) 42%, rgba(5, 11, 30, 0.92)),
        url("../img/roadmap-bg.webp") center / cover no-repeat;
}

.milestone-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
    min-height: 340px;
    margin-top: 88px;
    align-items: start;
    isolation: isolate;
}

.milestone-track::before {
    content: "";
    position: absolute;
    left: -4vw;
    right: -4vw;
    top: 238px;
    height: 12px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 24px rgba(255, 200, 87, 0.5);
    z-index: 0;
}

.milestone-card {
    position: relative;
    z-index: 2;
    min-height: 176px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.94);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
}

.milestone-card::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 16px;
    height: 16px;
    border: 4px solid var(--orange);
    border-radius: 50%;
    background: var(--gold);
    transform: translateX(-50%);
}

.milestone-1::after,
.milestone-2::after,
.milestone-3::after {
    bottom: -48px;
}

.milestone-2 {
    transform: none;
}

.milestone-2::after {
    top: auto;
}

.milestone-card div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 16px;
}

.milestone-card strong {
    color: var(--gold);
    font-family: "JetBrains Mono", monospace;
}

.milestone-card ul {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    padding-left: 18px;
    color: var(--muted-2);
    font-size: 13px;
}

.milestone-card small {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--gold);
    color: #071123;
    font-weight: 700;
}

.partners {
    background:
        linear-gradient(rgba(5, 11, 30, 0.72), rgba(5, 11, 30, 0.86)),
        url("../img/pillar-3.webp") center / cover no-repeat;
}

.partner-grid article {
    backdrop-filter: blur(6px);
}

.partner-grid article > span {
    background: var(--orange);
    color: #fff;
}

.strategic-strip {
    margin-top: 20px;
    border-color: rgba(255, 255, 255, 0.42);
}

.inquiry-panel {
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.inquiry-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 80px rgba(255, 107, 26, 0.26);
}

.btn,
.pillar-card,
.edge-card,
.target-card,
.market-arch,
.partner-grid article {
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.btn:hover,
.pillar-card:hover,
.edge-card:hover,
.target-card:hover,
.market-arch:hover,
.partner-grid article:hover {
    transform: translateY(-4px);
}

.pillar-card:hover img,
.edge-card:hover img {
    filter: saturate(1.12) contrast(1.04);
}

.reveal-ready {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 520ms cubic-bezier(0.2, 0.72, 0.2, 1),
        transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroDrift {
    from {
        background-position: center center;
    }
    to {
        background-position: 54% center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-ready {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1180px) {
    .process-grid,
    .target-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-step:nth-child(4n) {
        border-right: 1px solid rgba(255, 200, 87, 0.68);
    }

    .process-step:nth-child(2n) {
        border-right: 0;
    }

    .process-step:nth-child(n + 5) {
        border-bottom: 1px solid rgba(255, 200, 87, 0.68);
    }

    .process-step:nth-child(n + 7) {
        border-bottom: 0;
    }

    .market-arches {
        grid-template-columns: repeat(5, minmax(210px, 1fr));
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .revenue-layout {
        grid-template-columns: 1fr;
    }

    .milestone-track {
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .market-arch.level-1,
    .market-arch.level-2,
    .market-arch.level-3 {
        min-height: 240px;
    }

    .why-now-grid,
    .target-card-grid,
    .milestone-track {
        grid-template-columns: 1fr;
    }

    .why-now-grid {
        border-left: 0;
        gap: 14px;
    }

    .why-now-card {
        border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .target-line {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 34px;
        width: 100%;
        height: auto;
    }

    .target-flow .section-head {
        position: relative;
        top: auto;
        left: auto;
        width: min(583px, 100%);
        margin-bottom: 58px;
    }

    .target-flow,
    .target-flow .targets-inner {
        height: auto;
    }

    .target-flow {
        padding: 72px 0;
    }

    .target-flow .section-head h2 {
        white-space: normal;
    }

    .target-line article {
        gap: 18px;
    }

    .target-line::before {
        display: none;
    }

    .milestone-track {
        min-height: auto;
    }

    .milestone-track::before {
        left: 22px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 6px;
        height: auto;
    }

    .milestone-card,
    .milestone-2 {
        transform: none;
        margin-left: 46px;
    }

    .milestone-card::after,
    .milestone-1::after,
    .milestone-2::after,
    .milestone-3::after {
        left: -27px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
}

@media (max-width: 640px) {
    .integrated-process {
        padding: 72px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step,
    .process-step:nth-child(2n),
    .process-step:nth-child(4n),
    .process-step:nth-child(n + 7) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 200, 87, 0.68);
    }

    .process-step:last-child {
        border-bottom: 0;
    }

    .edge-card {
        border-radius: 8px;
    }

    .edge-image,
    .edge-image img {
        min-height: 260px;
    }

    .ore-elements {
        grid-template-columns: repeat(5, minmax(110px, 1fr));
    }

    .market-band {
        padding-top: 70px;
    }

    .target-card-grid {
        grid-template-columns: 1fr;
        margin-bottom: 70px;
    }

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

    .target-flow {
        padding: 64px 0;
    }

    .target-line h3 {
        font-size: 14px;
    }

    .revenue {
        padding-top: 68px;
    }

    .revenue-visual img {
        aspect-ratio: 4 / 3;
    }
}
