/* ══════════════════════════════════════════════════════════════
   INDUSTRIES — Shared tokens & base styles
   Loaded by the ind-hero block; applies to all ind-* blocks.
══════════════════════════════════════════════════════════════ */

/* ── Design tokens ── */
:root {
    --ind-red:    #FF1400;
    --ind-orange: #FF6B3A;
    --ind-blue:   #7FB4FF;
    --ind-teal:   #4ECDC4;
    --ind-bg:     #03070F;
    --ind-mid:    #04091A;
    --ind-text:   #EAF0FB;
    --ind-dim:    rgba(234,240,251,.55);
    --ind-ease:   cubic-bezier(.16,1,.3,1);
}

/* ── Hero ── */
.ind-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.ind-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 700px at 10% 0%, rgba(255,20,0,.10), transparent 60%),
        linear-gradient(180deg, #03070F 0%, #04091A 50%, #03070F 100%);
    pointer-events: none;
}
.ind-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(127,180,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127,180,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 90%);
    pointer-events: none;
}
.ind-hero-orb-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127,180,255,.06), transparent 65%);
    filter: blur(80px);
    pointer-events: none;
}
.ind-hero-orb-2 {
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,20,0,.07), transparent 65%);
    filter: blur(60px);
    pointer-events: none;
}
.ind-hero-inner {
    position: relative;
    z-index: 1;
    padding: 140px 0 100px;
    width: 100%;
}
.ind-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.ind-hero-text {
    display: flex;
    flex-direction: column;
}

/* ── Eyebrow ── */
.ind-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: .32em;
    font-weight: 700;
    color: var(--ind-red);
    margin-bottom: 32px;
}
.ind-eyebrow-bar {
    width: 28px;
    height: 1px;
    background: var(--ind-red);
    flex-shrink: 0;
}

/* ── H1 ── */
.ind-hero-h1 {
    font-size: clamp(36px, 4.8vw, 62px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.03em;
    margin: 0 0 28px;
    color: #F4F7FE;
}
.ind-hero-h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--ind-red) 0%, var(--ind-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ── Subtitle ── */
.ind-hero-sub {
    font-size: 17px;
    line-height: 1.72;
    color: rgba(234,240,251,.6);
    margin: 0 0 44px;
    max-width: 480px;
    font-weight: 400;
}

/* ── Pills ── */
.ind-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
}
.ind-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    color: rgba(234,240,251,.8);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
}
.ind-pill-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ind-red);
    box-shadow: 0 0 8px rgba(255,20,0,.7);
    flex-shrink: 0;
}

/* ── Hero CTA ── */
.ind-hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.ind-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--ind-red);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .02em;
    border-radius: 3px;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 8px 32px rgba(255,20,0,.25);
}
.ind-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(255,20,0,.4);
    color: #fff;
}
.ind-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    color: rgba(234,240,251,.75);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 3px;
    transition: all .3s ease;
}
.ind-btn-ghost:hover {
    color: #fff;
    border-color: rgba(255,255,255,.25);
}

/* ── Ecosystem SVG ── */
.ind-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ind-eco-wrap {
    position: relative;
    width: 480px;
    height: 480px;
}
.ind-eco-glow {
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle at center, rgba(127,180,255,.12) 0%, rgba(255,20,0,.06) 50%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}
.ind-eco-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* ── Rotating arc animations ── */
@keyframes ind-rot-cw  { from { transform: rotate(0deg) }   to { transform: rotate(360deg) } }
@keyframes ind-rot-ccw { from { transform: rotate(0deg) }   to { transform: rotate(-360deg) } }

.ind-eco-rot-cw   { transform-origin: 50% 50%; animation: ind-rot-cw  30s linear infinite; }
.ind-eco-rot-ccw  { transform-origin: 50% 50%; animation: ind-rot-ccw 22s linear infinite; }
.ind-eco-rot-slow { transform-origin: 50% 50%; animation: ind-rot-cw  50s linear infinite; }

