/* ==========================================================================
   SEVEN HORNS — Event Experiences & Brand Activation
   Design system: Black / Deep Purple / Neon Green
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --black: #050307;
  --black-2: #0a0510;
  --purple-950: #0d0616;
  --purple-900: #150523;
  --purple-800: #1e0b33;
  --purple-700: #2a0f4a;
  --purple-600: #3c1a66;
  --green: #77fd68;
  --green-bright: #8cff7e;
  --green-dim: rgba(119, 253, 104, 0.12);
  --white: #f5f2ff;
  --text-dim: #a79bc0;
  --line: rgba(167, 155, 192, 0.16);

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --header-h: 76px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--green);
  color: var(--black);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--black-2);
}
::-webkit-scrollbar-thumb {
  background: var(--purple-700);
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--purple-600);
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

p {
  color: var(--text-dim);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}

.grad-text {
  background: linear-gradient(100deg, var(--green) 0%, #d4ffcf 55%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Layout ---------- */
.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  position: relative;
}

.section--tint {
  background: linear-gradient(180deg, var(--black) 0%, var(--purple-950) 50%, var(--black) 100%);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
}

.section-head p {
  max-width: 560px;
  margin-top: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.btn .arrow {
  transition: transform 0.3s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(5px);
}

.btn--green {
  background: var(--green);
  color: var(--black);
}

.btn--green:hover {
  background: var(--green-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(119, 253, 104, 0.35);
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease, height 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(5, 3, 7, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  height: 66px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 46px;
  width: auto;
  transition: height 0.35s ease;
}

.site-header.scrolled .brand img {
  height: 38px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  color: var(--green);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--green);
  background: var(--green-dim);
}

.nav-cta {
  margin-left: 10px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 20px 6%;
    background: rgba(10, 5, 16, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform 0.4s var(--ease);
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .nav-cta {
    margin: 10px 0 6px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 78% 20%, rgba(60, 26, 102, 0.55), transparent 60%),
    radial-gradient(45% 45% at 15% 85%, rgba(119, 253, 104, 0.12), transparent 60%),
    radial-gradient(40% 40% at 55% 100%, rgba(60, 26, 102, 0.35), transparent 60%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  margin: 22px 0 22px;
}

.hero .lead {
  font-size: 1.06rem;
  max-width: 560px;
  margin-bottom: 34px;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual .logo-frame {
  position: relative;
  height: min(72vh, 620px);
  aspect-ratio: 738 / 1355;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 60px rgba(119, 253, 104, 0.12);
  transform: rotate(2deg);
  transition: transform 0.6s var(--ease);
}

.hero-visual .logo-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: 18px;
  right: -26px;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 10px;
  transform: rotate(6deg);
  box-shadow: 0 12px 30px rgba(119, 253, 104, 0.4);
  z-index: 2;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 42px;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  display: block;
}

.hero-stats span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero .lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-visual .logo-frame {
    height: 46vh;
  }

  .hero-badge {
    right: calc(50% - 210px);
  }
}

/* ---------- Marquee ticker ---------- */
.ticker {
  background: var(--green);
  color: var(--black);
  padding: 14px 0;
  overflow: hidden;
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}

.ticker-track span::after {
  content: "✦";
  font-size: 0.9rem;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 26px;
}

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

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 980px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: linear-gradient(160deg, var(--purple-900) 0%, var(--black-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.35s ease, box-shadow 0.45s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(119, 253, 104, 0.45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(119, 253, 104, 0.2);
}

.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--green-dim);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--green);
  border: 1px solid rgba(119, 253, 104, 0.25);
}

.card .icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.card-link .arrow {
  transition: transform 0.3s var(--ease);
}

.card:hover .card-link .arrow {
  transform: translateX(5px);
}

.card .card-num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--text-dim);
  opacity: 0.5;
}

