/* =============================================
   LINKSY — STYLES.CSS
   Color Palette from App:
   Background: #0c0c0c / #111111
   Primary Accent: #f97316 (orange)
   Light Accent: #fb923c
   Text: #ffffff, #a3a3a3
   Card BG: #1a1a1a / #222222
============================================= */

:root {
  --orange: #f97316;
  --orange-light: #fb923c;
  --orange-pale: rgba(249, 115, 22, 0.12);
  --orange-glow: rgba(249, 115, 22, 0.25);
  --bg: #0d0d0d;
  --bg2: #141414;
  --bg3: #1c1c1c;
  --card: #191919;
  --card2: #222222;
  --border: rgba(255,255,255,0.07);
  --text: #ffffff;
  --text-muted: #888888;
  --text-dim: #555555;
  --radius: 16px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.dot { color: var(--orange); }

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
}

.section-title em {
  font-style: italic;
  color: var(--orange-light);
}

.section-title.centered { text-align: center; }

.highlight {
  position: relative;
  color: var(--orange);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 0 30px rgba(249,115,22,0.3);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(249,115,22,0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s;
}

.nav.scrolled {
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  border: 1px solid var(--orange);
  padding: 9px 22px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover { background: var(--orange); color: #000; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
  gap: 40px;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(251,146,60,0.12) 0%, transparent 70%);
  bottom: 50px; right: 0;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-pale);
  border: 1px solid rgba(249,115,22,0.25);
  color: var(--orange-light);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  animation: fadeUp 0.7s ease both;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--orange-light);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* Phone mockup */
.hero-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s 0.2s ease both;
}

.phone-mockup {
  position: relative;
  width: 240px;
  height: 480px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg3);
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
}

.screen-header {
  height: 32px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.screen-dot {
  width: 80px; height: 10px;
  background: #1a1a1a;
  border-radius: 100px;
}

.screen-body {
  flex: 1;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screen-card {
  background: var(--card2);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
}

.card-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.card-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.card-tag {
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
  margin-top: 2px;
}

.screen-prompt {
  margin-top: auto;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prompt-icon { font-size: 20px; }

.prompt-text {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
}

.phone-glow {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  box-shadow: 0 0 80px rgba(249,115,22,0.15);
  pointer-events: none;
}

.card-anim-1 { animation: slideIn 0.6s 0.5s ease both; }
.card-anim-2 { animation: slideIn 0.6s 0.7s ease both; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(249,115,22,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---- OVERVIEW ---- */
.overview {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-top: 24px;
}

.overview-desc {
  color: var(--text-muted);
  font-size: 15.5px;
  margin-bottom: 20px;
  line-height: 1.75;
}

.overview-stat-row {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 6px;
  line-height: 1.4;
  font-weight: 400;
}

/* ---- HOW IT WORKS ---- */
.how {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
}

.step-connector {
  position: absolute;
  top: 56px;
  left: calc(16.66% + 32px);
  right: calc(16.66% + 32px);
  height: 1px;
  background: linear-gradient(to right, var(--orange), var(--orange-light), var(--orange));
  opacity: 0.3;
}

.step {
  position: relative;
  padding: 0 32px;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s, transform 0.5s;
}

.step.visible { opacity: 1; transform: translateY(0); }

.step:nth-child(2) { transition-delay: 0.1s; }
.step:nth-child(3) { transition-delay: 0.2s; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.step-icon-wrap {
  width: 64px; height: 64px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.step:hover .step-icon-wrap {
  border-color: var(--orange);
  box-shadow: 0 0 24px rgba(249,115,22,0.25);
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- FEATURES ---- */
.features {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 56px;
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(249,115,22,0.06), transparent 60%);
  pointer-events: none;
}

.feat-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(249,115,22,0.1);
}

.feat-large {
  grid-row: 1 / 3;
}

.feat-accent {
  background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(251,146,60,0.06));
  border-color: rgba(249,115,22,0.2);
}

.feat-glyph {
  font-size: 28px;
  margin-bottom: 16px;
}

.feat-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feat-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.feat-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  margin-top: 28px;
  overflow: hidden;
}

.feat-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--orange), var(--orange-light));
  border-radius: 100px;
  animation: barGrow 1.5s 0.5s ease both;
  width: 0%;
}

.feat-card.visible .feat-bar-fill { width: 92%; }

.feat-bar-label {
  font-size: 11px;
  color: var(--orange);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ---- AUDIENCE ---- */
.audience {
  padding: 120px 0;
  display: flex;
  align-items: center;
}

.audience .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.audience-desc {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 20px;
  margin-bottom: 32px;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--bg3);
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover { border-color: var(--orange); color: var(--orange); }

.audience-visual {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 0 auto;
}

.av-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid var(--border);
  transform: translate(-50%, -50%);
  animation: ringRotate 20s linear infinite;
}

.ring-outer { width: 300px; height: 300px; animation-duration: 28s; }
.ring-mid   { width: 210px; height: 210px; animation-duration: 20s; animation-direction: reverse; border-color: rgba(249,115,22,0.15); }
.ring-inner { width: 120px; height: 120px; animation-duration: 14s; border-color: rgba(249,115,22,0.25); }

.av-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  animation: pulse 3s ease-in-out infinite;
}