/* ── Hero responsive ── */
@media (max-width: 1100px) {
    .ind-hero-layout { grid-template-columns: 1fr; gap: 56px; max-width: 680px; }
    .ind-hero-visual { order: -1; }
    .ind-eco-wrap    { width: 340px; height: 340px; }
}
@media (max-width: 600px) {
    .ind-hero-layout { padding: 0 20px; }
    .ind-eco-wrap    { width: 280px; height: 280px; }
    .ind-hero-h1     { font-size: 34px; }
}

/* ══════════════════════════════════════════════════════════════
   SECTION SHARED (ind-section + ind-outro)
══════════════════════════════════════════════════════════════ */

/* ── Section marker ── */
.ind-marker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}
.ind-marker-line {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, var(--ind-red), transparent);
}
.ind-marker-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--ind-red);
    letter-spacing: .15em;
}
.ind-marker-label {
    font-size: 10px;
    letter-spacing: .35em;
    font-weight: 600;
    color: rgba(234,240,251,.35);
    text-transform: uppercase;
}

/* ── Section container ── */
.ind-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.ind-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Split grid ── */
.ind-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.ind-split--rev { direction: rtl; }
.ind-split--rev > * { direction: ltr; }

/* ── Section typography ── */
.ind-section-title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #F4F7FE;
}
.ind-section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--ind-red), var(--ind-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ind-section-lead {
    font-size: 16px;
    line-height: 1.78;
    color: rgba(234,240,251,.6);
    margin: 0 0 36px;
}

/* ── Index list ── */
.ind-index-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.ind-index-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.ind-index-item:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.ind-index-num {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255,20,0,.7);
    letter-spacing: .15em;
    flex-shrink: 0;
    padding-top: 2px;
    min-width: 28px;
}
.ind-index-content { display: flex; flex-direction: column; gap: 4px; }
.ind-index-title   { font-size: 14.5px; font-weight: 700; color: rgba(234,240,251,.9); }
.ind-index-desc    { font-size: 13.5px; line-height: 1.65; color: rgba(234,240,251,.5); }

/* ── Visual frame ── */
.ind-visual-wrap { position: relative; }
.ind-visual-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}
.ind-visual-frame {
    position: relative;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,.035) 0%, rgba(255,255,255,.01) 100%);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    aspect-ratio: 1;
}
.ind-visual-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at center, black 20%, transparent 75%);
    pointer-events: none;
}
.ind-visual-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}
.ind-visual-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255,20,0,.3);
}
.ind-corner-tl { top: 10px;    left: 10px;  border-right: none; border-bottom: none; }
.ind-corner-tr { top: 10px;    right: 10px; border-left: none;  border-bottom: none; }
.ind-corner-bl { bottom: 10px; left: 10px;  border-right: none; border-top: none; }
.ind-corner-br { bottom: 10px; right: 10px; border-left: none;  border-top: none; }

/* ── Section BG layers ── */
.ind-fin-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 100% 50%, rgba(127,180,255,.06), transparent 55%),
        radial-gradient(ellipse 40% 50% at 0% 50%,   rgba(255,20,0,.05),    transparent 55%);
    pointer-events: none;
}
.ind-fin-glow { background: radial-gradient(circle, rgba(127,180,255,.18), transparent 65%); }

.ind-ret-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 0%   50%, rgba(78,205,196,.05),  transparent 55%),
        radial-gradient(ellipse 40% 50% at 100% 50%, rgba(255,107,58,.05),  transparent 55%);
    pointer-events: none;
}
.ind-ret-glow { background: radial-gradient(circle, rgba(78,205,196,.15), transparent 65%); }

.ind-ent-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%,  rgba(127,180,255,.05), transparent 55%),
        radial-gradient(ellipse 40% 40% at 50% 100%, rgba(255,20,0,.04),   transparent 60%);
    pointer-events: none;
}
.ind-ent-glow { background: radial-gradient(circle, rgba(127,180,255,.14), transparent 65%); }

/* ── Finance orbit animations ── */
@keyframes ind-orbit-cw  { from { transform: rotate(0deg) }   to { transform: rotate(360deg) } }
@keyframes ind-orbit-ccw { from { transform: rotate(360deg) } to { transform: rotate(0deg) } }

