/* AlturaNet Inc — Colt-inspired connectivity style */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --teal: #0c4544;
  --teal-dark: #083332;
  --teal-light: #e8f4f3;
  --accent: #f5a623;
  --black: #000000;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-500: #737373;
  --gray-700: #404040;
  --text: #151515;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1140px;
  --wide: 1280px;
  --header-h: 64px;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--teal-dark); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

.an-label { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 16px; }
.an-label::before { content: ')) '; color: var(--teal); }
.an-hero .an-label { color: rgba(255,255,255,0.6); }
.an-hero .an-label::before { color: var(--accent); }
.an-dot { color: var(--accent); }

/* ── Top bar ── */
.an-topbar { background: var(--gray-100); border-bottom: 1px solid var(--gray-200); padding: 6px 24px; font-size: 12px; color: var(--gray-700); }
.an-topbar-inner { max-width: var(--wide); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.an-topbar a { color: var(--gray-700); font-weight: 500; }
.an-topbar a:hover { color: var(--teal); }

/* ── Header ── */
.an-header { position: sticky; top: 0; z-index: 500; background: var(--white); border-bottom: 1px solid var(--gray-200); }
.an-header-inner { max-width: var(--wide); margin: 0 auto; padding: 0 24px; height: var(--header-h); display: flex; align-items: center; gap: 24px; }
.an-logo img { height: 28px; width: auto; }
.an-nav { flex: 1; }
.an-nav > ul { list-style: none; display: flex; align-items: center; gap: 0; justify-content: center; }
.an-nav > ul > li { position: relative; }
.an-nav > ul > li > a { display: block; padding: 8px 14px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); }
.an-nav > ul > li > a:hover, .an-nav > ul > li > a.active { color: var(--teal); }
.an-drop-menu {
  position: absolute; top: 100%; left: 0; min-width: 260px; background: var(--white);
  border: 1px solid var(--gray-200); box-shadow: 0 12px 40px rgba(0,0,0,0.1); padding: 8px 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all 0.2s; z-index: 100;
}
.an-drop:hover .an-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.an-drop-menu a { display: block; padding: 10px 18px; font-size: 14px; color: var(--gray-700); text-transform: none; letter-spacing: 0; }
.an-drop-menu a:hover { background: var(--gray-50); color: var(--teal); }
.an-header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.an-btn-black {
  display: inline-flex; padding: 10px 22px; background: var(--black); color: var(--white) !important;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--radius-pill); border: none; cursor: pointer; font-family: var(--font);
  transition: transform 0.15s, background 0.15s;
}
.an-btn-black:hover { background: #222; color: var(--white) !important; transform: translateY(-1px); }
.an-btn-outline {
  display: inline-flex; padding: 9px 20px; border: 1px solid var(--black); color: var(--black) !important;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--radius-pill); background: transparent;
}
.an-btn-outline:hover { background: var(--gray-50); }
.an-btn-teal {
  display: inline-flex; padding: 10px 22px; background: var(--teal); color: var(--white) !important;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--radius-pill); border: none; cursor: pointer; font-family: var(--font);
}
.an-btn-teal:hover { background: var(--teal-dark); color: var(--white) !important; }
.an-btn-ghost-white {
  display: inline-flex; padding: 10px 22px; border: 1px solid rgba(255,255,255,0.5); color: var(--white) !important;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; border-radius: var(--radius-pill);
}
.an-btn-ghost-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white) !important; }
.an-menu-btn { display: none; border: none; background: none; font-size: 22px; cursor: pointer; padding: 8px; }

/* ── Hero ── */
.an-hero { background: var(--teal); color: var(--white); overflow: hidden; position: relative; }
.an-hero-inner { max-width: var(--wide); margin: 0 auto; padding: 56px 24px 0; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: end; position: relative; z-index: 1; }
.an-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 28px;
}
.an-hero-lead { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 28px; max-width: 480px; }
.an-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.an-hero-visual { position: relative; }
.an-hero-visual img { width: 100%; max-height: 420px; object-fit: cover; object-position: top; filter: grayscale(100%); mix-blend-mode: luminosity; opacity: 0.85; }
.an-hero-arrows {
  position: absolute; top: 10%; right: -10%; width: 60%; height: 80%; pointer-events: none; opacity: 0.15;
  background: repeating-linear-gradient(135deg, transparent, transparent 20px, rgba(255,255,255,0.4) 20px, rgba(255,255,255,0.4) 24px);
}

