:root {
    color-scheme: dark;
    --bg: #050a12;
    --bg-soft: rgba(8, 14, 25, 0.8);
    --panel: rgba(13, 22, 38, 0.84);
    --panel-strong: rgba(18, 29, 50, 0.94);
    --line: rgba(156, 180, 214, 0.16);
    --text: #f5f8fc;
    --muted: #b0bfd3;
    --accent: #7ce0c4;
    --accent-2: #8ba6ff;
    --accent-3: #f7c87a;
    --shadow: 0 30px 80px rgba(1, 6, 14, 0.46);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shell: 1240px;
    --font-body: "Nirmala UI", "Segoe UI", "Trebuchet MS", Arial, sans-serif;
    --font-head: "Georgia", "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at 10% 12%, rgba(124, 224, 196, 0.18), transparent 24%),
        radial-gradient(circle at 88% 8%, rgba(139, 166, 255, 0.18), transparent 22%),
        radial-gradient(circle at 50% 100%, rgba(247, 200, 122, 0.12), transparent 28%),
        linear-gradient(180deg, #050a12 0%, #07101c 40%, #03070d 100%);
    color: var(--text);
    overflow-x: hidden;
}

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

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

.site-shell {
    width: min(var(--shell), calc(100% - 40px));
    margin: 0 auto;
}

.bg-orb {
    position: fixed;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.46;
    z-index: 0;
    animation: drift 14s ease-in-out infinite;
}

.orb-a {
    width: 320px;
    height: 320px;
    top: -90px;
    left: -110px;
    background: rgba(69, 211, 178, 0.16);
}

.orb-b {
    width: 260px;
    height: 260px;
    right: -70px;
    top: 160px;
    background: rgba(132, 162, 255, 0.16);
    animation-delay: -4s;
}

.orb-c {
    width: 300px;
    height: 300px;
    left: 38%;
    bottom: -120px;
    background: rgba(247, 190, 106, 0.12);
    animation-delay: -8s;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(4, 8, 16, 0.82);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(156, 180, 214, 0.12);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.header-inner {
    min-height: 70px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(247, 200, 122, 0.2);
    box-shadow: 0 16px 34px rgba(247, 200, 122, 0.12);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.brand-copy strong {
    color: var(--text);
    font-size: 1.18rem;
    letter-spacing: 0;
    line-height: 1.05;
}

.brand-copy small {
    color: var(--accent-3);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(156, 180, 214, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
}

.site-nav a {
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    line-height: 1;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.11);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    outline: none;
}

.nav-cta {
    background: linear-gradient(135deg, #f9df92 0%, #d2a73e 48%, #fff2c7 100%);
    color: #2b1a00 !important;
    box-shadow: 0 12px 24px rgba(247, 200, 122, 0.2);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(247, 200, 122, 0.24);
    border-radius: 14px;
    background: rgba(247, 200, 122, 0.08);
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--text);
}

.section {
    position: relative;
    z-index: 1;
    padding: 72px 0;
}

.section-soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
        linear-gradient(135deg, rgba(124, 224, 196, 0.03), rgba(139, 166, 255, 0.03));
}

.hero {
    padding-top: 0;
}

.hero-home {
    padding: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: center;
}

.hero-home .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
}

.home-intro-section {
    padding-top: 52px;
}

.home-intro-layout,
.home-market-layout,
.home-opportunity-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 22px;
    align-items: start;
}

.home-lead {
    max-width: 680px;
}

.home-lead h1 {
    max-width: 12ch;
    font-size: 3.7rem;
}

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

.home-highlight-card,
.home-process-card,
.category-chip {
    border: 1px solid rgba(156, 180, 214, 0.14);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-highlight-card {
    min-height: 154px;
    padding: 20px;
}

.home-highlight-card span,
.home-process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: var(--radius-sm);
    background: rgba(247, 200, 122, 0.12);
    color: var(--accent-3);
    font-weight: 800;
}

.home-highlight-card h2,
.home-process-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 0;
}