.fin-ring-cw   { transform-origin: 50% 50%; animation: ind-orbit-cw  20s linear infinite; }
.fin-ring-ccw  { transform-origin: 50% 50%; animation: ind-orbit-ccw 14s linear infinite; }
.fin-ring-slow { transform-origin: 50% 50%; animation: ind-orbit-cw  35s linear infinite; }

/* ── KPI Cards (Finance) ── */
.ind-fin-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}
.ind-fin-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 6px;
    backdrop-filter: blur(8px);
    transition: border-color .3s ease, background .3s ease;
}
.ind-fin-card:hover {
    border-color: rgba(127,180,255,.3);
    background: rgba(127,180,255,.04);
}
.ind-fin-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ind-fin-card-icon--blue   { background: rgba(127,180,255,.12); color: var(--ind-blue); }
.ind-fin-card-icon--red    { background: rgba(255,20,0,.1);     color: var(--ind-red); }
.ind-fin-card-icon--orange { background: rgba(255,107,58,.1);   color: var(--ind-orange); }
.ind-fin-card-info { flex: 1; }
.ind-fin-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    color: rgba(234,240,251,.4);
    text-transform: uppercase;
    margin-bottom: 2px;
}
.ind-fin-card-value {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.02em;
}
.ind-fin-card-value--blue   { color: var(--ind-blue); }
.ind-fin-card-value--red    { color: var(--ind-red); }
.ind-fin-card-value--orange { color: var(--ind-orange); }
.ind-fin-card-trend {
    font-size: 12px;
    font-weight: 600;
    color: var(--ind-teal);
    background: rgba(78,205,196,.1);
    padding: 3px 8px;
    border-radius: 999px;
    flex-shrink: 0;
}

/* ── Stat Cards (Retail) ── */
.ind-ret-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}
.ind-ret-stat {
    padding: 20px 24px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
    border-left: 3px solid var(--ind-orange);
    border-radius: 6px;
}
.ind-ret-stat-num {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--ind-orange);
    line-height: 1;
    margin-bottom: 6px;
}
.ind-ret-stat-label {
    font-size: 13px;
    color: rgba(234,240,251,.6);
    line-height: 1.5;
}

/* ── Pillar Grid (Enterprise) ── */
.ind-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.ind-pillar {
    padding: 24px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
    border-top: 2px solid var(--ind-blue);
    border-radius: 6px;
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.ind-pillar:hover {
    border-color: var(--ind-blue);
    background: rgba(127,180,255,.04);
    transform: translateY(-4px);
}
.ind-pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(127,180,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ind-blue);
    margin-bottom: 16px;
}
.ind-pillar-title { font-size: 15px; font-weight: 700; color: rgba(234,240,251,.9); margin-bottom: 8px; }
.ind-pillar-desc  { font-size: 13px; line-height: 1.65; color: rgba(234,240,251,.5); }

/* ── Outro / CTA ── */
.ind-outro {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    text-align: center;
}
.ind-outro-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 100%, rgba(255,20,0,.14),    transparent 60%),
        radial-gradient(ellipse 80% 40% at 50% 0%,   rgba(127,180,255,.05), transparent 55%),
        linear-gradient(180deg, #04091A 0%, #03070F 100%);
    pointer-events: none;
}
.ind-outro-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.ind-outro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.03);
    font-size: 11px;
    letter-spacing: .2em;
    font-weight: 600;
    color: rgba(234,240,251,.5);
    text-transform: uppercase;
    margin-bottom: 32px;
}
.ind-outro-divider {
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,20,0,.5), transparent);
    margin: 0 auto 48px;
}
.ind-outro-h2 {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #F4F7FE;
}
.ind-outro-h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--ind-red), var(--ind-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ind-outro-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(234,240,251,.55);
    margin: 0 0 44px;
}
.ind-outro-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Section responsive ── */
@media (max-width: 900px) {
    .ind-section    { padding: 80px 0; }
    .ind-split      { grid-template-columns: 1fr; gap: 48px; }
    .ind-split--rev { direction: ltr; }
    .ind-pillars    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .ind-section-inner { padding: 0 20px; }
    .ind-pillars        { grid-template-columns: 1fr; }
    .ind-outro          { padding: 80px 0; }
}
