/* ============================================================
   Inspired Innovation — site styles
   ============================================================ */

:root {
  --bg: #07091a;
  --bg-elev: #0d1226;
  --bg-card: #131a35;
  --bg-card-2: #182245;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #eef1fa;
  --text-muted: #9aa4c0;
  --text-dim: #6b7596;

  --navy: #1e3a6b;
  --navy-deep: #122549;
  --orange: #f0892c;
  --orange-bright: #ff9c3e;
  --gold: #f5c04b;
  --blue-soft: #2c63b6;

  --grad-hero: radial-gradient(
      1200px 700px at 50% -10%,
      rgba(240, 137, 44, 0.18),
      transparent 60%
    ),
    radial-gradient(900px 600px at 90% 10%, rgba(44, 99, 182, 0.18), transparent 65%),
    radial-gradient(800px 500px at 0% 30%, rgba(245, 192, 75, 0.08), transparent 60%);

  --font-display: "Outfit", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --maxw: 1180px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --t-fast: 160ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-med: 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

a {
  color: var(--orange-bright);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--gold);
}

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

::selection {
  background: rgba(240, 137, 44, 0.35);
  color: #fff;
}

/* ============================================================
   Layout
   ============================================================ */

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section--tight {
  padding: 64px 0;
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }
  .section--tight {
    padding: 40px 0;
  }
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(7, 9, 26, 0.7);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--text);
}

.brand:hover {
  color: var(--text);
}

.brand__mark {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 6px 18px rgba(240, 137, 44, 0.35));
}

.brand__name {
  text-transform: uppercase;
}

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

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav__cta {
  margin-left: 6px;
  padding: 0 16px !important;
  background: linear-gradient(135deg, var(--orange), var(--gold)) !important;
  color: #1a1208 !important;
  font-weight: 600 !important;
  box-shadow: 0 6px 22px rgba(240, 137, 44, 0.35);
}

.nav__cta:hover {
  filter: brightness(1.05);
  color: #1a1208 !important;
}

@media (max-width: 720px) {
  .nav a:not(.nav__cta) {
    display: none;
  }
  .brand__name {
    display: none;
  }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.hero__crest {
  width: 132px;
  height: 132px;
  margin: 0 auto 36px;
  filter: drop-shadow(0 18px 60px rgba(240, 137, 44, 0.45));
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(240, 137, 44, 0.08);
  border: 1px solid rgba(240, 137, 44, 0.25);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  background: linear-gradient(180deg, #ffffff 30%, #d9deef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__title .accent {
  background: linear-gradient(135deg, var(--orange-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--gold);
  letter-spacing: 0.02em;
  margin: 0 0 28px;
}

.hero__lede {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--t-fast), background var(--t-fast),
    box-shadow var(--t-fast), color var(--t-fast);
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #1a1208;
  box-shadow: 0 10px 30px rgba(240, 137, 44, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 38px rgba(240, 137, 44, 0.45);
  color: #1a1208;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  transform: translateY(-1px);
}

.btn__arrow {
  transition: transform var(--t-fast);
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* ============================================================
   Section headers
   ============================================================ */

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
}

.section-head__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--text);
}

.section-head__lede {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   Pillar cards (3-up)
   ============================================================ */

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

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

.pillar {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  transition: transform var(--t-med), border-color var(--t-med),
    box-shadow var(--t-med);
  overflow: hidden;
}

.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px 200px at 50% 0%,
    rgba(240, 137, 44, 0.12),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-med);
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 137, 44, 0.35);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.pillar:hover::before {
  opacity: 1;
}

.pillar__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(240, 137, 44, 0.12);
  color: var(--orange-bright);
  margin-bottom: 20px;
  border: 1px solid rgba(240, 137, 44, 0.28);
}

.pillar__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.3;
}

.pillar__body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   Mission section (longform)
   ============================================================ */

.mission {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 920px) {
  .mission {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.mission__label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.mission__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

.mission__body p {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 20px;
}

.mission__body p:last-child {
  margin-bottom: 0;
}

.mission__body strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================================
   Domains strip
   ============================================================ */

.domains {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.domain-chip {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  transition: all var(--t-fast);
}

.domain-chip:hover {
  color: var(--gold);
  border-color: rgba(245, 192, 75, 0.3);
  background: rgba(245, 192, 75, 0.06);
}

/* ============================================================
   Product detail blocks
   ============================================================ */

.product-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.product-block:first-of-type {
  border-top: none;
  padding-top: 16px;
}

.product-block--reverse .product-block__art {
  order: 2;
}

@media (max-width: 920px) {
  .product-block {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0;
  }
  .product-block--reverse .product-block__art {
    order: -1;
  }
}

.product-block__index {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.product-block__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--text);
}

.product-block__lede {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

.product-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.product-block__list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.product-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: 0 0 12px rgba(240, 137, 44, 0.45);
}

.product-block__list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg);
}

.product-block__art {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-deep), var(--bg-card-2));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.product-block__art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(240, 137, 44, 0.25),
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(44, 99, 182, 0.3),
      transparent 50%
    );
}

.product-block__art svg {
  position: relative;
  width: 60%;
  max-width: 220px;
  filter: drop-shadow(0 14px 40px rgba(240, 137, 44, 0.4));
}

/* ============================================================
   Team
   ============================================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.team-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color var(--t-med), transform var(--t-med);
}

.team-card:hover {
  border-color: rgba(240, 137, 44, 0.35);
  transform: translateY(-3px);
}

.team-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #1a1208;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 40px rgba(240, 137, 44, 0.35);
}

.team-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--text);
}

.team-card__title {
  font-size: 14px;
  color: var(--gold);
  margin: 0 0 16px;
  font-weight: 500;
}

.team-card__bio {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  text-align: left;
}

/* ============================================================
   Contact form
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

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

.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--text);
}

.contact-info p {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 28px;
}

.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.contact-info__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
}

.contact-info__list svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info__list a {
  color: var(--text);
}

.contact-info__list a:hover {
  color: var(--gold);
}

.form {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.field label .req {
  color: var(--orange);
  margin-left: 2px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(7, 9, 26, 0.6);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  transition: border-color var(--t-fast), box-shadow var(--t-fast),
    background var(--t-fast);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dim);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(7, 9, 26, 0.85);
  box-shadow: 0 0 0 4px rgba(240, 137, 44, 0.12);
}

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

.field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.form__hint {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}

.form__status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14.5px;
  display: none;
}

.form__status[data-state="ok"] {
  display: block;
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #9bd99e;
}

.form__status[data-state="error"] {
  display: block;
  background: rgba(244, 67, 54, 0.08);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f4a8a4;
}

.form__status[data-state="sending"] {
  display: block;
  background: rgba(240, 137, 44, 0.08);
  border: 1px solid rgba(240, 137, 44, 0.3);
  color: var(--gold);
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 36px;
  margin-top: 64px;
  background: rgba(7, 9, 26, 0.5);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

@media (max-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.site-footer__brand img {
  width: 36px;
  height: 36px;
}

.site-footer__brand strong {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 15px;
}

.site-footer__tagline {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 380px;
}

.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 16px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer li a {
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 400;
}

.site-footer li a:hover {
  color: var(--gold);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

/* ============================================================
   404
   ============================================================ */

.notfound {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.notfound h1 {
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 140px);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 0;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.notfound p {
  font-size: 18px;
  color: var(--text-muted);
  margin: 12px 0 32px;
}

/* ============================================================
   Reveal animation
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease-out, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__crest {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}
