/* V3D redesign shared stylesheet. Extracted from preview pages. */
:root {
            --ink: #1a1512;
            --ink-soft: #2a221d;
            --green: #17332e;
            --green-deep: #112823;
            --ivory: #f5f3e8;
            --ivory-soft: #efece0;
            --pale: #f8f7ec;
            --greige: #a69d99;
            --burgundy: #931d3f;
            --white: #ffffff;
        }

        * { box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            margin: 0;
            background: var(--ivory);
            color: var(--ink);
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img { display: block; max-width: 100%; }
        a { color: inherit; text-decoration: none; }
        svg { display: block; }

        .page { overflow: hidden; }

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

        /* ---------- Header ---------- */
        .header {
            position: sticky;
            top: 0;
            z-index: 30;
            background: var(--green-deep);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--white);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            gap: 32px;
        }

        .logo { width: 92px; height: auto; }

        .nav {
            display: flex;
            align-items: center;
            gap: 36px;
            font-size: 14px;
            font-weight: 600;
        }

        .nav a { color: var(--white); opacity: 0.86; transition: opacity 160ms ease; }
        .nav a:hover { opacity: 1; }
        .nav a.button { opacity: 1; }
        .nav a.button-light { color: var(--green); }
        .nav a.button-primary { color: var(--white); }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 44px;
            padding: 0 22px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 700;
            transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
            cursor: pointer;
            border: 1px solid transparent;
            white-space: nowrap;
        }

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

        .button-primary {
            background: var(--green);
            color: var(--white);
            border-color: var(--green);
        }

        .button-primary:hover { background: var(--green-deep); }

        .button-secondary {
            background: transparent;
            color: var(--ink);
            border-color: rgba(35, 24, 21, 0.28);
        }

        .button-secondary:hover { border-color: var(--ink); }

        .button-light {
            background: var(--white);
            color: var(--green);
            border-color: var(--white);
        }

        .button .arrow {
            display: inline-block;
            width: 14px;
            height: 14px;
            position: relative;
        }

        .button .arrow::before,
        .button .arrow::after {
            content: "";
            position: absolute;
            background: currentColor;
        }

        .button .arrow::before {
            top: 50%;
            left: 0;
            right: 0;
            height: 1.4px;
            transform: translateY(-50%);
        }

        .button .arrow::after {
            top: 50%;
            right: 0;
            width: 6px;
            height: 6px;
            border-top: 1.4px solid currentColor;
            border-right: 1.4px solid currentColor;
            transform: translateY(-50%) rotate(45deg);
            background: transparent;
        }

        /* ---------- Hero ---------- */
        .hero {
            position: relative;
            background: var(--green);
            color: var(--white);
            min-height: 660px;
            display: flex;
            align-items: stretch;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .hero-grid {
            position: relative;
            min-height: 660px;
            display: flex;
            align-items: center;
        }

        .hero-text {
            position: relative;
            z-index: 2;
            width: min(820px, 68%);
            padding: 90px 0 84px;
        }

        .hero-text::before {
            content: "";
            display: block;
            width: 44px;
            height: 3px;
            margin-bottom: 22px;
            background: var(--burgundy);
        }

        .hero-eyebrow {
            margin: 0 0 18px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .hero h1 {
            margin: 0;
            max-width: 820px;
            font-size: clamp(42px, 3.9vw, 56px);
            line-height: 1.08;
            letter-spacing: 0;
            font-weight: 700;
            color: var(--white);
        }

        .hero-line { display: block; }

        .seg { display: inline-block; }

        .hero-subhead {
            margin: 24px 0 0;
            color: rgba(255, 255, 255, 0.78);
            font-size: 13px;
            font-weight: 800;
            line-height: 1.5;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .hero-copy {
            margin: 14px 0 0;
            max-width: 720px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 14.5px;
            line-height: 1.85;
            font-weight: 500;
        }

        .hero .button-primary {
            background: var(--white);
            color: var(--green);
            border-color: var(--white);
        }

        .hero .button-primary:hover {
            background: rgba(255, 255, 255, 0.92);
        }

        .hero .button-secondary {
            background: transparent;
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.42);
        }

        .hero .button-secondary:hover {
            border-color: var(--white);
            background: rgba(255, 255, 255, 0.06);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 36px;
        }

        .hero-visual {
            position: absolute;
            top: 0;
            bottom: 0;
            right: calc((100vw - 100%) / -2);
            width: min(62vw, 920px);
            overflow: hidden;
            background: var(--ink);
            z-index: 1;
        }

        .hero-visual::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 2;
            background: linear-gradient(90deg, var(--green) 0%, rgba(23, 51, 46, 0.88) 14%, rgba(23, 51, 46, 0.18) 38%, rgba(23, 51, 46, 0) 62%);
            pointer-events: none;
        }

        .hero-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ---------- Hero proof bar (below hero, full-width) ---------- */
        .proof-bar {
            background: var(--green-deep);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--white);
        }

        .proof-bar-inner {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px 24px;
            padding: 22px 0;
        }

        .proof {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

        .proof-icon {
            display: grid;
            place-items: center;
            width: 30px;
            height: 30px;
            color: rgba(255, 255, 255, 0.85);
            flex-shrink: 0;
        }

        .proof-text {
            display: flex;
            flex-direction: column;
            line-height: 1.35;
            min-width: 0;
        }

        .proof-text strong {
            color: var(--white);
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 0.01em;
        }

        .proof-text span {
            color: rgba(255, 255, 255, 0.76);
            font-size: 13px;
            font-weight: 650;
        }

        /* ---------- Sections ---------- */
        .section { padding: 110px 0; }
        .section-dark { background: var(--ink); color: var(--white); }
        .section-green { background: var(--green); color: var(--white); }
        .section-light { background: var(--ivory); }

        .section-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 32px;
            margin-bottom: 48px;
        }

        .section-label {
            margin: 0 0 8px;
            color: rgba(255, 255, 255, 0.55);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .section-light .section-label,
        .section-pale .section-label {
            color: rgba(35, 24, 21, 0.55);
        }

        h2 {
            margin: 0;
            font-size: clamp(28px, 2.8vw, 38px);
            line-height: 1.28;
            letter-spacing: 0;
            font-weight: 700;
        }

        h3 {
            margin: 0;
            font-size: 18px;
            line-height: 1.45;
            font-weight: 700;
        }

        .lead {
            margin: 0;
            max-width: 460px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            line-height: 1.85;
            font-weight: 500;
        }

        .section-light .lead { color: rgba(35, 24, 21, 0.66); }

        .link-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: inherit;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
            transition: gap 160ms ease;
        }

        .link-more::after {
            content: "";
            width: 26px;
            height: 1px;
            background: currentColor;
            position: relative;
        }

        .link-more:hover { gap: 14px; }

        /* ---------- Intro ---------- */
        .intro-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            gap: 0;
            align-items: stretch;
            min-height: 460px;
        }

        .intro-image {
            min-height: 460px;
            overflow: hidden;
        }

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

        .intro-image video {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 460px;
            object-fit: cover;
            background: #000;
        }

        .intro-message {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 60px 60px 80px;
        }

        .intro-message h2 {
            font-size: clamp(28px, 3vw, 42px);
            line-height: 1.28;
            font-weight: 700;
        }

        .intro-message p {
            margin: 24px 0 30px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 15px;
            line-height: 1.9;
            max-width: 420px;
        }

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

        .module {
            position: relative;
            padding: 26px 26px 30px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.03);
            display: flex;
            flex-direction: column;
        }

        .module-num {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
            font-size: 12px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.55);
            letter-spacing: 0.1em;
        }

        .module-num strong {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 800;
            letter-spacing: 0.05em;
        }

        .module-image {
            height: 170px;
            margin-bottom: 26px;
            border-radius: 6px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.3);
        }

        .module-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .module-metric {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 8px;
            color: var(--white);
        }

        .module-metric strong {
            font-size: 38px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 0;
        }

        .module-metric span {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
        }

        .module .link-more {
            margin-top: auto;
            padding-top: 22px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 12px;
        }

        /* ---------- Projects ---------- */
        .project-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .project-card {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border-radius: 8px;
            background: var(--white);
            border: 1px solid rgba(35, 24, 21, 0.06);
            transition: transform 200ms ease, box-shadow 200ms ease;
        }

        .project-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(35, 24, 21, 0.08);
        }

        .project-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .project-status {
            position: absolute;
            top: 14px;
            left: 14px;
            padding: 5px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.94);
            color: var(--green);
            font-size: 11.5px;
            font-weight: 800;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .project-status.in-progress { color: var(--burgundy); }
        .project-status.planned { color: rgba(35, 24, 21, 0.6); }

        .project-image-note {
            position: absolute;
            bottom: 14px;
            left: 14px;
            z-index: 1;
            margin: 0;
            padding: 5px 12px;
            border-radius: 999px;
            background: rgba(12, 24, 21, 0.74);
            color: rgba(255, 255, 255, 0.92);
            font-size: 11px;
            font-weight: 600;
            line-height: 1.45;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .project-summary {
            margin: 4px 0 12px;
            color: rgba(35, 24, 21, 0.72);
            font-size: 15px;
            line-height: 1.75;
            font-weight: 500;
        }

        .project-body {
            padding: 22px 22px 24px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }

        .project-location {
            display: flex;
            align-items: center;
            gap: 6px;
            color: rgba(35, 24, 21, 0.62);
            font-size: 13px;
            font-weight: 600;
        }

        .project-card h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 700;
            color: var(--ink);
        }

        .project-meta {
            display: flex;
            gap: 18px;
            margin-top: 10px;
            padding-top: 14px;
            border-top: 1px solid rgba(35, 24, 21, 0.08);
            color: rgba(35, 24, 21, 0.7);
            font-size: 13px;
            font-weight: 600;
        }

        .project-meta-item {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .project-meta-item svg {
            width: 13px;
            height: 13px;
            opacity: 0.6;
        }

        .project-card .link-more {
            margin-top: 14px;
            color: var(--green);
            font-size: 13px;
            font-weight: 700;
        }

        /* ---------- Why V3D / Strengths ---------- */
        .strength-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .strength {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 28px 24px;
            border-right: 1px solid rgba(255, 255, 255, 0.12);
        }

        .strength:last-child { border-right: 0; }

        .strength-icon {
            display: grid;
            place-items: center;
            width: 44px;
            height: 44px;
            color: var(--white);
            flex-shrink: 0;
            opacity: 0.92;
        }

        .strength-text { display: flex; flex-direction: column; line-height: 1.4; }

        .strength-text strong {
            color: var(--white);
            font-size: 15px;
            font-weight: 700;
        }

        .strength-text span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
            font-weight: 500;
        }

        /* ---------- Business Model ---------- */
        .business-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .business-card {
            display: flex;
            flex-direction: column;
            padding: 28px 26px 26px;
            background: var(--white);
            border: 1px solid rgba(35, 24, 21, 0.08);
            border-radius: 8px;
            min-height: 240px;
        }

        .business-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 24px;
            color: var(--green);
        }

        .business-card h3 {
            margin: 0 0 10px;
            font-size: 16px;
            font-weight: 700;
            color: var(--ink);
        }

        .business-card p {
            margin: 0;
            font-size: 14px;
            line-height: 1.75;
            color: rgba(35, 24, 21, 0.66);
            font-weight: 500;
        }

        .business-card .link-more {
            margin-top: auto;
            padding-top: 18px;
            color: var(--green);
            font-size: 13px;
            font-weight: 700;
        }

        /* ---------- Company / Facts ---------- */
        .company-hero-image {
            width: 100%;
            aspect-ratio: 16 / 5;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 38px;
            background: #0c1f1c;
        }

        .company-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .fact-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.14);
            border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        }

        .fact {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 26px 24px;
            border-right: 1px solid rgba(255, 255, 255, 0.14);
        }

        .fact:last-child { border-right: 0; }

        .fact-label {
            color: rgba(255, 255, 255, 0.55);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .fact-value {
            color: var(--white);
            font-size: 15px;
            font-weight: 600;
            line-height: 1.55;
        }

        /* ---------- Network / Map ---------- */
        .network-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
            gap: 56px;
            align-items: center;
        }

        .asia-map {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 3;
            margin-bottom: 24px;
        }

        .network-grid .asia-map {
            aspect-ratio: 16 / 10;
            margin-bottom: 0;
        }

        .asia-map svg {
            width: 100%;
            height: 100%;
            overflow: visible;
        }

        .asia-map img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .network-cards {
            display: grid;
            gap: 14px;
        }

        .network-cards .content-card {
            padding: 24px;
        }

        .map-country {
            fill: rgba(255, 255, 255, 0.08);
            stroke: rgba(255, 255, 255, 0.18);
            stroke-width: 1;
        }

        .map-line {
            stroke: rgba(255, 255, 255, 0.22);
            stroke-width: 1;
            stroke-dasharray: 3 3;
            fill: none;
        }

        .map-pin-glow {
            fill: rgba(147, 29, 63, 0.35);
        }

        .map-pin {
            fill: var(--burgundy);
            stroke: var(--white);
            stroke-width: 1.5;
        }

        .map-label {
            fill: rgba(255, 255, 255, 0.78);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.04em;
        }

        .map-sublabel {
            fill: rgba(255, 255, 255, 0.5);
            font-size: 9.5px;
            font-weight: 500;
        }

        .network-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.14);
        }

        .network-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        }

        .network-flag {
            display: grid;
            place-items: center;
            width: 36px;
            height: 24px;
            border-radius: 3px;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.78);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.04em;
            flex-shrink: 0;
        }

        .network-text {
            display: flex;
            flex-direction: column;
            line-height: 1.4;
            min-width: 0;
            flex: 1;
        }

        .network-text strong {
            color: var(--white);
            font-size: 15px;
            font-weight: 700;
        }

        .network-text span {
            color: rgba(255, 255, 255, 0.55);
            font-size: 13px;
            font-weight: 500;
        }

        /* ---------- Team ---------- */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .team-specialists {
            margin-top: 96px;
        }

        .team-card {
            display: flex;
            flex-direction: column;
            padding: 0;
            border: 1px solid rgba(35, 24, 21, 0.1);
            border-radius: 8px;
            background: var(--white);
            min-height: 220px;
            overflow: hidden;
        }

        .team-photo {
            aspect-ratio: 1 / 1;
            background: var(--ivory-soft, #efece0);
            overflow: hidden;
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .team-card-body {
            display: flex;
            flex-direction: column;
            padding: 22px 22px 26px;
            flex: 1;
        }

        .team-role {
            margin: 0 0 14px;
            color: var(--green);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .team-card h3 {
            margin: 0 0 12px;
            font-size: 18px;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.4;
        }

        .team-card p {
            margin: 0;
            color: rgba(35, 24, 21, 0.66);
            font-size: 15px;
            line-height: 1.75;
            font-weight: 500;
        }

        /* ---------- Tech specs ---------- */
        .spec-block {
            margin-top: 60px;
            padding-top: 48px;
            border-top: 1px solid rgba(255, 255, 255, 0.14);
        }

        .spec-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .spec-head h3 {
            margin: 0;
            font-size: 18px;
            color: var(--white);
            font-weight: 700;
        }

        .spec-head p {
            margin: 0;
            color: rgba(255, 255, 255, 0.62);
            font-size: 14px;
            font-weight: 500;
        }

        .spec-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            border-left: 1px solid rgba(255, 255, 255, 0.12);
        }

        .spec-row {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 18px 22px;
            border-right: 1px solid rgba(255, 255, 255, 0.12);
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .spec-row dt {
            color: rgba(255, 255, 255, 0.55);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.04em;
        }

        .spec-row dd {
            margin: 0;
            color: var(--white);
            font-size: 14px;
            font-weight: 700;
        }

        /* ---------- Closing ---------- */
        .closing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 0.7fr;
            gap: 0;
            min-height: 360px;
        }

        .closing-contact {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 64px 56px 64px 0;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }

        .closing-contact h2 {
            font-size: clamp(24px, 2.4vw, 32px);
            line-height: 1.4;
            margin-top: 12px;
            word-break: keep-all;
            overflow-wrap: normal;
        }

        .closing-contact .button {
            margin-top: 32px;
            align-self: flex-start;
        }

        .closing-news {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 64px 56px;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }

        .closing-news .section-label { margin-bottom: 22px; }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .news-item {
            display: flex;
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.86);
        }

        .news-item:last-of-type { border-bottom: 0; }

        .news-thumb {
            width: 64px;
            height: 48px;
            border-radius: 4px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            font-size: 14px;
            line-height: 1.5;
            font-weight: 500;
            min-width: 0;
        }

        .news-body span {
            color: rgba(255, 255, 255, 0.5);
            font-size: 12.5px;
            font-weight: 500;
        }

        .closing-news .link-more {
            margin-top: 22px;
            color: rgba(255, 255, 255, 0.86);
            font-size: 12px;
        }

        .closing-image {
            position: relative;
            overflow: hidden;
            margin: 0 calc((100vw - 100%) / -2 + 0px) 0 0;
            height: clamp(320px, 34vw, 460px);
            align-self: center;
        }

        .closing-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ---------- Footer ---------- */
        .footer {
            background: var(--ivory);
            color: var(--ink);
            padding: 64px 0 30px;
            border-top: 1px solid rgba(35, 24, 21, 0.08);
        }

        .footer-top {
            display: grid;
            grid-template-columns: minmax(220px, 0.9fr) repeat(4, minmax(0, 1fr)) minmax(140px, auto);
            gap: 32px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(35, 24, 21, 0.1);
        }

        .footer-brand .logo { width: 96px; margin-bottom: 14px; }

        .footer-tag {
            margin: 0;
            color: rgba(35, 24, 21, 0.62);
            font-size: 12px;
            line-height: 1.7;
            font-weight: 500;
        }

        .footer-col h4 {
            margin: 0 0 14px;
            font-size: 13px;
            font-weight: 700;
            color: var(--ink);
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col a {
            color: rgba(35, 24, 21, 0.66);
            font-size: 13.5px;
            font-weight: 500;
            transition: color 160ms ease;
        }

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

        .footer-col p {
            margin: 0 0 4px;
            color: rgba(35, 24, 21, 0.66);
            font-size: 13.5px;
            font-weight: 500;
            line-height: 1.7;
        }

        .footer-col p strong {
            color: var(--ink);
            font-weight: 600;
        }

        .footer-social {
            display: flex;
            gap: 14px;
            margin-top: 6px;
        }

        .footer-social a {
            display: grid;
            place-items: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            color: var(--ink);
            background: rgba(35, 24, 21, 0.06);
            transition: background 160ms ease;
        }

        .footer-social a:hover { background: rgba(35, 24, 21, 0.12); }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            color: rgba(35, 24, 21, 0.55);
            font-size: 12.5px;
            font-weight: 500;
            gap: 24px;
            flex-wrap: wrap;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a:hover { color: var(--ink); }

        /* ---------- Responsive ---------- */
        @media (max-width: 980px) {
            .hero { min-height: 0; }
            .hero-grid { display: block; min-height: 0; }
            .hero-text { width: 100%; padding: 64px 0 32px; }
            .hero-visual {
                position: relative;
                top: auto;
                bottom: auto;
                right: auto;
                width: calc(100% + 48px);
                margin: 0 -24px;
                height: 380px;
            }
            .hero-visual::before { display: none; }
            .proof-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 14px 24px; padding: 18px 0; }

            .intro-grid { grid-template-columns: 1fr; }
            .intro-image, .intro-image img, .intro-image video { min-height: 320px; }
            .intro-message { padding: 48px 24px; }

            .module-grid, .project-grid, .business-grid { grid-template-columns: 1fr; }

            .strength-grid { grid-template-columns: repeat(2, 1fr); }
            .strength { border-right: 1px solid rgba(255, 255, 255, 0.12); border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
            .strength:nth-child(2n) { border-right: 0; }
            .strength:nth-last-child(-n+2) { border-bottom: 0; }

            .fact-grid { grid-template-columns: repeat(2, 1fr); }
            .fact { border-right: 1px solid rgba(255, 255, 255, 0.14); border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
            .fact:nth-child(2n) { border-right: 0; }
            .fact:nth-last-child(-n+2) { border-bottom: 0; }

            .network-grid { grid-template-columns: 1fr; gap: 36px; }

            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .team-card { min-height: 180px; }

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

            .closing-grid { grid-template-columns: 1fr; min-height: 0; }
            .closing-contact, .closing-news {
                padding: 40px 0;
                border-right: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .closing-image {
                margin: 0;
                width: calc(100% + 48px);
                margin-left: -24px;
                margin-right: -24px;
                height: 280px;
            }
            .closing-image img { min-height: 280px; }

            .footer-top {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }
            .footer-brand { grid-column: 1 / -1; }

            .nav { display: none; }
            .nav .button { display: inline-flex; }
            .header-nav-mobile {
                display: inline-flex;
                gap: 8px;
            }

            .section { padding: 80px 0; }
        }

        @media (max-width: 560px) {
            .container { width: min(100% - 32px, 1200px); }
            .hero h1 { font-size: 34px; }
            .section-head { display: block; }
            .section-head .link-more { margin-top: 18px; }
            .footer-top { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
            .fact-grid { grid-template-columns: 1fr; }
            .fact { border-right: 0; }
            .team-grid { grid-template-columns: 1fr; }
            .proof-bar-inner { grid-template-columns: 1fr; gap: 12px; }
        }
    

        /* ---------- Lower pages ---------- */
        .lower-hero {
            position: relative;
            background: var(--green);
            color: var(--white);
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 120px 0 60px;
            overflow: hidden;
        }

        .lower-hero .lower-visual {
            position: absolute;
            inset: 0;
            z-index: 0;
            border-radius: 0;
            aspect-ratio: auto;
            background: var(--ink);
        }

        .lower-hero .lower-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .lower-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(180deg, rgba(12, 24, 21, 0.28) 0%, rgba(12, 24, 21, 0) 34%, rgba(12, 24, 21, 0.55) 70%, rgba(12, 24, 21, 0.88) 100%);
            pointer-events: none;
        }

        .lower-hero-grid {
            display: block;
        }

        .lower-hero-grid > :not(.lower-visual) {
            position: relative;
            z-index: 2;
            max-width: min(940px, 100%);
        }

        .lower-eyebrow {
            margin: 0 0 18px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .lower-hero h1 {
            margin: 0;
            font-size: clamp(38px, 4.4vw, 64px);
            line-height: 1.12;
            font-weight: 700;
            letter-spacing: 0;
            text-shadow: 0 2px 30px rgba(0, 0, 0, 0.28);
        }

        .lower-hero p {
            margin: 22px 0 0;
            max-width: 620px;
            color: rgba(255, 255, 255, 0.86);
            font-size: 15px;
            line-height: 1.9;
            font-weight: 500;
        }

        .lower-hero .button-secondary {
            background: transparent;
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.42);
        }

        .lower-hero .button-secondary:hover {
            border-color: var(--white);
            background: rgba(255, 255, 255, 0.06);
        }

        /* Split (zig-zag) media + text */
        .split {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            align-items: stretch;
            overflow: hidden;
            border-radius: 10px;
            border: 1px solid rgba(35, 24, 21, 0.08);
            background: var(--white);
        }

        .split + .split { margin-top: 36px; }

        .split-media {
            position: relative;
            min-height: 380px;
            overflow: hidden;
            background: var(--ivory-soft);
        }

        .split-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .split-media video {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 380px;
            object-fit: cover;
            background: #000;
        }

        .split-body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 48px;
        }

        .split-body h3 {
            margin: 0 0 14px;
            font-size: 22px;
        }

        .split-body p {
            margin: 0;
            color: rgba(35, 24, 21, 0.66);
            font-size: 15px;
            line-height: 1.85;
            font-weight: 500;
        }

        .split.reverse .split-media { order: 2; }

        /* Full-bleed media band */
        .media-band {
            position: relative;
            height: clamp(300px, 40vw, 560px);
            overflow: hidden;
            background: var(--ink);
        }

        .media-band img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .media-band-caption {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            padding: 44px 0;
            background: linear-gradient(180deg, rgba(12, 24, 21, 0) 0%, rgba(12, 24, 21, 0.72) 100%);
            color: var(--white);
        }

        .media-band-caption p {
            margin: 0;
            max-width: 720px;
            font-size: clamp(18px, 2vw, 24px);
            font-weight: 700;
            line-height: 1.4;
        }

        .media-band-caption .media-band-note {
            margin-top: 10px;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.78);
        }

        .page-grid-2 {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
            gap: 64px;
            align-items: start;
        }

        .body-copy {
            margin: 0;
            color: rgba(35, 24, 21, 0.68);
            font-size: 15px;
            line-height: 1.9;
            font-weight: 500;
        }

        .section-dark .body-copy,
        .section-green .body-copy {
            color: rgba(255, 255, 255, 0.7);
        }

        .stack { display: grid; gap: 18px; }
        .stack-lg { display: grid; gap: 36px; }

        .content-card {
            background: var(--white);
            border: 1px solid rgba(35, 24, 21, 0.08);
            border-radius: 8px;
            padding: 28px;
        }

        .content-card.dark {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .content-card h3 { margin-bottom: 10px; }

        .content-card p {
            margin: 0;
            color: rgba(35, 24, 21, 0.66);
            font-size: 15px;
            line-height: 1.8;
            font-weight: 500;
        }

        .content-card.dark p {
            color: rgba(255, 255, 255, 0.66);
        }

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

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

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

        .detail-list {
            display: grid;
            gap: 0;
            border-top: 1px solid rgba(35, 24, 21, 0.1);
        }

        .detail-row {
            display: grid;
            grid-template-columns: 150px minmax(0, 1fr);
            gap: 24px;
            padding: 18px 0;
            border-bottom: 1px solid rgba(35, 24, 21, 0.1);
            font-size: 14.5px;
        }

        .detail-row dt {
            color: rgba(35, 24, 21, 0.54);
            font-weight: 800;
        }

        .detail-row dd {
            margin: 0;
            color: rgba(35, 24, 21, 0.76);
            font-weight: 500;
            line-height: 1.75;
        }

        .process {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.14);
            border-left: 1px solid rgba(255, 255, 255, 0.14);
        }

        .process-step {
            padding: 24px;
            border-right: 1px solid rgba(255, 255, 255, 0.14);
            border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        }

        .process-step span {
            display: block;
            margin-bottom: 18px;
            color: rgba(255, 255, 255, 0.46);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.1em;
        }

        .process-step strong {
            display: block;
            color: var(--white);
            font-size: 15px;
            line-height: 1.55;
        }

        .project-list {
            display: grid;
            gap: 40px;
        }

        .project-detail-card {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: 0;
            overflow: hidden;
            border-radius: 8px;
            border: 1px solid rgba(35, 24, 21, 0.08);
            background: var(--white);
        }

        .project-detail-card .project-image {
            height: auto;
            min-height: 340px;
        }

        .project-detail-card .project-body {
            padding: 34px;
        }

        .badge-note {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            min-height: 28px;
            padding: 0 12px;
            border-radius: 999px;
            background: rgba(23, 51, 46, 0.08);
            color: var(--green);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .news-page-list {
            display: grid;
            gap: 0;
            border-top: 1px solid rgba(35, 24, 21, 0.1);
        }

        .news-page-item {
            display: grid;
            grid-template-columns: 180px minmax(0, 1fr);
            gap: 28px;
            padding: 28px 0;
            border-bottom: 1px solid rgba(35, 24, 21, 0.1);
        }

        .news-page-thumb {
            overflow: hidden;
            border-radius: 6px;
            aspect-ratio: 4 / 3;
            background: var(--ivory-soft);
        }

        .news-page-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-meta {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 8px;
            color: rgba(35, 24, 21, 0.52);
            font-size: 13px;
            font-weight: 700;
        }

        .contact-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
            gap: 48px;
            align-items: start;
        }

        .form-demo {
            background: var(--white);
            border: 1px solid rgba(35, 24, 21, 0.08);
            border-radius: 8px;
            padding: 28px;
        }

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

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

        .field.full { grid-column: 1 / -1; }

        .field label {
            color: rgba(35, 24, 21, 0.68);
            font-size: 13px;
            font-weight: 700;
        }

        .required-mark {
            color: #c4362e;
            margin-left: 2px;
        }

        .field input,
        .field select,
        .field textarea {
            width: 100%;
            min-height: 44px;
            border: 1px solid rgba(35, 24, 21, 0.14);
            border-radius: 6px;
            padding: 10px 12px;
            background: var(--pale);
            color: var(--ink);
            font: inherit;
            font-size: 14.5px;
        }

        .field textarea {
            min-height: 136px;
            resize: vertical;
        }

        .form-actions {
            align-items: start;
            gap: 14px;
        }

        .form-actions p {
            color: rgba(35, 24, 21, 0.58);
            font-size: 12px;
            line-height: 1.7;
            margin: 0;
        }

        .form-actions a {
            color: inherit;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .mobile-menu { display: none; }

        @media (max-width: 980px) {
            .lower-hero-grid,
            .page-grid-2,
            .project-detail-card,
            .contact-layout {
                grid-template-columns: 1fr;
            }

            .split,
            .split.reverse {
                grid-template-columns: 1fr;
            }
            .split.reverse .split-media { order: 0; }
            .split-media { min-height: 240px; }
            .split-body { padding: 32px 24px; }

            .feature-grid,
            .feature-grid.two,
            .model-grid,
            .process {
                grid-template-columns: 1fr;
            }

            .project-detail-card .project-image { min-height: 260px; }

            .news-page-item {
                grid-template-columns: 120px minmax(0, 1fr);
                gap: 18px;
            }

            .mobile-menu {
                display: block;
                color: var(--white);
                position: relative;
            }

            .mobile-menu summary {
                list-style: none;
                display: inline-flex;
                align-items: center;
                min-height: 40px;
                padding: 0 14px;
                border: 1px solid rgba(255,255,255,0.24);
                border-radius: 999px;
                font-size: 12px;
                font-weight: 800;
                cursor: pointer;
            }

            .mobile-menu summary::-webkit-details-marker { display: none; }

            .mobile-menu-links {
                position: absolute;
                top: calc(100% + 12px);
                right: 0;
                display: grid;
                gap: 0;
                width: 220px;
                padding: 8px;
                border-radius: 8px;
                background: var(--green-deep);
                border: 1px solid rgba(255,255,255,0.12);
                box-shadow: 0 18px 42px rgba(0,0,0,0.24);
            }

            .mobile-menu-links a {
                padding: 11px 12px;
                border-radius: 6px;
                color: rgba(255,255,255,0.86);
                font-size: 13px;
                font-weight: 700;
            }

            .mobile-menu-links a:hover { background: rgba(255,255,255,0.08); }
        }

        @media (max-width: 560px) {
            .lower-hero { padding: 92px 0 40px; min-height: 52vh; }
            .detail-row { grid-template-columns: 1fr; gap: 6px; }
            .news-page-item { grid-template-columns: 1fr; }
            .form-grid { grid-template-columns: 1fr; }
            .content-card { padding: 22px; }
        }

/* ---------- Home Page Overrides ---------- */
:root {
            --ink: #1a1512;
            --ink-soft: #2a221d;
            --green: #17332e;
            --green-deep: #112823;
            --ivory: #f5f3e8;
            --ivory-soft: #efece0;
            --pale: #f8f7ec;
            --greige: #a69d99;
            --burgundy: #931d3f;
            --white: #ffffff;
        }

        * { box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            margin: 0;
            background: var(--ivory);
            color: var(--ink);
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img { display: block; max-width: 100%; }
        a { color: inherit; text-decoration: none; }
        svg { display: block; }

        .page { overflow: hidden; }

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

        /* ---------- Header ---------- */
        .header {
            position: sticky;
            top: 0;
            z-index: 30;
            background: var(--green-deep);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--white);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            gap: 32px;
        }

        .logo { width: 92px; height: auto; }

        .home-page .header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10;
            background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 36px;
            font-size: 14px;
            font-weight: 600;
        }

        .nav a { color: var(--white); opacity: 0.86; transition: opacity 160ms ease; }
        .nav a:hover { opacity: 1; }
        .nav a.button { opacity: 1; }
        .nav a.button-light { color: var(--green); }
        .nav a.button-primary { color: var(--white); }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 44px;
            padding: 0 22px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 700;
            transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
            cursor: pointer;
            border: 1px solid transparent;
            white-space: nowrap;
        }

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

        .button-primary {
            background: var(--green);
            color: var(--white);
            border-color: var(--green);
        }

        .button-primary:hover { background: var(--green-deep); }

        .button-secondary {
            background: transparent;
            color: var(--ink);
            border-color: rgba(35, 24, 21, 0.28);
        }

        .button-secondary:hover { border-color: var(--ink); }

        .button-light {
            background: var(--white);
            color: var(--green);
            border-color: var(--white);
        }

        .button .arrow {
            display: inline-block;
            width: 14px;
            height: 14px;
            position: relative;
        }

        .button .arrow::before,
        .button .arrow::after {
            content: "";
            position: absolute;
            background: currentColor;
        }

        .button .arrow::before {
            top: 50%;
            left: 0;
            right: 0;
            height: 1.4px;
            transform: translateY(-50%);
        }

        .button .arrow::after {
            top: 50%;
            right: 0;
            width: 6px;
            height: 6px;
            border-top: 1.4px solid currentColor;
            border-right: 1.4px solid currentColor;
            transform: translateY(-50%) rotate(45deg);
            background: transparent;
        }

        /* ---------- Hero ---------- */
        .hero {
            position: relative;
            background: var(--ink);
            color: var(--white);
            min-height: min(920px, 92vh);
            display: flex;
            align-items: stretch;
            border-bottom: 1px solid rgba(35, 24, 21, 0.08);
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 2;
            background:
                linear-gradient(90deg, rgba(8, 7, 6, 0.72) 0%, rgba(8, 7, 6, 0.44) 38%, rgba(8, 7, 6, 0.08) 72%),
                linear-gradient(180deg, rgba(8, 7, 6, 0.16) 0%, rgba(8, 7, 6, 0.34) 100%);
            pointer-events: none;
        }

        .hero-brand {
            position: absolute;
            top: 32px;
            left: 50%;
            z-index: 5;
            width: min(1200px, calc(100% - 48px));
            transform: translateX(-50%);
        }

        .hero-brand img { width: 94px; height: auto; }

        .hero-grid {
            position: static;
            min-height: min(920px, 92vh);
            display: flex;
            align-items: center;
        }

        .hero-text {
            position: relative;
            z-index: 3;
            width: min(820px, 68%);
            padding: 148px 0 104px;
        }

        .hero-text::before {
            content: "";
            display: block;
            width: 44px;
            height: 3px;
            margin-bottom: 22px;
            background: var(--white);
        }

        .hero-eyebrow {
            margin: 0 0 18px;
            color: rgba(35, 24, 21, 0.62);
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .hero h1 {
            margin: 0;
            max-width: 820px;
            font-size: clamp(48px, 5vw, 76px);
            line-height: 1.08;
            letter-spacing: 0;
            font-weight: 700;
            color: var(--white);
        }

        .hero-line { display: block; }

        .hero-subhead {
            margin: 24px 0 0;
            color: rgba(255, 255, 255, 0.86);
            font-size: 13px;
            font-weight: 800;
            line-height: 1.5;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .hero-copy {
            margin: 14px 0 0;
            max-width: 720px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 14.5px;
            line-height: 1.85;
            font-weight: 500;
        }

        .hero .button-primary {
            background: var(--white);
            color: var(--green);
            border-color: var(--white);
        }

        .hero .button-primary:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        .hero .button-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.44);
        }

        .hero .button-secondary:hover {
            border-color: var(--white);
            color: var(--white);
            background: rgba(255, 255, 255, 0.14);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 36px;
        }

        .hero-visual {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: var(--ink);
            z-index: 1;
            border-radius: 0;
            box-shadow: none;
        }

        .hero-visual::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 2;
            background: radial-gradient(circle at 78% 38%, rgba(255, 255, 255, 0.08), transparent 34%);
            pointer-events: none;
        }

        .hero-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-video-badge {
            position: absolute;
            right: max(48px, calc((100vw - 1200px) / 2));
            bottom: 42px;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            min-height: 48px;
            padding: 8px 16px 8px 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.92);
            color: var(--green);
            font-size: 12.5px;
            font-weight: 800;
            box-shadow: 0 14px 38px rgba(35, 24, 21, 0.12);
        }

        .hero-video-badge::before {
            content: "";
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--green);
        }

        .hero-video-badge::after {
            content: "";
            position: absolute;
            left: 24px;
            width: 0;
            height: 0;
            border-top: 7px solid transparent;
            border-bottom: 7px solid transparent;
            border-left: 10px solid var(--white);
        }

        /* ---------- Hero proof bar (below hero, full-width) ---------- */
        .proof-bar {
            background: var(--white);
            border-top: 1px solid rgba(35, 24, 21, 0.08);
            border-bottom: 1px solid rgba(35, 24, 21, 0.08);
            color: var(--ink);
        }

        .proof-bar-inner {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px 24px;
            padding: 22px 0;
        }

        .proof {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

        .proof-icon {
            display: grid;
            place-items: center;
            width: 30px;
            height: 30px;
            color: var(--green);
            flex-shrink: 0;
        }

        .proof-text {
            display: flex;
            flex-direction: column;
            line-height: 1.35;
        }

        .proof-text strong {
            color: var(--ink);
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 0.01em;
        }

        .proof-text span {
            color: rgba(35, 24, 21, 0.58);
            font-size: 13px;
            font-weight: 650;
        }

        /* ---------- Sections ---------- */
        .section { padding: 110px 0; }
        .section-dark { background: var(--ink); color: var(--white); }
        .section-green { background: var(--green); color: var(--white); }
        .section-light { background: var(--ivory); }
        .section-white { background: var(--white); }

        .section-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 32px;
            margin-bottom: 48px;
        }

        .section-label {
            margin: 0 0 8px;
            color: rgba(255, 255, 255, 0.55);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .section-white .section-label,
        .section-light .section-label,
        .section-pale .section-label {
            color: rgba(35, 24, 21, 0.55);
        }

        h2 {
            margin: 0;
            font-size: clamp(28px, 2.8vw, 38px);
            line-height: 1.28;
            letter-spacing: 0;
            font-weight: 700;
        }

        h3 {
            margin: 0;
            font-size: 18px;
            line-height: 1.45;
            font-weight: 700;
        }

        .lead {
            margin: 0;
            max-width: 460px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            line-height: 1.85;
            font-weight: 500;
        }

        .section-white .lead,
        .section-light .lead { color: rgba(35, 24, 21, 0.66); }

        .link-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: inherit;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
            transition: gap 160ms ease;
        }

        .link-more::after {
            content: "";
            width: 26px;
            height: 1px;
            background: currentColor;
            position: relative;
        }

        .link-more:hover { gap: 14px; }

        /* ---------- Intro ---------- */
        .intro-grid {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
            gap: 48px;
            align-items: stretch;
        }

        .intro-image {
            min-height: 420px;
            overflow: hidden;
            border-radius: 10px;
            background: var(--ivory-soft);
        }

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

        .intro-image video {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 420px;
            object-fit: cover;
            background: #000;
        }

        .intro-message {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 28px 0;
        }

        .intro-message h2 {
            font-size: clamp(28px, 3vw, 42px);
            line-height: 1.28;
            font-weight: 700;
            color: var(--ink);
        }

        .intro-message p {
            margin: 24px 0 30px;
            color: rgba(35, 24, 21, 0.68);
            font-size: 15px;
            line-height: 1.9;
            max-width: 420px;
        }

        .why-now-list {
            display: grid;
            gap: 12px;
            margin: 6px 0 30px;
            padding: 0;
            list-style: none;
        }

        .why-now-list li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            color: rgba(35, 24, 21, 0.72);
            font-size: 14.5px;
            line-height: 1.75;
            font-weight: 550;
        }

        .why-now-list li::before {
            content: "";
            width: 8px;
            height: 8px;
            margin-top: 0.72em;
            border-radius: 50%;
            background: var(--green);
            flex-shrink: 0;
        }

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

        .module {
            position: relative;
            padding: 26px 26px 30px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.03);
            display: flex;
            flex-direction: column;
        }

        .module-num {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
            font-size: 12px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.55);
            letter-spacing: 0.1em;
        }

        .module-num strong {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 800;
            letter-spacing: 0.05em;
        }

        .module-image {
            height: 170px;
            margin-bottom: 26px;
            border-radius: 6px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.3);
        }

        .module-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .module-metric {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 8px;
            color: var(--white);
        }

        .module-metric strong {
            font-size: 38px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 0;
        }

        .module-metric span {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
        }

        .module .link-more {
            margin-top: auto;
            padding-top: 22px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 12px;
        }

        .module-copy {
            margin: 0;
            color: rgba(35, 24, 21, 0.66);
            font-size: 14px;
            line-height: 1.65;
            font-weight: 500;
        }

        /* ---------- Projects ---------- */
        .project-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .project-card {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border-radius: 8px;
            background: var(--white);
            border: 1px solid rgba(35, 24, 21, 0.06);
            transition: transform 200ms ease, box-shadow 200ms ease;
        }

        .project-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(35, 24, 21, 0.08);
        }

        .project-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .project-status {
            position: absolute;
            top: 14px;
            left: 14px;
            padding: 5px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.94);
            color: var(--green);
            font-size: 11.5px;
            font-weight: 800;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .project-status.in-progress { color: var(--burgundy); }
        .project-status.planned { color: rgba(35, 24, 21, 0.6); }

        .project-summary {
            margin: 4px 0 12px;
            color: rgba(35, 24, 21, 0.72);
            font-size: 15px;
            line-height: 1.75;
            font-weight: 500;
        }

        .project-body {
            padding: 22px 22px 24px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }

        .project-location {
            display: flex;
            align-items: center;
            gap: 6px;
            color: rgba(35, 24, 21, 0.62);
            font-size: 13px;
            font-weight: 600;
        }

        .project-card h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 700;
            color: var(--ink);
        }

        .project-meta {
            display: flex;
            gap: 18px;
            margin-top: 10px;
            padding-top: 14px;
            border-top: 1px solid rgba(35, 24, 21, 0.08);
            color: rgba(35, 24, 21, 0.7);
            font-size: 13px;
            font-weight: 600;
        }

        .project-meta-item {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .project-meta-item svg {
            width: 13px;
            height: 13px;
            opacity: 0.6;
        }

        .project-card .link-more {
            margin-top: 14px;
            color: var(--green);
            font-size: 13px;
            font-weight: 700;
        }

        .home-page .section-white {
            padding: 140px 0 126px;
        }

        .top-projects {
            padding: 96px 0 132px;
        }

        .top-projects .section-head {
            margin-bottom: 38px;
        }

        .top-projects .project-image {
            height: 280px;
        }

        .top-projects .project-body {
            padding: 18px 20px 22px;
            min-height: 136px;
        }

        .top-projects .project-summary {
            font-size: 14px;
            line-height: 1.6;
            margin: 2px 0 4px;
        }

        /* ---------- Why V3D / Strengths ---------- */
        .strength-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .strength {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid rgba(35, 24, 21, 0.1);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.72);
        }

        .strength-media {
            aspect-ratio: 4 / 3;
            overflow: hidden;
            border-radius: 8px;
            background: rgba(35, 24, 21, 0.06);
        }

        .strength-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 640ms ease;
        }

        .strength:hover .strength-media img { transform: scale(1.045); }

        .strength-text {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 26px 26px 30px;
        }

        .strength-num {
            color: rgba(35, 24, 21, 0.45);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.12em;
            line-height: 1;
        }

        .strength-text strong {
            color: var(--ink);
            font-size: 17px;
            font-weight: 700;
            line-height: 1.5;
            letter-spacing: 0;
        }

        .strength-text p {
            margin: 0;
            color: rgba(35, 24, 21, 0.62);
            font-size: 14px;
            font-weight: 500;
            line-height: 1.78;
        }

        .top-why {
            padding: 118px 0 136px;
            background: var(--white);
            color: var(--ink);
        }

        .top-why .section-head {
            margin-bottom: 44px;
        }

        .top-why .section-label {
            color: rgba(35, 24, 21, 0.55);
        }

        .top-why .lead {
            max-width: 520px;
            color: rgba(35, 24, 21, 0.66);
        }

        .top-company {
            padding: 76px 0;
        }

        .top-company .section-head {
            margin-bottom: 28px;
        }

        /* ---------- Business Model ---------- */
        .business-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .business-card {
            display: flex;
            flex-direction: column;
            padding: 28px 26px 26px;
            background: var(--white);
            border: 1px solid rgba(35, 24, 21, 0.08);
            border-radius: 8px;
            min-height: 240px;
        }

        .business-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 24px;
            color: var(--green);
        }

        .business-card h3 {
            margin: 0 0 10px;
            font-size: 16px;
            font-weight: 700;
            color: var(--ink);
        }

        .business-card p {
            margin: 0;
            font-size: 14px;
            line-height: 1.75;
            color: rgba(35, 24, 21, 0.66);
            font-weight: 500;
        }

        .business-card .link-more {
            margin-top: auto;
            padding-top: 18px;
            color: var(--green);
            font-size: 13px;
            font-weight: 700;
        }

        /* ---------- Company / Facts ---------- */
        .company-hero-image {
            width: 100%;
            aspect-ratio: 16 / 5;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 38px;
            background: #0c1f1c;
        }

        .company-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .fact-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.14);
            border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        }

        .fact {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 26px 24px;
            border-right: 1px solid rgba(255, 255, 255, 0.14);
        }

        .fact:last-child { border-right: 0; }

        .fact-label {
            color: rgba(255, 255, 255, 0.55);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .fact-value {
            color: var(--white);
            font-size: 15px;
            font-weight: 600;
            line-height: 1.55;
        }

        /* ---------- Network / Map ---------- */
        .network-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
            gap: 56px;
            align-items: center;
        }

        .asia-map {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 3;
            margin-bottom: 24px;
        }

        .network-grid .asia-map {
            aspect-ratio: 16 / 10;
            margin-bottom: 0;
        }

        .asia-map svg {
            width: 100%;
            height: 100%;
            overflow: visible;
        }

        .asia-map img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .network-cards {
            display: grid;
            gap: 14px;
        }

        .network-cards .content-card {
            padding: 24px;
        }

        .map-country {
            fill: rgba(255, 255, 255, 0.08);
            stroke: rgba(255, 255, 255, 0.18);
            stroke-width: 1;
        }

        .map-line {
            stroke: rgba(255, 255, 255, 0.22);
            stroke-width: 1;
            stroke-dasharray: 3 3;
            fill: none;
        }

        .map-pin-glow {
            fill: rgba(147, 29, 63, 0.35);
        }

        .map-pin {
            fill: var(--burgundy);
            stroke: var(--white);
            stroke-width: 1.5;
        }

        .map-label {
            fill: rgba(255, 255, 255, 0.78);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.04em;
        }

        .map-sublabel {
            fill: rgba(255, 255, 255, 0.5);
            font-size: 9.5px;
            font-weight: 500;
        }

        .network-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.14);
        }

        .network-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        }

        .network-flag {
            display: grid;
            place-items: center;
            width: 36px;
            height: 24px;
            border-radius: 3px;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.78);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.04em;
            flex-shrink: 0;
        }

        .network-text {
            display: flex;
            flex-direction: column;
            line-height: 1.4;
            min-width: 0;
            flex: 1;
        }

        .network-text strong {
            color: var(--white);
            font-size: 15px;
            font-weight: 700;
        }

        .network-text span {
            color: rgba(255, 255, 255, 0.55);
            font-size: 13px;
            font-weight: 500;
        }

        /* ---------- Team ---------- */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .team-card {
            display: flex;
            flex-direction: column;
            padding: 0;
            border: 1px solid rgba(35, 24, 21, 0.1);
            border-radius: 8px;
            background: var(--white);
            min-height: 220px;
            overflow: hidden;
        }

        .team-photo {
            aspect-ratio: 1 / 1;
            background: var(--ivory-soft, #efece0);
            overflow: hidden;
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .team-card-body {
            display: flex;
            flex-direction: column;
            padding: 22px 22px 26px;
            flex: 1;
        }

        .team-role {
            margin: 0 0 14px;
            color: var(--green);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .team-card h3 {
            margin: 0 0 12px;
            font-size: 18px;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.4;
        }

        .team-card p {
            margin: 0;
            color: rgba(35, 24, 21, 0.66);
            font-size: 15px;
            line-height: 1.75;
            font-weight: 500;
        }

        /* ---------- Tech specs ---------- */
        .spec-block {
            margin-top: 60px;
            padding-top: 48px;
            border-top: 1px solid rgba(255, 255, 255, 0.14);
        }

        .spec-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .spec-head h3 {
            margin: 0;
            font-size: 18px;
            color: var(--white);
            font-weight: 700;
        }

        .spec-head p {
            margin: 0;
            color: rgba(255, 255, 255, 0.62);
            font-size: 14px;
            font-weight: 500;
        }

        .spec-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            border-left: 1px solid rgba(255, 255, 255, 0.12);
        }

        .spec-row {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 18px 22px;
            border-right: 1px solid rgba(255, 255, 255, 0.12);
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .spec-row dt {
            color: rgba(255, 255, 255, 0.55);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.04em;
        }

        .spec-row dd {
            margin: 0;
            color: var(--white);
            font-size: 14px;
            font-weight: 700;
        }

        /* ---------- Closing ---------- */
        .closing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 0.7fr;
            gap: 0;
            min-height: 360px;
        }

        .closing-contact {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 64px 56px 64px 0;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }

        .closing-contact h2 {
            font-size: clamp(24px, 2.4vw, 32px);
            line-height: 1.4;
            margin-top: 12px;
            word-break: keep-all;
            overflow-wrap: normal;
        }

        .closing-contact .button {
            margin-top: 32px;
            align-self: flex-start;
        }

        .closing-news {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 64px 56px;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }

        .closing-news .section-label { margin-bottom: 22px; }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .news-item {
            display: flex;
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.86);
        }

        .news-item:last-of-type { border-bottom: 0; }

        .news-thumb {
            width: 64px;
            height: 48px;
            border-radius: 4px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            font-size: 14px;
            line-height: 1.5;
            font-weight: 500;
            min-width: 0;
        }

        .news-body span {
            color: rgba(255, 255, 255, 0.5);
            font-size: 12.5px;
            font-weight: 500;
        }

        .closing-news .link-more {
            margin-top: 22px;
            color: rgba(255, 255, 255, 0.86);
            font-size: 12px;
        }

        .closing-image {
            position: relative;
            overflow: hidden;
            margin: 0 calc((100vw - 100%) / -2 + 0px) 0 0;
            height: clamp(320px, 34vw, 460px);
            align-self: center;
        }

        .closing-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ---------- Footer ---------- */
        .footer {
            background: var(--ivory);
            color: var(--ink);
            padding: 64px 0 30px;
            border-top: 1px solid rgba(35, 24, 21, 0.08);
        }

        .footer-top {
            display: grid;
            grid-template-columns: minmax(220px, 0.9fr) repeat(4, minmax(0, 1fr)) minmax(140px, auto);
            gap: 32px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(35, 24, 21, 0.1);
        }

        .footer-brand .logo { width: 96px; margin-bottom: 14px; }

        .footer-tag {
            margin: 0;
            color: rgba(35, 24, 21, 0.62);
            font-size: 12px;
            line-height: 1.7;
            font-weight: 500;
        }

        .footer-col h4 {
            margin: 0 0 14px;
            font-size: 13px;
            font-weight: 700;
            color: var(--ink);
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col a {
            color: rgba(35, 24, 21, 0.66);
            font-size: 13.5px;
            font-weight: 500;
            transition: color 160ms ease;
        }

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

        .footer-col p {
            margin: 0 0 4px;
            color: rgba(35, 24, 21, 0.66);
            font-size: 13.5px;
            font-weight: 500;
            line-height: 1.7;
        }

        .footer-col p strong {
            color: var(--ink);
            font-weight: 600;
        }

        .footer-social {
            display: flex;
            gap: 14px;
            margin-top: 6px;
        }

        .footer-social a {
            display: grid;
            place-items: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            color: var(--ink);
            background: rgba(35, 24, 21, 0.06);
            transition: background 160ms ease;
        }

        .footer-social a:hover { background: rgba(35, 24, 21, 0.12); }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            color: rgba(35, 24, 21, 0.55);
            font-size: 12.5px;
            font-weight: 500;
            gap: 24px;
            flex-wrap: wrap;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a:hover { color: var(--ink); }

        .mobile-menu { display: none; }

        /* ---------- Responsive ---------- */
        @media (max-width: 980px) {
            .hero { min-height: 760px; }
            .hero::before {
                background:
                    linear-gradient(180deg, rgba(8, 7, 6, 0.58) 0%, rgba(8, 7, 6, 0.72) 100%),
                    linear-gradient(90deg, rgba(8, 7, 6, 0.5) 0%, rgba(8, 7, 6, 0.18) 100%);
            }
            .hero-grid { min-height: 760px; gap: 0; }
            .hero-brand { top: 22px; }
            .hero-brand img { width: 86px; }
            .hero-text { width: 100%; padding: 104px 0 88px; }
            .hero-visual {
                height: 100%;
                margin-bottom: 0;
            }
            .hero-video-badge { right: 24px; bottom: 28px; }
            .proof-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 14px 24px; padding: 18px 0; }

            .intro-grid { grid-template-columns: 1fr; }
            .intro-image, .intro-image img, .intro-image video { min-height: 320px; }
            .intro-message { padding: 0; }

            .module-grid, .project-grid, .business-grid { grid-template-columns: 1fr; }

            .strength-grid { grid-template-columns: repeat(2, 1fr); }
            .strength { min-height: 360px; }

            .fact-grid { grid-template-columns: repeat(2, 1fr); }
            .fact { border-right: 1px solid rgba(255, 255, 255, 0.14); border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
            .fact:nth-child(2n) { border-right: 0; }
            .fact:nth-last-child(-n+2) { border-bottom: 0; }

            .network-grid { grid-template-columns: 1fr; gap: 36px; }

            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .team-card { min-height: 180px; }

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

            .closing-grid { grid-template-columns: 1fr; min-height: 0; }
            .closing-contact, .closing-news {
                padding: 40px 0;
                border-right: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .closing-image {
                margin: 0;
                width: calc(100% + 48px);
                margin-left: -24px;
                margin-right: -24px;
                height: 280px;
            }
            .closing-image img { min-height: 280px; }

            .footer-top {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }
            .footer-brand { grid-column: 1 / -1; }

            .nav { display: none; }
            .mobile-menu {
                display: block;
                color: var(--white);
                position: relative;
            }

            .mobile-menu summary {
                list-style: none;
                display: inline-flex;
                align-items: center;
                min-height: 40px;
                padding: 0 14px;
                border: 1px solid rgba(255, 255, 255, 0.24);
                border-radius: 999px;
                font-size: 12px;
                font-weight: 800;
                cursor: pointer;
            }

            .mobile-menu summary::-webkit-details-marker { display: none; }

            .mobile-menu-links {
                position: absolute;
                top: calc(100% + 12px);
                right: 0;
                display: grid;
                gap: 0;
                width: 220px;
                padding: 8px;
                border-radius: 8px;
                background: var(--green-deep);
                border: 1px solid rgba(255, 255, 255, 0.12);
                box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
            }

            .mobile-menu-links a {
                padding: 11px 12px;
                border-radius: 6px;
                color: rgba(255, 255, 255, 0.86);
                font-size: 13px;
                font-weight: 700;
            }

            .mobile-menu-links a:hover {
                background: rgba(255, 255, 255, 0.08);
            }

            .section { padding: 80px 0; }
            .home-page .section-white { padding: 96px 0 88px; }
            .top-why { padding: 86px 0 96px; }
            .top-projects { padding: 82px 0 96px; }
        }

        @media (max-width: 560px) {
            .container { width: min(100% - 32px, 1200px); }
            .hero { min-height: 700px; }
            .hero-grid { min-height: 700px; }
            .hero h1 { font-size: 36px; }
            .hero-copy { font-size: 14px; }
            .hero-actions { margin-top: 30px; }
            .hero-video-badge { left: 16px; right: auto; bottom: 22px; }
            .section-head { display: block; }
            .section-head .link-more { margin-top: 18px; }
            .footer-top { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
            .fact-grid { grid-template-columns: 1fr; }
            .fact { border-right: 0; }
            .team-grid { grid-template-columns: 1fr; }
            .proof-bar-inner { grid-template-columns: 1fr; gap: 16px 18px; }
            .proof:last-child { grid-column: auto; }
            .strength-grid { grid-template-columns: 1fr; }
            .strength { min-height: 340px; }
        }


/* ---------- Shared Enhancements ---------- */
.nav a[aria-current="page"],
.mobile-menu-links a[aria-current="page"] {
    opacity: 1;
    color: var(--white);
}

.nav a[aria-current="page"]::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 8px;
    background: currentColor;
    opacity: 0.72;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.button:focus-visible {
    outline: 3px solid rgba(22, 115, 255, 0.75);
    outline-offset: 4px;
    border-radius: 6px;
}

.button:focus-visible { border-radius: 999px; }

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 450ms ease, transform 450ms ease;
}

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

.footer-social a[aria-disabled="true"] {
    pointer-events: none;
    opacity: 0.42;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---------- Light / Dark rhythm (NOT A HOTEL-style contrast) ---------- */

/* Proof bar is tuned per context, not unified: DARK on the home page so it
   reads as an anchored band directly under the dark hero (tighter composition),
   and WHITE on lower pages (e.g. Brunei) where it acts as a bright separator
   between dark sections and avoids stacking three dark bands. */
.home-page .proof-bar {
    background: var(--ink);
    border-top-color: rgba(255, 255, 255, 0.08);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
}
.home-page .proof-icon { color: rgba(255, 255, 255, 0.82); }
.home-page .proof-text strong { color: var(--white); }
.home-page .proof-text span { color: rgba(255, 255, 255, 0.6); }

.section-dark .intro-message,
.section-dark .intro-message h2,
.section-dark .intro-message .link-more {
    color: var(--white);
}
.section-dark .intro-message .section-label {
    color: rgba(255, 255, 255, 0.58);
}
.section-dark .intro-message p {
    color: rgba(255, 255, 255, 0.72);
}

.top-film .intro-grid {
    grid-template-columns: 1fr;
    gap: 0;
}

.top-film .intro-message {
    order: 1;
    padding: 0 0 44px;
}

.top-film .intro-message h2 {
    margin: 8px 0 0;
}

.top-film .intro-message p {
    margin: 18px 0 0;
    max-width: 640px;
}

.top-film .intro-message .link-more {
    margin-top: 24px;
}

.top-film-videos {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    min-width: 0;
    width: 100%;
}

.film-card {
    margin: 0;
    position: relative;
}

.film-media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.film-media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.film-card figcaption {
    position: absolute;
    left: 12px;
    top: 12px;
    margin: 0;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 980px) {
    .top-film .intro-message {
        grid-template-columns: 1fr;
    }

    .top-film .intro-message p {
        max-width: 540px;
    }
}

@media (max-width: 560px) {
    .top-film-videos {
        grid-template-columns: 1fr;
    }
}

/* TOP: dark "Why V3D" strengths section */
.top-why {
    background: var(--ink);
    color: var(--white);
}
.top-why .section-label { color: rgba(255, 255, 255, 0.55); }
.top-why .lead { color: rgba(255, 255, 255, 0.7); }
.top-why .strength {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
}
.top-why .strength-num { color: rgba(255, 255, 255, 0.5); }
.top-why .strength-text strong { color: var(--white); }
.top-why .strength-text p { color: rgba(255, 255, 255, 0.66); }

/* TOP: latest news headline strip */
.news-ticker-bar {
    background: var(--white);
    border-bottom: 1px solid rgba(35, 24, 21, 0.08);
}
.news-ticker {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
}
.news-ticker-label {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-deep);
}
.news-ticker-viewport {
    min-width: 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}
.news-ticker-track {
    display: flex;
    width: max-content;
    animation: news-ticker-scroll 44s linear infinite;
}
.news-ticker-viewport:hover .news-ticker-track,
.news-ticker-viewport:focus-within .news-ticker-track {
    animation-play-state: paused;
}
.news-ticker-group {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
    flex: 0 0 auto;
}
.news-ticker-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex: 0 0 auto;
    color: var(--ink);
    font-weight: 650;
    font-size: 14.5px;
}
.news-ticker-headline {
    white-space: nowrap;
}
.news-ticker-item:hover .news-ticker-headline { text-decoration: underline; }
.news-ticker-item time {
    flex-shrink: 0;
    color: rgba(35, 24, 21, 0.5);
    font-size: 12.5px;
    font-weight: 600;
}
.news-ticker-more { flex-shrink: 0; font-size: 12px; }
@keyframes news-ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .news-ticker-viewport {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .news-ticker-track { animation: none; }
    .news-ticker-group[aria-hidden="true"] { display: none; }
}
@media (max-width: 720px) {
    .news-ticker {
        grid-template-columns: 1fr auto;
        gap: 10px 16px;
    }
    .news-ticker-viewport {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    .news-ticker-track { animation-duration: 52s; }
}

/* Global: dark footer */
.footer {
    background: var(--ink);
    color: var(--white);
    border-top-color: rgba(255, 255, 255, 0.08);
}
.logo {
    width: 76px;
    height: auto;
}
.header .logo {
    filter: brightness(0) invert(1);
}
.footer-top { border-bottom-color: rgba(255, 255, 255, 0.1); }
.footer-brand .logo {
    width: 84px;
    filter: brightness(0) invert(1);
}
.footer-tag { color: rgba(255, 255, 255, 0.55); }
.footer-col h4 { color: var(--white); }
.footer-col a { color: rgba(255, 255, 255, 0.6); }
.footer-col a:hover { color: var(--white); }
.footer-col p { color: rgba(255, 255, 255, 0.6); }
.footer-col p strong { color: var(--white); }
.footer-social a { color: var(--white); background: rgba(255, 255, 255, 0.08); }
.footer-social a:hover { background: rgba(255, 255, 255, 0.16); }
.footer-bottom { color: rgba(255, 255, 255, 0.5); }
.footer-bottom-links a:hover { color: var(--white); }

/* ---------- Lower pages: white / black only (no green backgrounds) ---------- */
.lower-hero { background: var(--ink); }
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
    border-bottom: 0;
}

/* Workflow section flipped to light — process styled for a light background */
.section-light .process {
    border-top-color: rgba(35, 24, 21, 0.12);
    border-left-color: rgba(35, 24, 21, 0.12);
}
.section-light .process-step {
    border-right-color: rgba(35, 24, 21, 0.12);
    border-bottom-color: rgba(35, 24, 21, 0.12);
}
.section-light .process-step span { color: rgba(35, 24, 21, 0.46); }
.section-light .process-step strong { color: var(--ink); }

/* ---------- Mini sub-heading ---------- */
.minihead { margin: 52px 0 0; }
.minihead h3 { margin: 0 0 8px; font-size: 18px; }
.minihead p { margin: 0; color: rgba(35, 24, 21, 0.6); font-size: 14px; line-height: 1.7; }
.team-column-grid {
    align-items: stretch;
    margin-top: 52px;
    grid-template-rows: auto 1fr;
    row-gap: 16px;
}
.team-column {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
}
.team-column .minihead { margin: 0; }
.team-column .content-card { height: 100%; }

/* ---------- Spacing restored (rules dropped during CSS externalization) ---------- */
.section-detail { margin-top: 72px; }
.feature-grid.is-spaced { margin-top: 20px; }

/* ---------- Dummy image placeholder ---------- */
.img-ph {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 220px;
    padding: 24px;
    background: repeating-linear-gradient(45deg, rgba(35, 24, 21, 0.035) 0 14px, rgba(35, 24, 21, 0.06) 14px 28px);
    border: 1px dashed rgba(35, 24, 21, 0.28);
    border-radius: 8px;
    color: rgba(35, 24, 21, 0.5);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}
.img-ph::before {
    content: "Image";
    margin-bottom: 12px;
    padding: 3px 9px;
    border: 1px solid currentColor;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.85;
}
.section-dark .img-ph {
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.045) 0 14px, rgba(255, 255, 255, 0.08) 14px 28px);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.6);
}