/* ---------- Stats band ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.2rem);
  background: linear-gradient(160deg, var(--purple-800), var(--purple-950));
}

.stat {
  text-align: center;
}

.stat strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  color: var(--green);
  display: block;
  line-height: 1;
}

.stat span {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 860px) {
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Work / gallery ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-bar button {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: all 0.3s ease;
}

.filter-bar button:hover {
  color: var(--green);
  border-color: rgba(119, 253, 104, 0.5);
}

.filter-bar button.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 980px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

.work-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  display: block;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.work-card .thumb {
  position: absolute;
  inset: 0;
  background: var(--purple-900);
  display: grid;
  place-items: center;
}

.work-card .thumb svg {
  width: 46px;
  height: 46px;
  color: var(--green);
  opacity: 0.7;
}

.work-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 3, 7, 0.92) 100%);
  transition: background 0.4s ease;
}

.work-card:hover .overlay {
  background: linear-gradient(180deg, transparent 10%, rgba(5, 3, 7, 0.96) 100%);
}

.work-card .tag {
  align-self: flex-start;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.work-card h3 {
  font-size: 1.05rem;
}

.work-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease);
}

.work-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

.work-card[hidden] {
  display: none;
}

/* Placeholder artwork variants */
.thumb--v1 { background: radial-gradient(120% 120% at 20% 20%, #3c1a66, #0d0616 65%), #0d0616; }
.thumb--v2 { background: radial-gradient(120% 120% at 80% 15%, #77fd68, #0d0616 60%), #0d0616; }
.thumb--v3 { background: linear-gradient(135deg, #2a0f4a 0%, #150523 55%, #3c1a66 100%); }
.thumb--v4 { background: radial-gradient(120% 120% at 50% 100%, #3c1a66, #0a0510 65%), #0a0510; }
.thumb--v5 { background: conic-gradient(from 210deg at 60% 40%, #3c1a66, #0d0616, #2a0f4a, #0d0616, #3c1a66); }
.thumb--v6 { background: linear-gradient(135deg, #150523 0%, #3c1a66 50%, #77fd68 260%), #150523; }
.thumb--v7 { background: radial-gradient(80% 80% at 30% 30%, #77fd68 0%, transparent 60%), linear-gradient(160deg, #2a0f4a, #0a0510); }
.thumb--v8 { background: linear-gradient(160deg, #3c1a66 0%, #150523 60%, #2a0f4a 100%); }
.thumb--v9 { background: radial-gradient(90% 90% at 80% 80%, rgba(119,253,104,.35), transparent 55%), linear-gradient(135deg, #2a0f4a, #0d0616); }

/* ---------- Industries ---------- */
.industry-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--purple-900), var(--black-2));
  min-height: 210px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(119, 253, 104, 0.45);
}

.industry-card .emoji {
  font-size: 2rem;
  margin-bottom: 14px;
}

.industry-card h3 {
  font-size: 1.02rem;
}

.industry-card p {
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ---------- Process ---------- */
.process-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 30px 34px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}

.process-step:last-child {
  border-bottom: none;
}

.process-step:hover {
  background: var(--green-dim);
}

.process-step .step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  opacity: 0.85;
}

.process-step h3 {
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: linear-gradient(160deg, var(--purple-900), var(--black-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial .stars {
  color: var(--green);
  letter-spacing: 4px;
}

.testimonial blockquote {
  font-size: 1.02rem;
  color: var(--white);
  font-style: italic;
}

.testimonial footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-600), var(--green));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black);
  font-size: 0.95rem;
}

.testimonial .who strong {
  display: block;
  font-size: 0.92rem;
}

.testimonial .who span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) 6%;
  background: linear-gradient(160deg, var(--purple-800) 0%, var(--purple-950) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 60% at 50% 110%, rgba(119, 253, 104, 0.22), transparent 65%);
}

.cta-band h2 {
  max-width: 760px;
  margin: 18px auto 16px;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-band .btn {
  position: relative;
  z-index: 1;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(3.5rem, 8vw, 6rem)) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 55% at 80% 10%, rgba(60, 26, 102, 0.5), transparent 60%),
    radial-gradient(40% 45% at 10% 95%, rgba(119, 253, 104, 0.1), transparent 60%);
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 20px 0 18px;
  max-width: 900px;
}

.page-hero .lead {
  max-width: 620px;
  font-size: 1.05rem;
}

.crumbs {
  display: flex;
  gap: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.crumbs a:hover {
  color: var(--green);
}

.crumbs span {
  color: var(--green);
}

/* ---------- Accordion (FAQ / details) ---------- */
.accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.25s ease, background 0.25s ease;
}

.accordion-trigger:hover {
  color: var(--green);
}

.accordion-trigger .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 1.1rem;
  transition: transform 0.35s var(--ease), background 0.3s ease, border-color 0.3s ease;
}

.accordion-item.open .accordion-trigger .plus {
  transform: rotate(45deg);
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.accordion-panel p {
  padding: 0 26px 24px;
  font-size: 0.95rem;
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.field label .req {
  color: var(--green);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(119, 253, 104, 0.05);
  box-shadow: 0 0 0 4px rgba(119, 253, 104, 0.12);
}

.field select option {
  background: var(--black-2);
  color: var(--white);
}

.field select:invalid {
  color: var(--text-dim);
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.form-note a {
  color: var(--green);
}

/* ---------- Contact layout ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.info-list {
  display: grid;
  gap: 26px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-item .icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-dim);
  border: 1px solid rgba(119, 253, 104, 0.25);
  display: grid;
  place-items: center;
  color: var(--green);
}

.info-item .icon svg {
  width: 22px;
  height: 22px;
}

.info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.info-item p,
.info-item a {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.info-item a:hover {
  color: var(--green);
}

/* ---------- Team ---------- */
.team-card {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(160deg, var(--purple-900), var(--black-2));
  transition: transform 0.45s var(--ease), border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(119, 253, 104, 0.45);
}

.team-card .head {
  aspect-ratio: 1 / 0.92;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
}

.team-card .body {
  padding: 22px;
}

.team-card .body h3 {
  font-size: 1.02rem;
}

.team-card .body span {
  font-size: 0.82rem;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Value list ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

@media (max-width: 760px) {
  .values {
    grid-template-columns: 1fr;
  }
}

.value-item {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--purple-900), var(--black-2));
  transition: border-color 0.3s ease, transform 0.4s var(--ease);
}

.value-item:hover {
  border-color: rgba(119, 253, 104, 0.45);
  transform: translateY(-5px);
}

.value-item h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.value-item h3 .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(119, 253, 104, 0.7);
}

/* ---------- Detail / split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split .art {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--green);
}

.split .art svg {
  width: 74px;
  height: 74px;
}

.split h2 {
  margin: 18px 0 16px;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-dim);
  font-size: 0.98rem;
}

.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid rgba(119, 253, 104, 0.4);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
}

/* ---------- Deliverables table ---------- */
.pack-list {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pack-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.pack-row:last-child {
  border-bottom: none;
}

.pack-row:hover {
  background: var(--green-dim);
}

.pack-row strong {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--green);
}

.pack-row span {
  color: var(--text-dim);
}

@media (max-width: 640px) {
  .pack-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--black-2);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 0;
  margin-top: clamp(3rem, 8vw, 6rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 300px;
  font-size: 0.92rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: var(--text-dim);
  font-size: 0.93rem;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--green);
}

.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.newsletter input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
}

.newsletter input:focus {
  outline: none;
  border-color: var(--green);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-bottom .socials {
  display: flex;
  gap: 8px;
}

.footer-bottom .socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.footer-bottom .socials a:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
}

.footer-bottom .socials svg {
  width: 16px;
  height: 16px;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Utility ---------- */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.center { text-align: center; }

.big-cta {
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) 6%;
}

.form-wrap {
  background: linear-gradient(160deg, var(--purple-900), var(--black-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
}

.form-wrap h2 {
  margin-bottom: 8px;
}

.form-wrap .form-sub {
  margin-bottom: 28px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 10px;
}

.form-success .tick {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 800;
}

.form.success .form-fields,
.form.success .form-sub {
  display: none;
}

.form.success .form-success {
  display: block;
}

/* Newsletter inline success */
.newsletter.success input,
.newsletter.success button {
  display: none;
}

.newsletter .form-success {
  display: none;
  color: var(--green);
  font-size: 0.88rem;
}

.newsletter.success .form-success {
  display: block;
}