/* ── Three pillars (Colt Infra/Digital/Services) ── */
.an-pillars-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--teal-dark);
}
.an-pillar-card {
  padding: 40px 32px; border-right: 1px solid rgba(255,255,255,0.08); color: var(--white);
  transition: background 0.25s;
}
.an-pillar-card:last-child { border-right: none; }
.an-pillar-card:hover { background: rgba(255,255,255,0.04); }
.an-pillar-card h2 { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; letter-spacing: -0.01em; }
.an-pillar-card h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; color: rgba(255,255,255,0.9); }
.an-pillar-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 16px; }
.an-pillar-card a { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; }
.an-pillar-card a:hover { color: var(--accent); border-color: var(--accent); }
.an-pillar-icon { font-size: 28px; margin-bottom: 20px; opacity: 0.8; }

/* ── Intro band ── */
.an-intro { padding: 72px 24px; text-align: center; background: var(--white); }
.an-intro-inner { max-width: 720px; margin: 0 auto; }
.an-intro h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; line-height: 1.45; color: var(--text); }

/* ── Stats (modest) ── */
.an-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.an-stat { padding: 40px 24px; text-align: center; border-right: 1px solid var(--gray-200); }
.an-stat:last-child { border-right: none; }
.an-stat-num { font-size: 1.75rem; font-weight: 800; color: var(--teal); margin-bottom: 6px; letter-spacing: -0.02em; }
.an-stat-label { font-size: 14px; color: var(--gray-700); line-height: 1.5; max-width: 220px; margin: 0 auto; }

/* ── Solutions tabs ── */
.an-tabs-section { padding: 72px 24px; background: var(--gray-50); }
.an-tabs-inner { max-width: var(--wide); margin: 0 auto; }
.an-tabs-head { margin-bottom: 32px; }
.an-tabs-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.02em; }
.an-tab-bar { display: flex; gap: 0; border-bottom: 2px solid var(--gray-200); margin-bottom: 40px; overflow-x: auto; }
.an-tab {
  padding: 12px 24px; font-size: 14px; font-weight: 600; color: var(--gray-700); background: none; border: none;
  border-bottom: 3px solid transparent; margin-bottom: -2px; cursor: pointer; font-family: var(--font); white-space: nowrap;
}
.an-tab.active, .an-tab:hover { color: var(--teal); border-bottom-color: var(--teal); }
.an-tab-panel { display: none; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; animation: fadeUp 0.4s ease; }
.an-tab-panel.active { display: grid; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.an-tab-panel h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; }
.an-tab-panel p { color: var(--gray-700); margin-bottom: 12px; line-height: 1.7; }
.an-tab-panel ul { margin: 16px 0 24px 20px; color: var(--gray-700); }
.an-tab-visual { border-radius: 8px; overflow: hidden; border: 1px solid var(--gray-200); }
.an-tab-visual img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* ── Service grid ── */
.an-services { padding: 72px 24px; background: var(--white); }
.an-services-inner { max-width: var(--wide); margin: 0 auto; }
.an-section-head { text-align: center; margin-bottom: 40px; }
.an-section-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.02em; }
.an-section-head p { color: var(--gray-700); margin-top: 10px; }
.an-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.an-service-card {
  display: block; padding: 32px; background: var(--gray-50); border: 1px solid var(--gray-200);
  transition: border-color 0.25s, transform 0.25s; color: inherit;
}
.an-service-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.an-service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.an-service-card p { font-size: 15px; color: var(--gray-700); line-height: 1.65; margin-bottom: 14px; }
.an-service-card .an-link { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--teal); }

/* ── Why section ── */
.an-why { padding: 72px 24px; background: var(--teal); color: var(--white); }
.an-why-inner { max-width: var(--wide); margin: 0 auto; }
.an-why-head { max-width: 640px; margin-bottom: 40px; }
.an-why-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.an-why-head p { color: rgba(255,255,255,0.75); line-height: 1.7; }
.an-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.an-why-card { padding: 28px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.an-why-card h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.an-why-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.65; }

/* ── CTA teal band ── */
.an-cta { padding: 72px 24px; background: var(--black); color: var(--white); text-align: center; }
.an-cta h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; text-transform: uppercase; margin-bottom: 14px; letter-spacing: -0.02em; }
.an-cta p { color: rgba(255,255,255,0.7); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── Contact ── */
.an-contact { padding: 72px 24px; background: var(--gray-50); }
.an-contact-grid { max-width: var(--wide); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.an-contact h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 14px; }
.an-contact p { color: var(--gray-700); margin-bottom: 24px; }
.an-info-item { margin-bottom: 18px; }
.an-info-item strong { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); margin-bottom: 4px; }
.an-info-item span, .an-info-item a { font-size: 15px; font-weight: 600; color: var(--text); }
.an-form { background: var(--white); padding: 36px; border: 1px solid var(--gray-200); }
.an-form h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 22px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--gray-200); border-radius: 4px; font-family: var(--font); font-size: 15px;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(12,69,68,0.12);
}
.form-row textarea { min-height: 120px; resize: vertical; }