/* ---------- Large printer visual (System & Specs) ---------- */
.printer-visual {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 7;
    background: rgba(255, 255, 255, 0.04);
}
.printer-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 720px) {
    .printer-visual { aspect-ratio: 4 / 3; margin-top: 28px; }
}

/* ---------- Footer: 5-column layout (organized links) ---------- */
.footer-top {
    grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(0, 1fr)) minmax(130px, auto);
}
/* Re-assert responsive footer AFTER the 5-column rule above. Otherwise this
   non-media declaration overrides the earlier @media stacking rules, and the
   middle columns collapse to 0px on tablet/mobile. */
@media (max-width: 980px) {
    .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 22px;
        row-gap: 34px;
    }
    .footer-brand { grid-column: 1 / -1; }
}

/* Anchor targets clear the sticky header */
.project-detail-card[id] { scroll-margin-top: 100px; }

/* ---------- Case study gallery & video (project detail) ---------- */
.gallery {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}
.gallery::-webkit-scrollbar { height: 8px; }
.gallery::-webkit-scrollbar-thumb { background: rgba(35, 24, 21, 0.18); border-radius: 999px; }
.gallery-item {
    flex: 0 0 min(560px, 80%);
    scroll-snap-align: start;
    margin: 0;
}
.gallery-media {
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(35, 24, 21, 0.05);
}
.gallery-media img,
.gallery-media video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.gallery-media .img-ph { height: 100%; min-height: 100%; }
.gallery-item figcaption { margin-top: 10px; font-size: 13px; color: rgba(35, 24, 21, 0.6); }
.video-embed {
    margin-top: 22px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}
