:root {
  --bg: #0D110E;
  --surface: #141B15;
  --text: #E6F0E9;
  --muted: #7A9482;
  --primary: #A3B18A;
  --secondary: #588157;
  --accent: #3A5A40;
  --border: rgba(163,177,138,0.15);
  --startup-gap: 24px;
  --pitch-accent: #A3B18A;
  --investors-tracking: 0.02em;
  --vision-max: 1000px;
  --growth-ease: 0.35s ease;
}

.startup-pitch-investors-vision-growth {
  background-color: var(--bg);
}

.startup-pitch-investors-vision-growth::after {
  content: "startup pitch investors vision growth";
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  background-image:
    linear-gradient(160deg, rgba(88, 129, 87, 0.18) 0%, transparent 42%),
    radial-gradient(ellipse at 90% 0%, rgba(163, 177, 138, 0.12) 0%, transparent 50%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(58, 90, 64, 0.22) 0%, transparent 38%),
    radial-gradient(circle at 88% 70%, rgba(163, 177, 138, 0.08) 0%, transparent 42%);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.startup {
  letter-spacing: var(--investors-tracking);
}

.pitch {
  border-left: 3px solid var(--pitch-accent);
}

.investors {
  font-variant-numeric: tabular-nums;
}

.vision {
  text-wrap: balance;
  max-width: var(--vision-max);
}

.growth {
  transition: transform var(--growth-ease), opacity var(--growth-ease);
}

.disclosure-banner {
  width: 100%;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: var(--text);
  background: linear-gradient(
    to right,
    rgba(163, 177, 138, 0.15),
    rgba(88, 129, 87, 0.15)
  );
  border: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  min-height: 68px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  display: block;
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.burger-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 17, 14, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 48px 24px;
}

.mobile-overlay.is-open {
  display: flex;
}

.mobile-overlay a {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.footer-badges img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-nz-disclosure {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 720px;
}

.footer-nz-disclosure p {
  margin-bottom: 10px;
}

.footer-requisites {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(13, 17, 14, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.is-hidden {
  display: none;
}

.age-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.age-modal h2 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.age-modal p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

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

.btn {
  display: inline-block;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--secondary);
  color: var(--text);
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 220px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 40px 24px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--muted);
  max-width: 640px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 24px 64px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
  color: var(--primary);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 15px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
}

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

.email-error {
  display: none;
  color: #c47a7a;
  font-size: 13px;
  margin-top: 6px;
}

.email-error.is-visible {
  display: block;
}

.form-success {
  display: none;
  margin-top: 24px;
  padding: 20px;
  background: rgba(88, 129, 87, 0.2);
  border: 1px solid var(--border);
  color: var(--text);
}

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

.decor-img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 900px) {
  .site-header {
    clip-path: none;
    min-height: 56px;
  }

  .nav-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .nav-inner {
    padding: 12px 16px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-badges img {
    height: 40px;
  }

  .decor-img {
    max-width: 100%;
    max-height: 220px;
  }

  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }
}
.hero {
  background: #f5f7f4;
  padding: 48px 24px;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.hero h1 {
  color: #0a0a0a;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  text-align: left;
  border-bottom: 4px solid #0a0a0a;
  padding-bottom: 16px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero .hero-sub {
  color: #5a6b5e;
  font-size: 1.05rem;
  text-align: right;
  max-width: 640px;
  margin-left: auto;
  line-height: 1.55;
}

.offers-section {
  padding: 64px 24px;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(13, 17, 14, 0.82) 0%, rgba(13, 17, 14, 0.92) 100%),
    url('/images/offers_bg/offers_bg.webp');
  background-size: cover;
  background-position: center;
}

.offers-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.offers-header {
  margin-bottom: 32px;
  max-width: 640px;
}

.offers-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.offers-header p {
  color: var(--muted);
  font-size: 15px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.offer-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
}

.offer-card-logo {
  width: 280px;
  height: 100px;
  flex-shrink: 0;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}

.offer-card-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-card-body {
  padding: 20px 24px 24px;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}

.offer-bonus-group {
  margin-bottom: 12px;
}

.offer-card-bonus {
  font-size: 15px;
  color: #333333;
  font-weight: 600;
  word-break: break-word;
  line-height: 1.4;
}

.offer-terms-notice {
  display: block;
  font-size: 11px;
  color: #888888;
  margin-top: 4px;
}

.offer-card-desc {
  font-size: 12px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 16px;
}

.offer-card-cta {
  display: inline-block;
  background: #006633;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
  text-align: center;
  transition: background 0.3s ease;
}

.offer-card-cta:hover {
  background: #004d26;
  color: #ffffff;
}

.info-section {
  padding: 64px 24px;
  position: relative;
}

.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), transparent);
  opacity: 0.35;
}

.info-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  margin-bottom: 16px;
}

.info-section p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15px;
}

