:root {
  --bg: #f5f3ea;
  --bg-deep: #efeade;
  --ink: #111827;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: rgba(17, 24, 39, 0.1);
  --line-strong: rgba(17, 24, 39, 0.18);
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --navy: #0d1b2a;
  --teal: #0f8f8a;
  --teal-soft: #d9f4f0;
  --gold: #c68c2a;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 143, 138, 0.08), transparent 24%),
    linear-gradient(180deg, #f8f6ef 0%, #f4f1e8 100%);
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.page-aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.aura {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.4;
}

.aura-left {
  top: -80px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(15, 143, 138, 0.18);
}

.aura-right {
  top: 15%;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(198, 140, 42, 0.14);
}

.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 27, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 27, 42, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 78%);
}

.page-shell {
  position: relative;
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  padding: 26px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand,
.topbar-links a,
.button,
.contact-row {
  text-decoration: none;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.84rem;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.topbar-links a {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  color: #f8fafc;
  box-shadow: 0 16px 36px rgba(13, 27, 42, 0.16);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.button-nav {
  min-height: 46px;
}

.button-block {
  width: 100%;
}

.hero,
.trust-band,
.section.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero.is-visible,
.trust-band.is-visible,
.section.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  padding: 58px 0 44px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow-warm {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 0.96;
}

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(4rem, 9vw, 7.2rem);
  max-width: 8ch;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

h3 {
  font-size: 1.4rem;
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 1rem;
}

.hero-text {
  max-width: 61ch;
  margin-top: 24px;
  font-size: 1.08rem;
}

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

.hero-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.hero-points p::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--teal);
  vertical-align: middle;
}

.hero-panel,
.panel-card,
.model-card,
.skill-card,
.advantage-shell,
.process-step,
.contact-shell {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(15, 143, 138, 0.1), transparent 24%),
    radial-gradient(circle at left bottom, rgba(198, 140, 42, 0.08), transparent 35%),
    rgba(13, 27, 42, 0.95);
}

.hero-panel-head h2,
.panel-card p,
.panel-card span {
  color: #edf4fb;
}

.hero-panel-head h2 {
  margin-top: 6px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.panel-cards {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.panel-card {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.panel-card span,
.card-kicker {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.panel-card p {
  margin-top: 10px;
  font-size: 1.05rem;
  line-height: 1.55;
}

.trust-band {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.trust-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.trust-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.72);
  color: var(--ink-soft);
  font-weight: 700;
}

.section {
  padding-top: 110px;
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin-bottom: 30px;
}

.split-head {
  max-width: none;
  grid-template-columns: 1fr 0.85fr;
  align-items: end;
}

.model-grid,
.skill-grid,
.process-strip {
  display: grid;
  gap: 18px;
}

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

.model-card,
.skill-card,
.process-step {
  padding: 26px;
  border-radius: 28px;
}

.model-card h3,
.skill-card h3,
.process-step h3 {
  margin: 14px 0 12px;
}

.skill-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.skill-list li + li {
  margin-top: 10px;
}

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

.advantage-shell,
.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(23, 42, 68, 0.96));
}

.advantage-copy h2,
.advantage-copy p,
.advantage-list strong,
.advantage-list p,
.contact-copy h2,
.contact-copy p,
.contact-row strong,
.contact-row span {
  color: #edf4fb;
}

.advantage-list {
  display: grid;
  gap: 16px;
}

.advantage-list article,
.contact-panel {
  border: 1px solid rgba(237, 244, 251, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.advantage-list article {
  padding: 18px 20px;
}

.advantage-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.03rem;
}

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

.process-step {
  background: rgba(255, 255, 255, 0.9);
}

.process-step span {
  display: inline-block;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
}

.contact-copy {
  max-width: 54ch;
}

.contact-panel {
  display: grid;
  gap: 0;
  padding: 14px;
  align-content: start;
}

.requirement-form {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding: 12px 4px 4px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  color: #a9bdd3;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(237, 244, 251, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #edf4fb;
  padding: 14px 16px;
  font: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #90a4ba;
}

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

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(115, 217, 212, 0.28);
  border-color: rgba(115, 217, 212, 0.48);
}

.form-note {
  min-height: 24px;
  color: #a9bdd3;
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-row {
  display: grid;
  gap: 6px;
  padding: 18px 16px;
  border-radius: 18px;
}

.contact-row + .contact-row {
  border-top: 1px solid rgba(237, 244, 251, 0.1);
}

.contact-row span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a9bdd3;
}

.contact-row strong {
  font-size: 1.18rem;
  line-height: 1.4;
}

.contact-panel .button {
  margin-top: 14px;
}

@media (max-width: 1080px) {
  .hero,
  .split-head,
  .advantage-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 18px, 1220px);
    padding-top: 16px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
  }

  .button-nav {
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .model-grid,
  .skill-grid,
  .process-strip,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .hero-panel,
  .model-card,
  .skill-card,
  .process-step,
  .advantage-shell,
  .contact-shell {
    border-radius: 26px;
  }
}