.video-embed iframe { display: block; width: 100%; height: 100%; border: 0; }
.video-embed video { display: block; width: 100%; height: 100%; object-fit: cover; background: #000; }
.video-embed .img-ph { height: 100%; min-height: 100%; }
@media (max-width: 720px) {
    .gallery-item { flex-basis: 86%; }
}

/* ---------- Google Map embed (company page) ---------- */
.map-embed {
    margin-top: 22px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 6;
    background: rgba(35, 24, 21, 0.05);
}
.map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 720px) {
    .map-embed { aspect-ratio: 4 / 3; }
}

/* ---------- Overview: company info + access (company page) ---------- */
.overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: stretch;
}
.overview-grid .minihead { margin: 0 0 20px; }
.overview-access { display: flex; flex-direction: column; }
.overview-access .map-embed {
    flex: 1 1 auto;
    margin-top: 0;
    aspect-ratio: auto;
    min-height: 340px;
}
@media (max-width: 980px) {
    .overview-grid { grid-template-columns: 1fr; gap: 36px; }
    .overview-access .map-embed { flex: 0 0 auto; aspect-ratio: 16 / 8; min-height: 0; }
}

/* ---------- Team groups (company page) ---------- */
.team-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.minihead + .team-grid,
.minihead + .feature-grid { margin-top: 22px; }

