/* ============================================================
   Ajay Dubey — Portfolio Styles (v3)
   Navy + Electric Coral · Split layout · High contrast
   ============================================================ */

:root {
  --navy: #0b1424;
  --navy-mid: #132038;
  --accent: #ff3b1f;
  --accent-hover: #e62f15;
  --accent-soft: #ff6a4d;
  --ice: #4da3ff;
  --sand: #f4f1ea; /* avoid as main bg — only tiny accents if needed */
  --bg: #f3f5f8;
  --bg-elevated: #ffffff;
  --text: #0b1424;
  --text-muted: #5a6b7d;
  --border: rgba(11, 20, 36, 0.1);
  --header-bg: rgba(243, 245, 248, 0.86);
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  --bg: #070b12;
  --bg-elevated: #101825;
  --text: #f2f5f9;
  --text-muted: #9aabbc;
  --border: rgba(255, 255, 255, 0.1);
  --header-bg: rgba(7, 11, 18, 0.88);
  --navy-mid: #1a2a44;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  transition: background 0.35s ease, color 0.3s ease;
}

::selection {
  background: var(--accent);
  color: #fff;
}

.site-atmosphere {
  display: none;
}

/* ---- Header ---- */
.site-header {
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 10px 40px rgba(11, 20, 36, 0.06);
}

.nav-link {
  position: relative;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}

.nav-link:hover::after {
  width: 100%;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.theme-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: rotate(-10deg);
}

[data-theme="light"] .icon-sun,
[data-theme="dark"] .icon-moon {
  display: none;
}

[data-theme="dark"] .icon-sun,
[data-theme="light"] .icon-moon {
  display: block;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 11px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--header-bg);
}

.mobile-link {
  display: block;
  padding: 0.85rem 0;
  color: var(--text);
}

.mobile-link:hover {
  color: var(--accent);
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(255, 59, 31, 0.35);
  transition: transform 0.25s var(--ease), background 0.2s, box-shadow 0.25s;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 59, 31, 0.45);
}

.btn-arrow {
  transition: transform 0.25s var(--ease);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.25s var(--ease), background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 59, 31, 0.06);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 1.7rem;
  font-size: 0.95rem;
}

/* ---- Sections ---- */
.section-pad {
  padding: 5rem 0;
}

@media (min-width: 640px) {
  .section-pad {
    padding: 7.5rem 0;
  }
}

.section-band {
  background: var(--navy);
  color: #f2f5f9;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-label::before {
  content: '';
  width: 20px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-label--on-dark {
  color: var(--accent-soft);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 18ch;
}

.section-title--on-dark {
  color: #fff;
}

.title-em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.section-desc {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 34rem;
}

.section-desc--on-dark {
  color: rgba(242, 245, 249, 0.7);
}

.lead-line {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--text) !important;
  line-height: 1.5 !important;
}

/* ---- Hero (split) ---- */
.hero {
  position: relative;
  padding-top: 4rem;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero-shell {
  flex: 1;
  display: grid;
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.25rem 1.5rem;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .hero-shell {
    padding: 2.5rem 1.5rem 2rem;
  }
}

@media (min-width: 768px) {
  .hero-shell {
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
    min-height: calc(100svh - 7.5rem);
    align-items: center;
    padding-bottom: 1rem;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0 0.5rem;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-brand-mark {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 59, 31, 0.18);
  animation: pulse-mark 2s ease-in-out infinite;
}

@keyframes pulse-mark {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 59, 31, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(255, 59, 31, 0); }
}

.hero-title {
  margin: 1.1rem 0 0;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #070d16;
}

[data-theme="dark"] .hero-title {
  color: #ffffff;
}

.hero-title-accent {
  display: block;
  margin-top: 0.15em;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.hero-sub {
  margin: 1.35rem 0 0;
  max-width: 32rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Tech pills */
.hero-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  transition: transform 0.25s var(--ease), border-color 0.2s, color 0.2s, background 0.2s;
}

.tech-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 59, 31, 0.08);
  transform: translateY(-2px);
}

[data-theme="dark"] .tech-pill {
  background: rgba(255, 255, 255, 0.04);
}

/* Hero panel — eye-catching color block */
.hero-panel {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 340px;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 24px 60px rgba(255, 59, 31, 0.22);
}

@media (min-width: 768px) {
  .hero-panel {
    min-height: 460px;
    height: 100%;
  }
}

.hero-panel-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, #ff3b1f 0%, #ff5c38 42%, #0b1424 42.1%, #152848 100%);
  z-index: 0;
}

[data-theme="dark"] .hero-panel-bg {
  background:
    linear-gradient(150deg, #ff3b1f 0%, #ff5c38 40%, #0e1624 40.1%, #1c3050 100%);
}

.hero-panel-shine {
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  animation: panel-shine 5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes panel-shine {
  0%, 100% { transform: translateX(-30%) rotate(12deg); opacity: 0.3; }
  50% { transform: translateX(30%) rotate(12deg); opacity: 0.7; }
}

.hero-panel-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, black, transparent 85%);
  opacity: 0.55;
}

.hero-panel-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
}

@media (min-width: 640px) {
  .hero-panel-inner {
    padding: 2.25rem;
  }
}

