:root {
  --bg: #08111f;
  --bg-soft: #101b2f;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.12);
  --text: #f7fbff;
  --muted: #b8c4d6;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #72e1ff;
  --accent-2: #9f7bff;
  --dark: #050a12;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(114, 225, 255, 0.18), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(159, 123, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #08111f 0%, #0a1322 45%, #050a12 100%);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(8, 17, 31, 0.74);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.nav-links,
.hero-actions,
.contact-buttons {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #06101d;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 30px rgba(114, 225, 255, 0.18);
}

.brand-text {
  font-size: 1rem;
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
}

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

.nav-cta {
  color: #07101d !important;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 8px;
  background: var(--text);
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 92px 22px;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 56px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-text,
.section-heading p,
.cta-section p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
}

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

.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: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.primary {
  color: #05101d;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 40px rgba(114, 225, 255, 0.16);
}

.secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.full {
  width: 100%;
  border: 0;
  font-size: 1rem;
}

.hero-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.mock-window {
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(114, 225, 255, 0.16), transparent 34%),
    linear-gradient(320deg, rgba(159, 123, 255, 0.22), transparent 46%),
    #0c1728;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.window-bar {
  height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.mock-content {
  padding: 34px;
}

.mock-line,
.mock-button,
.mock-grid div {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.mock-line {
  height: 16px;
  margin-bottom: 14px;
}

.mock-line.large {
  width: 70%;
  height: 42px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.22);
}

.mock-grid {
  margin: 38px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mock-grid div {
  height: 112px;
}

.mock-button {
  width: 160px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.logos {
  padding-top: 0;
  padding-bottom: 44px;
}

.logos p {
  margin: 0;
  padding: 26px;
  text-align: center;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.cards,
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card,
.step,
.contact-form,
.cta-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.card,
.step {
  padding: 26px;
}

.card p,
.step p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon,
.step span {
  display: inline-grid;
  place-items: center;
  margin-bottom: 28px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #05101d;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 54px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-item span {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.feature-item p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.cta-section {
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background:
    linear-gradient(135deg, rgba(114, 225, 255, 0.15), rgba(159, 123, 255, 0.12)),
    rgba(255, 255, 255, 0.07);
}

.cta-section p {
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-buttons {
  margin-top: 24px;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-link {
  padding: 12px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.contact-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(184, 196, 214, 0.68);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(114, 225, 255, 0.7);
}

textarea {
  resize: vertical;
}

.footer {
  padding: 32px 22px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

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

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

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

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(8, 17, 31, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px;
  }

  .nav-cta {
    text-align: center;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5.4rem);
  }

  .section {
    padding: 68px 18px;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .mock-window {
    min-height: 360px;
  }

  .mock-content {
    padding: 24px;
  }

  .mock-grid div {
    height: 86px;
  }

  .brand-text {
    display: none;
  }
}


.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 800;
}

.seo-section .keyword-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.keyword-box p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-hero {
  padding-top: 140px;
  padding-bottom: 54px;
}

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

.static-links {
  display: flex;
}

@media (max-width: 720px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .static-links {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .static-links a:not(.nav-cta) {
    display: none;
  }
}


/* Makes dropdown options readable when the service menu is opened */
select {
  color-scheme: dark;
  color: var(--text);
  background-color: #101b2f;
}

select option {
  color: #f7fbff;
  background-color: #101b2f;
}

select option:checked,
select option:hover {
  color: #f7fbff;
  background-color: #1b2a44;
}


/* Balanced hero headline */
.hero h1 {
  max-width: 820px;
  font-size: clamp(3.1rem, 6.2vw, 5.85rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}


/* Detailed project request form */
.detailed-form {
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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


/* Keep the Ready to Start button text on one line */
.cta-section .button {
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 132px;
}


/* Required field indicators */
.label-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.required-star {
  color: #ff4d5e;
  font-weight: 900;
}

.optional-text {
  color: var(--muted);
  font-weight: 600;
}


/* Keep Name and (optional) on the same line */
.optional-text {
  white-space: nowrap;
}


/* Logo icon in navbar */
.brand-mark {
  overflow: hidden;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

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


/* Hidden anti-spam field for Netlify Forms */
.hidden {
  display: none !important;
}