@media (max-width: 980px) {
    .team-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .team-grid.cols-3 { grid-template-columns: 1fr; }
}

/* ---------- Network section compact layout (company page) ---------- */
.network-section {
    padding: 86px 0;
}

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

.network-section .network-grid {
    gap: 36px;
    align-items: center;
}

.network-section .asia-map {
    aspect-ratio: 16 / 9;
    max-height: 340px;
}

.network-section .network-cards {
    gap: 10px;
}

.network-section .network-cards .content-card {
    padding: 18px 20px;
}

.network-section .network-cards .content-card h3 {
    margin-bottom: 6px;
}

.network-section .network-cards .content-card p {
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .network-section {
        padding: 76px 0;
    }

    .network-section .asia-map {
        max-height: none;
    }
}

/* ---------- TOP page polish (review fixes) ---------- */
/* Keep katakana terms and short tail phrases from breaking mid-word / orphaning */
.nb { white-space: nowrap; }

/* Bottom-align project card CTAs so they line up across cards with unequal copy length */
.top-projects .project-card .link-more { margin-top: auto; }

/* Preserve conventional "PoC" casing (avoid text-transform turning it into "POC") */
.project-status.planned { text-transform: none; }

/* ---------- Lower-page review fixes ---------- */
/* Keep phrase segments whole on desktop so long lower-hero headings break
   between segments instead of mid-word/particle. Segments still wrap on
   small screens, where a single phrase can exceed the viewport width. */