.hero-panel-label {
  margin: 0 0 auto;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-stat {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-stat-desc {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 18rem;
}

.hero-panel-tag {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

/* Marquee — high contrast bar */
.hero-marquee {
  background: var(--navy);
  overflow: hidden;
  margin-top: auto;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding: 1rem 0;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.marquee-item::before {
  content: '●';
  margin-right: 2.5rem;
  color: var(--accent);
  font-size: 0.55em;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---- About ---- */
.about-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.approach-strip {
  display: grid;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
}

@media (min-width: 768px) {
  .approach-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.approach-step {
  padding: 1.5rem 1.35rem;
  border-bottom: 1.5px solid var(--border);
  transition: background 0.25s;
}

.approach-step:hover {
  background: rgba(255, 59, 31, 0.04);
}

@media (min-width: 768px) {
  .approach-step {
    border-bottom: none;
    border-right: 1.5px solid var(--border);
  }

  .approach-step:last-child {
    border-right: none;
  }
}

.approach-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
}

.approach-title {
  margin: 0.55rem 0 0;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}

.approach-desc {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ---- Expertise ---- */
.expertise-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

@media (min-width: 1100px) {
  .expertise-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.expertise-block {
  padding: 1.6rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s var(--ease), border-color 0.25s, background 0.25s, box-shadow 0.3s;
}

.expertise-block:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--accent);
  background: rgba(255, 59, 31, 0.1);
  box-shadow: 0 16px 40px rgba(255, 59, 31, 0.15);
}

.expertise-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.expertise-title {
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.expertise-blurb {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(242, 245, 249, 0.65);
}

.expertise-list {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.expertise-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: rgba(242, 245, 249, 0.78);
}

.expertise-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--accent);
}

/* ---- Case studies ---- */
.cases-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.case-study {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.case-study:hover,
.case-study.is-open {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(255, 59, 31, 0.1);
}

.case-study:hover {
  transform: translateX(4px);
}

.case-toggle {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem 1rem;
  align-items: center;
  width: 100%;
  padding: 1.2rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
}

@media (min-width: 768px) {
  .case-toggle {
    grid-template-columns: 3.5rem 1fr auto auto;
    padding: 1.4rem 1.6rem;
    gap: 1.25rem;
  }
}

.case-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
}

.case-title {
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.case-sector {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.case-metric {
  display: none;
  text-align: right;
}

@media (min-width: 768px) {
  .case-metric {
    display: block;
  }
}

.case-metric-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}

.case-metric-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.case-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 59, 31, 0.1);
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}

.case-study.is-open .case-chevron {
  transform: rotate(180deg);
}

.case-body {
  padding: 0 1.25rem 1.4rem;
}

@media (min-width: 768px) {
  .case-body {
    padding: 0 1.6rem 1.6rem 5.35rem;
  }
}

.case-grid {
  display: grid;
  gap: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1.5px solid var(--border);
}

@media (min-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-impact {
    grid-column: 1 / -1;
  }
}

.case-label {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.case-grid p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.case-impact {
  padding: 1.15rem 1.25rem;
  border-radius: 10px;
  background: rgba(255, 59, 31, 0.08);
  border-left: 3px solid var(--accent);
}

.case-impact p {
  color: var(--text);
  font-weight: 600;
}

/* ---- Services ---- */
.service-row {
  transition: padding-left 0.25s var(--ease);
}

.service-row:hover {
  padding-left: 0.5rem;
}

.service-row:hover h3 {
  color: var(--accent) !important;
}

/* ---- Testimonials ---- */
.testimonial {
  height: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--accent);
  transition: transform 0.3s var(--ease);
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial-mark {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 3.25rem;
  line-height: 0.55;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.testimonial-quote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.testimonial-footer {
  border-top: 1px solid var(--border);
}

/* ---- Contact ---- */
.contact-link {
  display: block;
  text-decoration: none;
  padding: 0.9rem 0;
  border-bottom: 1.5px solid var(--border);
  transition: border-color 0.2s, padding-left 0.25s var(--ease);
}

.contact-link:hover {
  border-color: var(--accent);
  padding-left: 0.4rem;
}

.contact-link-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-link-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.contact-link:hover .contact-link-value {
  color: var(--accent);
}

.contact-form {
  position: relative;
  padding: 1.85rem;
  border-radius: 18px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
}

@media (min-width: 640px) {
  .contact-form {
    padding: 2.15rem;
  }
}

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.form-field .optional {
  font-weight: 500;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid transparent;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 59, 31, 0.15);
  background: var(--bg-elevated);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status.is-success { color: #0a8f5c; }
.form-status.is-error { color: var(--accent); }

/* ---- Footer ---- */
.site-footer {
  border-top: 1.5px solid var(--border) !important;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  transition: color 0.2s, border-color 0.2s, transform 0.25s var(--ease), background 0.2s;
}

.footer-social:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.hero-brand,
.hero-title,
.hero-sub,
.hero-tech,
.hero-cta,
.hero-panel {
  opacity: 0;
  transform: translateY(24px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-brand,
  .hero-title,
  .hero-sub,
  .hero-tech,
  .hero-cta,
  .hero-panel {
    opacity: 1;
    transform: none;
  }

  .marquee-track,
  .hero-brand-mark,
  .hero-panel-shine {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