.av-node {
  position: absolute;
  width: 44px; height: 44px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.n1 { top: 8px; left: 50%; transform: translateX(-50%); }
.n2 { right: 8px; top: 50%; transform: translateY(-50%); }
.n3 { bottom: 8px; left: 50%; transform: translateX(-50%); }
.n4 { left: 8px; top: 50%; transform: translateY(-50%); }

/* ---- EXPERIENCE ---- */
.experience {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.exp-bg {
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.07), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 56px;
}

.exp-item {
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.exp-item:nth-child(1) { border-right: none; border-bottom: none; }
.exp-item:nth-child(2) { border-bottom: none; }
.exp-item:nth-child(3) { border-right: none; }
.exp-item.visible { opacity: 1; transform: translateY(0); }
.exp-item:nth-child(2) { transition-delay: 0.1s; }
.exp-item:nth-child(3) { transition-delay: 0.15s; }
.exp-item:nth-child(4) { transition-delay: 0.2s; }

.exp-line {
  width: 32px; height: 3px;
  background: var(--orange);
  border-radius: 100px;
  margin-bottom: 20px;
}

.exp-item h4 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.exp-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- CTA ---- */
.cta-section {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-orb1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.15), transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
}

.cta-orb2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(251,146,60,0.1), transparent 70%);
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
}

.cta-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  border: 1px solid rgba(249,115,22,0.2);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-title em {
  font-style: italic;
  color: var(--orange-light);
}

.cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-btn { font-size: 16px; padding: 18px 40px; }

/* ---- CONTACT ---- */
.contact-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.contact-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 48px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 660px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.contact-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(249,115,22,0.15);
}

.contact-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #000;
  flex-shrink: 0;
}

.contact-name {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.contact-email {
  font-size: 12px;
  color: var(--text-muted);
}

.contact-arrow {
  margin-left: auto;
  color: var(--orange);
  font-size: 18px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}

.contact-card:hover .contact-arrow { opacity: 1; transform: translateX(0); }

/* ---- FOOTER ---- */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(0.96); }
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.7); }
}

@keyframes ringRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes barGrow {
  from { width: 0; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .nav-links { display: none; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 24px 60px;
  }

  .hero-sub { margin: 0 auto 28px; }
  .hero-actions { justify-content: center; }
  .hero-phone-wrap { display: none; }

  .overview-grid { grid-template-columns: 1fr; gap: 32px; }
  .overview-stat-row { flex-wrap: wrap; gap: 24px; }
  .steps-track { grid-template-columns: 1fr; gap: 32px; }
  .step-connector { display: none; }
  .step { text-align: left; padding: 0; }

  .features-grid { grid-template-columns: 1fr; }
  .feat-large { grid-row: auto; }

  .audience .container { grid-template-columns: 1fr; }
  .audience-visual { display: none; }

  .exp-grid { grid-template-columns: 1fr; }
  .exp-item { border: none !important; border-top: 1px solid var(--border) !important; }
  .exp-item:first-child { border-top: none !important; }

  .contact-cards { grid-template-columns: 1fr; max-width: 100%; }

  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
}