@media (min-width: 981px) {
    .lower-hero h1 .seg { white-space: nowrap; }
}

/* Separate two consecutive dark sections with a subtle tonal step so they
   don't merge into one block (technology: Specs after Printing Process;
   company: Network after Overview). */
.section-dark + .section-dark { background: var(--ink-soft); }

/* Detail lists / mini-head subtext on dark sections (e.g. company「会社概要」) need
   light text and borders — the base colours are for light backgrounds and would
   otherwise render black-on-black. */
.section-dark .detail-list { border-top-color: rgba(255, 255, 255, 0.14); }
.section-dark .detail-row { border-bottom-color: rgba(255, 255, 255, 0.14); }
.section-dark .detail-row dt { color: rgba(255, 255, 255, 0.55); }
.section-dark .detail-row dd { color: rgba(255, 255, 255, 0.82); }
.section-dark .minihead p { color: rgba(255, 255, 255, 0.6); }

/* Projects list group headings: editorial divider with a status-colour bar,
   bilingual label and a count. The first heading drops its top margin since
   the section padding already spaces it (avoids ~162px of stacked space). */
.group-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(35, 24, 21, 0.14);
}
.group-head-bar {
    width: 4px;
    height: 18px;
    border-radius: 2px;
    background: var(--green);
    flex-shrink: 0;
}
.group-head-label {
    margin: 0;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}
