:root {
  --primary: #86b71b;
  --primary-light: #a9cf4a;
  --accent: #8b6a2b;
  --bg: #f5f6f2;
  --text: #1f2933;
  --muted: #6b7280;

  /* Typography: system-native for zero latency */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, Menlo, Monaco, "Courier New", monospace;

  /* Spacing scale (8px grid) */
  --s-xs: 4px;
  --s-sm: 8px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 48px;
  --s-xxl: 80px;

  /* Motion */
  --ease-snappy: cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans-fast: 200ms var(--ease-snappy);

  /* Radii */
  --radius-pill: 999px;
  --radius-card: 24px;

  /* Surfaces */
  --surface-primary: #ffffff;
  --surface-secondary: #f9fafb;
  --surface-elevated: #020617;
  --border-soft: rgba(148, 163, 184, 0.25);
  --border-strong: rgba(148, 163, 184, 0.5);

  /* Shadows */
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --shadow-elevated: 0 18px 40px rgba(15, 23, 42, 0.55);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: radial-gradient(circle at top left, #f3f6ec 0, #f9faf7 55%, #f4f1ea 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 64px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

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

.brand-logo {
  width: 140px;
  height: auto;
}

.brand-text {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 0;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast), background-color var(--trans-fast),
    color var(--trans-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.24);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.32);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.03);
  color: var(--primary);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.06);
}

.social-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
  position: relative;
}

.hero > .reveal {
  max-width: 640px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px -80px auto auto;
  background: radial-gradient(circle at top right, rgba(134, 183, 27, 0.22), transparent 60%);
  opacity: 0.7;
  z-index: -1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(34px, 4.6vw, 48px);
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: #0f172a;
}

.hero-subtitle {
  font-size: clamp(20px, 2.6vw, 24px);
  margin: 0 0 16px;
  color: #111827;
}

.hero-support {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
  max-width: 40rem;
}

.hero-highlight {
  font-weight: 600;
  color: var(--primary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.06);
  line-height: 1.3;
  font-size: 12px;
}

.hero-card {
  background: rgba(248, 250, 252, 0.9);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 22px 22px 20px;
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(16px);
}

.hero-card-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #0f172a;
}

.hero-card-text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.08);
  color: #166534;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-visual {
  position: relative;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-card);
  padding: 20px 20px 18px;
  background: radial-gradient(circle at 0 0, #c8e38a 0, #86b71b 32%, #1f2937 85%);
  color: #e5e7eb;
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}

.hero-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.hero-visual-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.hero-visual-subtitle {
  font-size: 12px;
  color: #f9fafb;
}

.hero-visual-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 12px;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  font-size: 11px;
  line-height: 1.2;
}

.stat-chip span {
  color: #bbf7d0;
  font-weight: 500;
}

.hero-visual-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
}

.list-heading {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #eef2ff;
  margin-bottom: 6px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.contact-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  line-height: 1.3;
}

.contact-list-label {
  font-weight: 500;
}

.hero-visual-footer {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #f9fafb;
}

.section {
  margin-bottom: 96px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.section-title {
  font-size: 24px;
  margin: 0 0 4px;
}

.section-intro {
  max-width: 52ch;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.feature-card {
  background: transparent;
  border-radius: var(--radius-card);
  padding: var(--s-lg);
  border: 1px solid var(--border-soft);
  box-shadow: none;
}

.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(134, 183, 27, 0.3);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 10px;
  transition: transform 0.18s ease;
}

.feature-title {
  font-size: 16px;
  margin: 0 0 6px;
}

.feature-text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: flex-start;
}

.about-block {
  background: var(--surface-primary);
  border-radius: var(--radius-card);
  padding: 20px 20px 18px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.about-text p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
}

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

.contact-card {
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  border-radius: var(--radius-card);
  padding: 20px 20px 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.7);
}

.feature-card,
.hero-card,
.contact-card {
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease,
    background-color 0.18s ease;
}

.feature-card:hover,
.hero-card:hover,
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border-color: rgba(148, 163, 184, 0.6);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(169, 207, 74, 0.25), transparent 58%),
    radial-gradient(circle at 100% 0, rgba(139, 106, 43, 0.22), transparent 60%);
  opacity: 0.9;
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-heading {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
}

.contact-meta {
  font-size: 13px;
  color: #cbd5f5;
  margin-bottom: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 14px;
}

.contact-details p {
  margin: 0 0 6px;
  font-size: 13px;
}

.contact-details strong {
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.field-label {
  font-size: 12px;
  margin-bottom: 2px;
}

.field-label span {
  color: #f97316;
}

.field-input,
.field-textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  font: inherit;
  padding: 8px 12px;
}

.field-textarea {
  border-radius: 12px;
  min-height: 80px;
  resize: vertical;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: #64748b;
}

.field-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: #cbd5e1;
}

.field-checkbox-row input[type="checkbox"] {
  margin-top: 2px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  padding: 12px 14px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.6);
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border-color: rgba(148, 163, 184, 0.8);
}

.faq-question {
  font-weight: 600;
  margin: 0 0 4px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.faq-item.open .faq-answer-wrapper {
  max-height: 400px;
  opacity: 1;
}

footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding-top: 18px;
  font-size: 12px;
  color: var(--muted);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

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

.footer-links a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.btn:focus-visible,
.faq-question:focus-visible,
.field-input:focus-visible,
.field-textarea:focus-visible {
  outline: 2px solid rgba(134, 183, 27, 0.9);
  outline-offset: 2px;
}

.footer-links a:focus-visible,
.contact-details a:focus-visible {
  outline: 2px solid rgba(134, 183, 27, 0.9);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(10px);
  transition: opacity var(--trans-fast), transform var(--trans-fast), filter var(--trans-fast);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.feature-icon {
  transition: transform 0.18s ease;
}

.feature-card:hover .feature-icon {
  transform: translateY(-2px) scale(1.05) rotate(-2deg);
}

@media (max-width: 880px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-visual {
    order: -1;
  }

  .hero-visual-card {
    border-radius: 20px;
  }

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

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

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

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