.info-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 22px;
  background: var(--secondary);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.info-cta:hover {
  background: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
}

.info-1 .layout-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.info-2 .layout-steps {
  display: grid;
  gap: 16px;
}

.info-2 .step-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.info-2 .step-num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(163, 177, 138, 0.15);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
}

.info-3 .layout-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

.info-3 .band-text {
  padding: 36px 28px;
  background: var(--surface);
}

.info-3 .band-visual {
  min-height: 240px;
  background-image: url('/images/decorative/decor_1.jpg');
  background-size: cover;
  background-position: center;
}

.info-4 .layout-quote {
  max-width: 760px;
}

.info-4 .pull-quote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--primary);
  background: rgba(163, 177, 138, 0.08);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.info-5 .layout-rail {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 32px;
}

.info-5 .rail-aside {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 20px;
}

.info-5 .rail-aside h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.info-5 .rail-aside ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-5 .rail-aside li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 12px;
  border-left: 2px solid var(--accent);
}

.info-6 .metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 8px;
}

.info-6 .metric {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px 16px;
  text-align: center;
}

.info-6 .metric strong {
  display: block;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.info-6 .metric span {
  font-size: 13px;
  color: var(--muted);
}

.info-7 .checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.info-7 .checklist li {
  padding: 14px 16px;
  background: rgba(88, 129, 87, 0.12);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 15px;
}

.info-8 .support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.info-8 .support-item {
  padding: 20px;
  background: var(--surface);
  border-top: 3px solid var(--secondary);
}

.info-8 .support-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.info-8 .support-item p {
  font-size: 14px;
  margin-bottom: 0;
}

.info-9 {
  background:
    linear-gradient(135deg, rgba(58, 90, 64, 0.25) 0%, transparent 55%),
    var(--bg);
}

.info-9 .layout-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.info-9 .decor-wrap {
  margin: 24px auto 0;
  max-width: 420px;
}

.info-10 .timeline {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-left: 2px solid var(--border);
  padding-left: 24px;
}

.info-10 .timeline-item {
  position: relative;
  padding: 0 0 28px;
}

.info-10 .timeline-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
}

.info-10 .timeline-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

@keyframes pitch-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-section .growth {
  animation: pitch-rise 0.6s ease both;
}

.topic-hero-strip {
  padding: 48px 24px;
  background:
    linear-gradient(120deg, rgba(88, 129, 87, 0.35), rgba(13, 17, 14, 0.9)),
    var(--surface);
  border-bottom: 1px solid var(--border);
}

.topic-hero-strip .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.topic-hero-strip h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.topic-hero-strip p {
  color: var(--muted);
  max-width: 620px;
}

.topic-body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.topic-body h2 {
  margin: 32px 0 14px;
  color: var(--primary);
  font-size: 1.35rem;
}

.topic-body h3 {
  margin: 24px 0 10px;
  font-size: 1.1rem;
}

.topic-body p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15px;
}

.topic-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
  color: var(--muted);
}

.topic-body li {
  margin-bottom: 8px;
}

.topic-split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 36px;
  align-items: start;
  margin: 28px 0;
}

.topic-stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.topic-stat-band .cell {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 18px;
  text-align: center;
}

.topic-stat-band strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
}

.topic-stat-band span {
  font-size: 12px;
  color: var(--muted);
}

.topic-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
}

.topic-side-rail {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  position: sticky;
  top: 88px;
}

.topic-side-rail h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.topic-side-rail ul {
  list-style: none;
  padding: 0;
}

.topic-side-rail li {
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.topic-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.topic-mosaic .tile {
  min-height: 140px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.topic-pull {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(163, 177, 138, 0.08);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.error-page {
  text-align: center;
  padding: 80px 24px;
  max-width: 560px;
  margin: 0 auto;
}

.error-page h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .hero h1 {
    text-align: center;
    border-bottom: none;
    border-top: 4px solid #0a0a0a;
    padding-top: 16px;
    padding-bottom: 0;
  }

  .hero .hero-sub {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }

  .info-1 .layout-split,
  .info-3 .layout-band,
  .info-5 .layout-rail,
  .topic-split,
  .topic-sidebar-layout {
    grid-template-columns: 1fr;
  }

  .info-6 .metric-row,
  .info-8 .support-grid,
  .topic-stat-band,
  .topic-mosaic {
    grid-template-columns: 1fr;
  }

  .info-3 .band-visual {
    min-height: 180px;
  }

  .info-5 .rail-aside,
  .topic-side-rail {
    position: static;
  }

  .offer-card-logo {
    width: 240px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-card-logo img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .decor-img {
    max-width: 100%;
    max-height: 220px;
  }

  .topic-mosaic {
    max-width: 100%;
    overflow: hidden;
  }

  .topic-mosaic .tile {
    max-width: 100%;
    min-height: 120px;
  }

  .info-3 .layout-band {
    max-width: 100%;
    overflow: hidden;
  }
}