.group-head-en {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--ink);
}
.group-head-ja {
    font-size: 13px;
    font-weight: 700;
    color: rgba(35, 24, 21, 0.5);
}
.group-inprogress .group-head-bar { background: var(--burgundy); }
.group-poc .group-head-bar { background: rgba(35, 24, 21, 0.42); }
.project-list > .group-head:first-child { margin-top: 0; }

/* ---------- Language selector ---------- */
.lang-select { position: relative; display: inline-block; align-self: center; }
.lang-select > summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--white);
    opacity: 0.86;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 160ms ease;
    -webkit-tap-highlight-color: transparent;
}
.lang-select > summary::-webkit-details-marker { display: none; }
.lang-select > summary::marker { content: ""; }
.lang-select > summary:hover,
.lang-select[open] > summary { opacity: 1; }
.lang-select .lang-globe { width: 15px; height: 15px; opacity: 0.9; }
.lang-select .lang-caret { width: 11px; height: 11px; transition: transform 160ms ease; }
.lang-select[open] > summary .lang-caret { transform: rotate(180deg); }

.lang-options {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 40;
    display: grid;
    gap: 2px;
    min-width: 168px;
    padding: 8px;
    border-radius: 10px;
    background: var(--green-deep);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}
.lang-options a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 700;
    opacity: 1;
    white-space: nowrap;
}
.lang-options a:hover { background: rgba(255, 255, 255, 0.08); color: var(--white); }
.lang-options a[aria-current="true"] { color: var(--white); }
.lang-options a[aria-current="true"]::after { content: "\2713"; font-size: 12px; line-height: 1; }

/* Mobile menu language options */
.mobile-menu-links a.m-lang-first {
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-menu-links a[aria-current="true"] { color: var(--white); }
.mobile-menu-links a[aria-current="true"]::after { content: "\2713"; margin-left: 8px; font-size: 12px; }

/* ---------- Thanks page ---------- */
.thanks-hero {
    background: var(--green);
    color: var(--white);
    min-height: 72vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 140px 0 110px;
}
.thanks-hero .container { max-width: 680px; }
.thanks-hero .thanks-eyebrow {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.thanks-hero h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.14;
    font-weight: 700;
}
.thanks-hero .thanks-text {
    margin: 22px auto 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.9;
}
.thanks-hero .thanks-actions { margin-top: 36px; }