/* ── Page hero ── */
.an-page-hero { background: var(--teal); color: var(--white); padding: 48px 24px; }
.an-page-hero-inner { max-width: var(--max); margin: 0 auto; }
.an-page-hero h1 { font-size: clamp(1.85rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.an-page-hero p { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 560px; }
.an-crumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.an-crumb a { color: rgba(255,255,255,0.5); }

.section-wrap { max-width: var(--max); margin: 0 auto; padding: 64px 24px; }
.section-wrap h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 14px; }
.section-wrap h3 { font-size: 1.05rem; font-weight: 700; margin: 22px 0 8px; }
.section-wrap p { margin-bottom: 12px; color: var(--gray-700); }
.section-wrap ul { margin: 0 0 14px 20px; color: var(--gray-700); }
.notice-box { background: var(--teal-light); border-left: 3px solid var(--teal); padding: 16px 20px; margin: 20px 0; font-size: 14px; }
.data-table { width: 100%; border-collapse: collapse; border: 1px solid var(--gray-200); font-size: 14px; margin: 20px 0; }
.data-table th, .data-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--gray-200); }
.data-table th { background: var(--gray-50); width: 200px; font-weight: 700; }

.sidebar-layout { display: grid; grid-template-columns: 200px 1fr; gap: 40px; max-width: var(--max); margin: 0 auto; padding: 48px 24px 64px; }
.side-nav { position: sticky; top: calc(var(--header-h) + 16px); align-self: start; }
.side-nav h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); margin-bottom: 10px; }
.side-nav ul { list-style: none; }
.side-nav li a { display: block; padding: 10px 0; font-size: 14px; font-weight: 600; color: var(--gray-700); border-bottom: 1px solid var(--gray-200); }
.side-nav li a:hover, .side-nav li a.active { color: var(--teal); }

.insight-card { border: 1px solid var(--gray-200); padding: 28px; margin-bottom: 16px; }
.insight-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.insight-card .meta { font-size: 13px; color: var(--gray-500); margin-bottom: 10px; }
.insight-card p { font-size: 15px; color: var(--gray-700); }

/* ── Footer ── */
.an-footer { background: var(--black); color: rgba(255,255,255,0.55); padding: 56px 24px 28px; }
.an-footer-inner { max-width: var(--wide); margin: 0 auto; }
.an-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.an-footer-brand .an-logo-text { font-size: 1.2rem; font-weight: 600; color: var(--white); letter-spacing: -0.02em; }
.an-footer-brand p { margin-top: 14px; font-size: 14px; line-height: 1.75; }
.an-footer-brand a { color: var(--accent); }
.an-footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.an-footer-col ul { list-style: none; }
.an-footer-col li { margin-bottom: 7px; }
.an-footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); font-weight: 500; }
.an-footer-col a:hover { color: var(--white); }
.an-footer-legal { padding-top: 22px; font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.35); }
.an-footer-bottom { padding-top: 18px; font-size: 13px; }

@media (max-width: 1024px) {
  .an-hero-inner, .an-contact-grid, .an-tab-panel.active, .an-service-grid { grid-template-columns: 1fr; }
  .an-pillars-row, .an-why-grid { grid-template-columns: 1fr; }
  .an-pillar-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .an-stats { grid-template-columns: 1fr; }
  .an-stat { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .an-footer-grid { grid-template-columns: 1fr 1fr; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .side-nav { position: static; }
}
/* ── Subnav ── */
.an-subnav { background: var(--teal-dark); border-bottom: 1px solid rgba(255,255,255,0.06); }
.an-subnav-inner {
  max-width: var(--wide); margin: 0 auto; padding: 0 24px; height: 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.an-subnav-brand { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.45); white-space: nowrap; }
.an-subnav-links { list-style: none; display: flex; gap: 0; overflow-x: auto; }
.an-subnav-links a {
  display: block; padding: 12px 16px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); white-space: nowrap;
}
.an-subnav-links a:hover, .an-subnav-links a.active { color: var(--white); }

/* ── Hero mesh ── */
.an-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(245,166,35,0.12) 0%, transparent 55%),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
}
.an-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.4), transparent);
}

/* ── Stats marquee ── */
.an-stats-marquee { overflow: hidden; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); background: var(--white); }
.an-stats-track {
  display: flex; width: max-content; animation: anMarquee 32s linear infinite;
}
.an-stats-marquee:hover .an-stats-track { animation-play-state: paused; }
@keyframes anMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.an-stat-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 36px 48px; min-width: 220px; border-right: 1px solid var(--gray-200); text-align: center;
}
.an-stat-item .an-stat-num { font-size: 2rem; font-weight: 800; color: var(--teal); letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.an-stat-item .an-stat-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gray-700); max-width: 180px; line-height: 1.4; }