.home-highlight-card p,
.home-process-card p,
.home-seller-panel p,
.home-category-panel p,
.home-opportunity-copy p,
.home-final-panel p {
    color: var(--muted);
    line-height: 1.75;
}

.home-highlight-card p,
.home-process-card p {
    margin: 10px 0 0;
}

.home-flow-layout {
    display: grid;
    gap: 22px;
}

.home-section-head {
    max-width: 760px;
    margin-bottom: 0;
}

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

.home-process-card {
    min-height: 178px;
    padding: 22px;
}

.home-seller-panel,
.home-category-panel,
.home-opportunity-copy,
.home-final-panel {
    padding: 26px;
    border: 1px solid rgba(156, 180, 214, 0.14);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(19, 32, 54, 0.88), rgba(10, 20, 34, 0.82));
    box-shadow: var(--shadow);
}

.home-seller-panel h2,
.home-category-panel h2,
.home-opportunity-copy h2,
.home-final-panel h2 {
    font-size: 2.7rem;
}

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

.category-chip {
    padding: 18px;
}

.category-chip strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--text);
}

.category-chip small {
    display: block;
    color: var(--muted);
    line-height: 1.55;
}

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

.home-audience-list span {
    min-height: 70px;
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(247, 200, 122, 0.22);
    background: rgba(247, 200, 122, 0.07);
    color: #f6e8c0;
    font-weight: 800;
    line-height: 1.35;
}

.home-final-cta {
    position: relative;
}

.home-final-panel {
    max-width: 940px;
    text-align: center;
}

.home-final-panel .hero-actions {
    justify-content: center;
}

.home-final-cta .button.secondary {
    border-color: rgba(247, 200, 122, 0.34);
    background: rgba(247, 200, 122, 0.06);
}

.eyebrow {
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 700;
}

.gold-text {
    color: var(--accent-3) !important;
    text-shadow: 0 0 18px rgba(247, 200, 122, 0.16);
}

