@font-face {
  font-family: "Sora";
  src: url("./fonts/Sora-400.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Sora";
  src: url("./fonts/Sora-600.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Sora";
  src: url("./fonts/Sora-700.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Sora";
  src: url("./fonts/Sora-800.ttf") format("truetype");
  font-weight: 800;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-400.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-500.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-600.ttf") format("truetype");
  font-weight: 600;
}

:root {
  --bg: #0d0910;
  --bg-elevated: #161018;
  --bg-panel: rgba(29, 19, 28, 0.9);
  --line: rgba(255, 126, 116, 0.18);
  --line-strong: rgba(255, 126, 116, 0.34);
  --text: #fff7f5;
  --text-soft: #cfb6b0;
  --text-muted: #9f8782;
  --red: #ff5a4f;
  --red-bright: #ff8f86;
  --red-deep: #b6322e;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 90, 79, 0.18), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(255, 143, 134, 0.14), transparent 24%),
    linear-gradient(180deg, #0b0810 0%, #120c14 45%, #0c0910 100%);
  color: var(--text);
}

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

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

code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.92em;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.18rem 0.38rem;
  border-radius: 8px;
}

pre {
  margin: 0;
  padding: 1.2rem;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #130e15;
  color: #ffd8d3;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(10, 7, 12, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14) 0 13%, transparent 14% 100%),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(255, 90, 79, 0.98) 35% 46%, transparent 47% 100%),
    linear-gradient(145deg, #2f1c21 0%, #171117 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 16px 34px rgba(255, 90, 79, 0.18);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  color: var(--text-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--red-bright);
}

.nav-cta {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
}

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

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.97;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 11ch;
}

.hero-text,
.section-heading + p,
.split-grid p,
.faq-card p,
.feature-card p,
.step-card p,
.info-card li,
.footer-copy,
.doc-lead,
.doc-card p,
.doc-section p,
.doc-list li {
  color: var(--text-soft);
  line-height: 1.72;
}

.hero-text {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  font-size: 1.06rem;
}

.hero-actions,
.cta-actions,
.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 1.3rem;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  font-weight: 600;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red) 55%, var(--red-deep) 100%);
  box-shadow: 0 20px 50px rgba(255, 90, 79, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.hero-points,
.info-card ul,
.doc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.info-card li,
.doc-list li {
  position: relative;
  padding-left: 1.25rem;
  margin: 0.72rem 0 0;
}

.hero-points li::before,
.info-card li::before,
.doc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 16px rgba(255, 90, 79, 0.55);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.visual-card,
.visual-badge,
.feature-card,
.step-card,
.info-card,
.faq-card,
.split-panel,
.doc-card,
.doc-section,
.cta-panel {
  background: linear-gradient(180deg, rgba(28, 19, 29, 0.96), rgba(19, 13, 20, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.visual-card-main {
  padding: 1.2rem;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  overflow: hidden;
}

.visual-card-main img {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.visual-badge {
  position: absolute;
  padding: 1rem 1.1rem;
  max-width: 250px;
  backdrop-filter: blur(10px);
}

.badge-one {
  left: -1rem;
  bottom: 6.6rem;
}

.badge-two {
  right: -0.6rem;
  bottom: 2rem;
}

.badge-title {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.badge-copy {
  display: block;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.section {
  padding: 4.5rem 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
}

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

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.feature-grid,
.production-grid,
.doc-grid,
.doc-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card,
.info-card,
.doc-card,
.doc-section,
.faq-card,
.step-card {
  padding: 1.5rem;
}

.feature-card h3,
.step-card h3,
.info-card h3,
.faq-card h3,
.doc-card h3,
.doc-section h2,
.doc-section h3 {
  margin: 0 0 0.9rem;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.step-index {
  display: inline-flex;
  min-width: 56px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(255, 143, 134, 0.2), rgba(255, 90, 79, 0.08));
  border: 1px solid rgba(255, 143, 134, 0.24);
  color: var(--red-bright);
  font-weight: 700;
}

.section-split .split-panel {
  overflow: hidden;
  padding: 1rem;
}

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

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  color: var(--text-soft);
}

.brand-footer {
  margin-bottom: 0.7rem;
}

.footer-copy {
  margin: 0;
  max-width: 40ch;
}

.doc-hero {
  padding: 4rem 0 2rem;
}

.doc-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.doc-lead {
  max-width: 62ch;
  margin: 1.2rem 0 0;
  font-size: 1.05rem;
}

.doc-grid {
  margin-top: 2rem;
}

.doc-card p {
  margin: 0;
}

.doc-section {
  margin-top: 1.25rem;
}

.doc-section + .doc-section {
  margin-top: 1.4rem;
}

.doc-section table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  color: var(--text-soft);
}

.doc-section th,
.doc-section td {
  text-align: left;
  padding: 0.9rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

.doc-section th {
  color: var(--text);
  font-weight: 600;
}

.doc-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.doc-pill {
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 90, 79, 0.08);
  border: 1px solid rgba(255, 126, 116, 0.18);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.doc-note {
  margin-top: 1rem;
  padding: 1rem 1rem 1rem 1.1rem;
  border-left: 3px solid var(--red);
  border-radius: 16px;
  background: rgba(255, 90, 79, 0.07);
  color: var(--text-soft);
}

.doc-meta {
  margin-top: 1rem;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .feature-grid,
  .production-grid,
  .faq-list,
  .doc-grid,
  .doc-meta,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-card-main,
  .visual-badge {
    position: static;
  }

  .visual-card-main {
    margin-bottom: 1rem;
  }

  .cta-panel,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(17, 11, 18, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .doc-hero {
    padding-top: 3.3rem;
    padding-bottom: 3rem;
  }

  .button {
    width: 100%;
  }

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