/* ── Segment cards ── */
.an-segments { padding: 72px 24px; background: var(--white); }
.an-segments-inner { max-width: var(--wide); margin: 0 auto; }
.an-segments-head { margin-bottom: 36px; }
.an-segments-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.02em; }
.an-segments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.an-segment-card {
  position: relative; display: block; min-height: 280px; padding: 36px; overflow: hidden;
  background: var(--teal); color: var(--white); transition: transform 0.3s;
}
.an-segment-card:hover { transform: translateY(-6px); color: var(--white); }
.an-segment-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0.15;
  background: repeating-linear-gradient(135deg, transparent, transparent 16px, rgba(255,255,255,0.5) 16px, rgba(255,255,255,0.5) 18px);
}
.an-segment-card > * { position: relative; z-index: 1; }
.an-segment-card h3 { font-size: 1.35rem; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; letter-spacing: -0.01em; }
.an-segment-card p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 20px; }
.an-segment-card span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 2px; }
.an-segment-card:nth-child(2) { background: var(--teal-dark); }
.an-segment-card:nth-child(3) { background: var(--black); }

/* ── Testimonials ── */
.an-stories { padding: 72px 24px; background: var(--gray-50); }
.an-stories-inner { max-width: var(--wide); margin: 0 auto; }
.an-stories-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.an-stories-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.02em; }
.an-stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.an-story-card {
  background: var(--white); border: 1px solid var(--gray-200); padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 260px;
}
.an-story-card blockquote { font-size: 15px; color: var(--gray-700); line-height: 1.75; margin-bottom: 24px; font-style: normal; }
.an-story-card blockquote::before { content: '\201C'; font-size: 2rem; color: var(--teal); line-height: 0; display: block; margin-bottom: 12px; font-weight: 800; }
.an-story-author { font-size: 13px; font-weight: 700; color: var(--text); }
.an-story-role { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.an-story-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal); margin-bottom: 16px; }

/* ── Industries ── */
.an-industries { padding: 72px 24px; background: var(--white); }
.an-industries-inner { max-width: var(--wide); margin: 0 auto; }
.an-industries-head { text-align: center; margin-bottom: 40px; }
.an-industries-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.02em; }
.an-industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.an-industry-card {
  padding: 28px; border: 1px solid var(--gray-200); transition: border-color 0.25s, background 0.25s;
}
.an-industry-card:hover { border-color: var(--teal); background: var(--teal-light); }
.an-industry-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.an-industry-card p { font-size: 14px; color: var(--gray-700); line-height: 1.6; margin-bottom: 12px; }
.an-industry-card a { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--teal); }

/* ── Insights preview ── */
.an-insights-preview { padding: 72px 24px; background: var(--gray-50); }
.an-insights-preview-inner { max-width: var(--wide); margin: 0 auto; }
.an-insights-preview-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.an-insights-preview-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.02em; }
.an-insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.an-insight-preview {
  background: var(--white); border: 1px solid var(--gray-200); padding: 28px; transition: transform 0.25s;
}
.an-insight-preview:hover { transform: translateY(-4px); border-color: var(--teal); }
.an-insight-preview .meta { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gray-500); margin-bottom: 10px; }
.an-insight-preview h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.an-insight-preview p { font-size: 14px; color: var(--gray-700); line-height: 1.65; }

/* ── Video / about band ── */
.an-about-band { padding: 72px 24px; background: var(--black); color: var(--white); }
.an-about-band-inner {
  max-width: var(--wide); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.an-about-band h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.an-about-band p { color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 24px; }
.an-about-visual {
  aspect-ratio: 16/10; background: var(--teal-dark); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.an-about-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245,166,35,0.2) 0%, transparent 60%);
}
.an-about-visual-inner { position: relative; text-align: center; padding: 24px; }
.an-about-visual-inner .an-play {
  width: 64px; height: 64px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 20px; color: var(--white);
}
.an-about-visual-inner p { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); }

@media (max-width: 1024px) {
  .an-segments-grid, .an-stories-grid, .an-industries-grid, .an-insights-grid, .an-about-band-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .an-nav { display: none; }
  .an-nav.open { display: block; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 16px 24px 24px; }
  .an-nav.open > ul { flex-direction: column; align-items: stretch; }
  .an-menu-btn { display: block; }
  .an-header-actions .an-btn-outline { display: none; }
  .an-footer-grid { grid-template-columns: 1fr; }
  .an-hero-visual { order: -1; }
  .an-subnav { display: none; }
}