.gold-heading {
    background: linear-gradient(135deg, #fff3c7 0%, #f5c96c 38%, #c98d1b 70%, #fff0ba 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 22px rgba(247, 200, 122, 0.1);
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
}

h1,
h2 {
    font-family: var(--font-head);
    letter-spacing: 0.01em;
}

h1 {
    font-size: clamp(3rem, 6.2vw, 6rem);
    max-width: 11ch;
    text-wrap: balance;
}

.lead {
    max-width: 64ch;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

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

.section-actions {
    justify-content: center;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button.primary {
    background: linear-gradient(135deg, var(--accent), #8ba6ff);
    color: #02121b;
    box-shadow: 0 18px 34px rgba(124, 224, 196, 0.18);
}

.hero-home .button.primary,
.button.gold {
    background: linear-gradient(135deg, #f9df92 0%, #d2a73e 46%, #fff2c7 100%);
    color: #2b1a00;
    box-shadow: 0 18px 34px rgba(247, 200, 122, 0.26);
}

.hero-home .button.primary:hover,
.hero-home .button.primary:focus-visible,
.button.gold:hover,
.button.gold:focus-visible {
    box-shadow: 0 22px 40px rgba(247, 200, 122, 0.32);
}

.button.secondary {
    border: 1px solid rgba(156, 180, 214, 0.2);
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

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

.hero-badges span {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(156, 180, 214, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
}

.hero-panel {
    display: grid;
    gap: 16px;
}

.hero-home .hero-panel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.slider-card {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    border: 1px solid rgba(156, 180, 214, 0.12);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow);
}

.hero-home .slider-card {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.slider-viewport {
    position: relative;
    min-height: 0;
    aspect-ratio: 16 / 5.8;
}

.hero-home .slider-viewport {
    aspect-ratio: 16 / 5.8;
}

.slider-slide {
    position: relative;
    display: none;
    height: 100%;
    min-height: 0;
}

.slider-slide.is-active {
    display: block;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: clamp(22px, 3vw, 36px);
    background: linear-gradient(180deg, rgba(3, 8, 13, 0) 0%, rgba(3, 8, 13, 0.78) 100%);
}

.slider-copy {
    display: grid;
    gap: 12px;
    max-width: 56ch;
}

.slider-kicker {
    margin: 0;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent-3);
    font-weight: 700;
}

.slider-overlay h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 3.5rem);
    line-height: 1.04;
}

.slider-overlay p {
    margin: 0;
    color: rgba(245, 248, 252, 0.9);
    line-height: 1.7;
}

.slider-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.slider-cta {
    margin-top: 0;
    box-shadow: 0 14px 30px rgba(1, 6, 14, 0.28);
}

.slider-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-top: 1px solid rgba(156, 180, 214, 0.12);
    background: rgba(5, 10, 18, 0.76);
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(156, 180, 214, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

.slider-dot.is-active {
    width: 30px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.panel-card {
    background: linear-gradient(180deg, rgba(19, 32, 54, 0.92), rgba(10, 20, 34, 0.88));
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.spotlight {
    padding: 30px;
}

.panel-kicker {
    margin: 0 0 10px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-3);
    font-weight: 700;
}

.spotlight h2 {
    font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.spotlight p {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

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

.mini-card {
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(153, 179, 214, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.mini-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--accent);
    font-weight: 800;
}

.mini-card strong {
    display: block;
    margin-bottom: 6px;
}

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

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.stat-card {
    padding: 18px 18px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(156, 180, 214, 0.14);
    background: linear-gradient(180deg, rgba(19, 30, 49, 0.88), rgba(9, 16, 28, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 224, 196, 0.28);
}

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

.stat-card span {
    color: var(--muted);
    line-height: 1.5;
}

.section-head {
    max-width: 820px;
    margin-bottom: 30px;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-head p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.section-head .lead {
    margin-top: 14px;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 18px;
    align-items: start;
}

.about-grid .about-lead + .about-lead {
    margin-top: 0;
}

.about-lead,
.info-card,
.blog-card,
.form-card {
    padding: 26px;
}

.about-lead h3 {
    font-size: 1.65rem;
    margin-bottom: 14px;
}

.feature-list {
    padding-left: 18px;
    margin: 20px 0 0;
    color: var(--muted);
    display: grid;
    gap: 10px;
}

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

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 22px;
    align-items: center;
}

.about-hero-copy {
    max-width: 760px;
}

.about-hero-copy .lead {
    max-width: 58ch;
}

.about-hero-copy h1 {
    max-width: 12ch;
    font-size: 3.7rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.about-badges span {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(247, 200, 122, 0.24);
    background: rgba(247, 200, 122, 0.07);
    color: #f3e5bc;
    box-shadow: inset 0 1px 0 rgba(255, 243, 199, 0.08);
}

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

.about-snapshot-item,
.about-pillar-card,
.about-audience-card,
.about-vision-block {
    border: 1px solid rgba(156, 180, 214, 0.14);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-snapshot-item {
    min-height: 132px;
    padding: 20px;
}

.about-snapshot-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: var(--radius-sm);
    background: rgba(247, 200, 122, 0.12);
    color: var(--accent-3);
    font-weight: 800;
}

.about-snapshot-item strong {
    display: block;
    color: var(--text);
    line-height: 1.35;
}

.about-purpose-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    align-items: start;
}

.about-section-head {
    margin-bottom: 24px;
}

.about-section-head h2 {
    font-size: 2.7rem;
}

.about-purpose-layout .about-section-head {
    margin-bottom: 0;
}

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

.about-vision-block {
    padding: 22px;
}

.about-vision-block h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.about-vision-block p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
}

.about-pillar-card,
.about-audience-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
}

.about-pillar-card h3,
.about-audience-card h3 {
    font-family: var(--font-body);
    font-size: 1.12rem;
    letter-spacing: 0;
}

.about-pillar-card p:not(.eyebrow),
.about-audience-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.about-pillar-card .eyebrow {
    margin-bottom: 0;
}

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

.about-final-cta {
    position: relative;
}

.about-final-panel {
    max-width: 920px;
    padding: 28px;
    border: 1px solid rgba(247, 200, 122, 0.22);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(27, 20, 8, 0.86), rgba(8, 12, 20, 0.94));
    box-shadow:
        0 24px 60px rgba(247, 200, 122, 0.1),
        inset 0 1px 0 rgba(255, 243, 199, 0.12);
}

.about-final-panel h2 {
    font-size: 2.7rem;
}

.about-final-panel p {
    color: var(--muted);
    line-height: 1.75;
}

.about-final-cta .section-actions {
    margin-top: 22px;
}

.about-final-cta .button.secondary {
    border-color: rgba(247, 200, 122, 0.34);
    background: rgba(247, 200, 122, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 243, 199, 0.06);
}

.about-final-cta .button.secondary:hover,
.about-final-cta .button.secondary:focus-visible {
    border-color: rgba(247, 200, 122, 0.52);
    background: rgba(247, 200, 122, 0.1);
}

.info-card h3,
.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

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

.gallery-card {
    min-height: 240px;
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -55% auto;
    width: 210px;
    height: 210px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(10px);
}

.gallery-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.gallery-index,
.gallery-eyebrow,
.blog-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
}

.gallery-index {
    background: rgba(6, 12, 22, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.gallery-eyebrow {
    background: rgba(255, 255, 255, 0.12);
}

.gallery-card h3 {
    font-size: 1.55rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.gallery-card p {
    margin: 0;
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.72;
    position: relative;
    z-index: 1;
}

.gallery-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
}

.tone-a {
    background: linear-gradient(145deg, rgba(12, 42, 51, 0.96), rgba(6, 21, 34, 0.92));
}

.tone-b {
    background: linear-gradient(145deg, rgba(50, 28, 80, 0.98), rgba(12, 20, 43, 0.94));
}

.tone-c {
    background: linear-gradient(145deg, rgba(25, 63, 88, 0.96), rgba(8, 24, 39, 0.94));
}

.tone-d {
    background: linear-gradient(145deg, rgba(18, 63, 43, 0.96), rgba(6, 27, 28, 0.94));
}

.tone-e {
    background: linear-gradient(145deg, rgba(81, 52, 19, 0.95), rgba(31, 16, 9, 0.94));
}

.tone-f {
    background: linear-gradient(145deg, rgba(30, 42, 70, 0.96), rgba(10, 17, 35, 0.96));
}

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

.blog-tag {
    background: rgba(69, 211, 178, 0.12);
    color: var(--accent);
    border: 1px solid rgba(69, 211, 178, 0.18);
    margin-bottom: 16px;
}

.blog-meta {
    margin: 0 0 12px !important;
    color: var(--accent-3) !important;
    font-size: 0.94rem;
    font-weight: 700;
}

.blog-card a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--accent);
    font-weight: 700;
}

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

.contact-hero-copy {
    max-width: 760px;
}

.contact-hero-copy h1 {
    max-width: 13ch;
    font-size: 3.7rem;
}

.contact-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.contact-hero-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(247, 200, 122, 0.24);
    background: rgba(247, 200, 122, 0.07);
    color: #f3e5bc;
}

.contact-quick-panel,
.contact-details-panel,
.contact-form-panel {
    padding: 26px;
    border: 1px solid rgba(156, 180, 214, 0.14);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(19, 32, 54, 0.88), rgba(10, 20, 34, 0.82));
    box-shadow: var(--shadow);
}

.contact-quick-panel h2,
.contact-details-panel h2 {
    font-size: 2rem;
}

.contact-quick-panel p,
.contact-details-panel p {
    color: var(--muted);
    line-height: 1.75;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.contact-card {
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(153, 179, 214, 0.14);
    background: rgba(255, 255, 255, 0.035);
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(247, 200, 122, 0.28);
    background: rgba(255, 255, 255, 0.055);
    outline: none;
}

.contact-card span {
    display: block;
    color: var(--accent-3);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 7px;
    font-weight: 800;
}

.contact-card strong {
    display: block;
    color: var(--text);
    font-size: 1.04rem;
    overflow-wrap: anywhere;
}

.contact-form {
    display: grid;
    gap: 13px;
}

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

.contact-form span {
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(153, 179, 214, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 13px 14px;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 128px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(247, 200, 122, 0.48);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 0 0 4px rgba(247, 200, 122, 0.1);
}

.contact-form .button {
    justify-self: start;
    margin-top: 4px;
}

.notice {
    padding: 16px 18px;
    border-radius: 18px;
    margin-bottom: 16px;
    border: 1px solid transparent;
}

.notice strong {
    display: block;
    margin-bottom: 4px;
}

.notice p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.notice-success {
    background: rgba(69, 211, 178, 0.08);
    border-color: rgba(69, 211, 178, 0.2);
}

.notice-error {
    background: rgba(248, 113, 113, 0.08);
    border-color: rgba(248, 113, 113, 0.2);
}

.site-footer {
    position: relative;
    z-index: 1;
    padding: 52px 0 28px;
    border-top: 1px solid rgba(153, 179, 214, 0.12);
    background:
        linear-gradient(180deg, rgba(7, 16, 28, 0.82), rgba(3, 8, 13, 0.96)),
        radial-gradient(circle at 16% 0%, rgba(124, 224, 196, 0.08), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(247, 200, 122, 0.1), transparent 32%);
    backdrop-filter: blur(16px);
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(150px, 0.55fr) minmax(170px, 0.7fr) minmax(260px, 0.9fr);
    gap: 22px;
    align-items: start;
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-brand-panel,
.footer-contact-card {
    min-width: 0;
}

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

.footer-mark {
    width: 62px;
    height: 62px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(247, 200, 122, 0.24);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 16px 34px rgba(247, 200, 122, 0.12);
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.footer-copy strong {
    color: var(--text);
    font-size: 1.35rem;
    letter-spacing: 0;
}

.footer-copy small {
    color: var(--muted);
    line-height: 1.35;
}

.footer-copy p {
    margin: 0;
}

.footer-tagline {
    margin: 16px 0 0;
    color: var(--accent-3);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.footer-note {
    max-width: 54ch;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.footer-badges span {
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(156, 180, 214, 0.16);
    background: rgba(255, 255, 255, 0.045);
    color: var(--text);
    line-height: 1.2;
}

.footer-column {
    display: grid;
    gap: 11px;
}

.footer-column h2,
.footer-contact-card h2 {
    margin: 0;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1.05rem;
    letter-spacing: 0;
}

.footer-column a,
.footer-contact-card a {
    color: var(--muted);
    line-height: 1.45;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-contact-card a:hover,
.footer-contact-card a:focus-visible {
    color: var(--text);
    transform: translateX(2px);
    outline: none;
}

.footer-contact-card {
    padding: 22px;
    border: 1px solid rgba(247, 200, 122, 0.22);
    border-radius: var(--radius-lg);
    background: rgba(247, 200, 122, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 243, 199, 0.08);
}

.footer-kicker {
    margin: 0 0 10px;
    color: var(--accent-3);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-contact-card h2 {
    margin-bottom: 18px;
    font-size: 1.35rem;
    line-height: 1.25;
}

.footer-contact-card > a {
    display: block;
    overflow-wrap: anywhere;
}

.footer-contact-card > a + a {
    margin-top: 10px;
}

.footer-actions {
    margin-top: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(153, 179, 214, 0.1);
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.5;
}

@keyframes drift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, 20px, 0) scale(1.04); }
}

@media (max-width: 1080px) {
    .hero-grid,
    .about-grid,
    .about-hero-grid,
    .about-story-grid,
    .about-purpose-layout,
    .contact-hero-grid,
    .contact-grid,
    .home-intro-layout,
    .home-market-layout,
    .home-opportunity-layout {
        grid-template-columns: 1fr;
    }

    .stats-row,
    .gallery-grid,
    .blog-grid,
    .home-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-home .hero-grid {
        grid-template-columns: 1fr;
    }

    .slider-viewport {
        aspect-ratio: 16 / 6.6;
    }

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

    .about-pillars-grid,
    .about-audience-grid,
    .about-snapshot,
    .about-vision-grid,
    .home-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .site-shell {
        width: min(var(--shell), calc(100% - 28px));
    }

    .header-inner {
        min-height: 64px;
    }

    .menu-toggle {
        display: inline-block;
        flex: 0 0 auto;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 14px;
        right: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px;
        border: 1px solid rgba(156, 180, 214, 0.14);
        border-radius: var(--radius-md);
        background: rgba(4, 8, 16, 0.96);
        box-shadow: var(--shadow);
        display: none;
    }

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

    .site-nav a {
        width: 100%;
        padding: 12px 14px;
        text-align: left;
    }

    .stats-row,
    .about-cards,
    .about-pillars-grid,
    .about-audience-grid,
    .about-snapshot,
    .about-vision-grid,
    .home-highlight-grid,
    .home-process-grid,
    .home-audience-list,
    .gallery-grid,
    .blog-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .hero:not(.hero-home) {
        padding-top: 42px;
    }

    .hero-home {
        padding: 0;
    }

    .about-hero-copy {
        padding: 0;
    }

    .about-hero-copy h1 {
        max-width: none;
        font-size: 2.5rem;
    }

    .about-badges {
        gap: 8px;
    }

    .about-snapshot-item,
    .about-pillar-card,
    .about-audience-card,
    .about-vision-block,
    .about-final-panel {
        padding: 18px;
    }

    .about-snapshot-item {
        min-height: auto;
    }

    .about-section-head {
        margin-bottom: 18px;
    }

    .about-section-head h2 {
        font-size: 2rem;
    }

    .about-final-panel h2 {
        font-size: 2rem;
    }

    .category-cloud {
        grid-template-columns: 1fr;
    }

    .home-lead h1 {
        max-width: none;
        font-size: 2.5rem;
    }

    .home-intro-section {
        padding-top: 36px;
    }

    .home-seller-panel,
    .home-category-panel,
    .home-opportunity-copy,
    .home-final-panel,
    .home-highlight-card,
    .home-process-card {
        padding: 18px;
    }

    .contact-hero-copy h1 {
        max-width: none;
        font-size: 2.5rem;
    }

    .contact-quick-panel,
    .contact-details-panel,
    .contact-form-panel {
        padding: 18px;
    }

    .contact-quick-panel h2,
    .contact-details-panel h2 {
        font-size: 1.65rem;
    }

    .contact-form .button {
        width: 100%;
        justify-self: stretch;
    }

    .home-highlight-card,
    .home-process-card,
    .home-audience-list span {
        min-height: auto;
    }

    .home-seller-panel h2,
    .home-category-panel h2,
    .home-opportunity-copy h2,
    .home-final-panel h2 {
        font-size: 2rem;
    }

    h1 {
        max-width: none;
    }

    .section {
        padding: 46px 0;
    }

    .hero-home {
        padding: 0;
    }

    .home-intro-section {
        padding-top: 36px;
    }

    .slider-viewport {
        aspect-ratio: 16 / 9;
    }

    .hero-home .slider-viewport {
        aspect-ratio: 16 / 9;
    }

    .slider-overlay {
        padding: 18px;
    }

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

    .brand {
        gap: 10px;
    }

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

    .brand-copy small {
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }

    .footer-brand {
        align-items: flex-start;
    }

    .footer-mark {
        width: 44px;
        height: 44px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-copy strong,
    .footer-copy small,
    .footer-note,
    .footer-bottom p {
        overflow-wrap: anywhere;
    }

    .footer-contact-card {
        padding: 18px;
    }

    .footer-actions .button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        margin-top: 22px;
    }

    .site-footer {
        padding: 38px 0 24px;
    }

    .slider-bar {
        grid-template-columns: auto 1fr auto;
        justify-items: center;
        padding: 10px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 420px) {
    .footer-brand {
        gap: 10px;
    }

    .footer-badges {
        gap: 8px;
    }

    .footer-badges span {
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .footer-column {
        gap: 9px;
    }

    .footer-contact-card h2 {
        font-size: 1.18rem;
    }
}
