:root {
  --fw-blue: #1f4bb8;
  --fw-blue-deep: #143d9a;
  --fw-green: #2fb34c;
  --fw-text: #1d2433;
  --fw-muted: #5e6a82;
  --fw-line: #dfe5f2;
  --fw-white: #ffffff;
  --fw-shadow: 0 20px 50px rgba(23, 55, 122, 0.10);
  --fw-max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--fw-text);
  background:
    radial-gradient(circle at top left, rgba(47, 179, 76, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(31, 75, 184, 0.08), transparent 34%),
    linear-gradient(180deg, #f9fbff 0%, #f3f6fc 100%);
}

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

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

.container {
  width: min(calc(100% - 32px), var(--fw-max));
  margin: 0 auto;
}

.container.narrow,
.legal-container {
  width: min(calc(100% - 32px), 960px);
  margin: 0 auto;
}

.page-shell { min-height: 100vh; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(223, 229, 242, 0.8);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark { font-size: 20px; }

.brand-text {
  color: var(--fw-blue-deep);
  font-size: 1.6rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: var(--fw-muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--fw-blue);
}

.site-nav-static {
  display: flex !important;
}

.nav-utility-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 6px;
}

.nav-utility-link {
  font-size: 0.95rem;
}

.capture-mini-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--fw-blue);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(31, 75, 184, 0.16);
}

.capture-mini-btn:hover {
  background: var(--fw-blue-deep);
}

.capture-mini-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.nav-facebook-link {
  font-size: 0.94rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--fw-line);
  background: var(--fw-white);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 18px;
  cursor: pointer;
}

.section { padding: 86px 0; }

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(238,243,252,0.75));
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head h1,
.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  color: var(--fw-blue-deep);
}

.section-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--fw-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--fw-green);
  font-weight: 700;
  font-size: 1rem;
}

.hero-wrap {
  position: relative;
  padding: 56px 0 52px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(47, 179, 76, 0.12), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(31, 75, 184, 0.12), transparent 34%);
  pointer-events: none;
}

.hero-modal {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(223, 229, 242, 0.9);
  border-radius: 34px;
  box-shadow: var(--fw-shadow);
  padding: 54px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  color: var(--fw-blue-deep);
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.hero-text {
  margin: 0;
  color: var(--fw-muted);
  font-size: 1.22rem;
  line-height: 1.65;
  max-width: 640px;
}

.hero-actions,
.capture-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #c8d6f5;
  background: #fff;
  color: var(--fw-blue);
  font-weight: 700;
  font-size: 0.88rem;
}

.social-btn-facebook {
  background: #f5f8ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--fw-blue);
  color: #fff;
  box-shadow: 0 10px 20px rgba(31, 75, 184, 0.18);
}

.btn-primary:hover { background: var(--fw-blue-deep); }

.btn-secondary {
  background: #fff;
  color: var(--fw-blue);
  border: 1.5px solid #b6c8f2;
}

.btn-secondary:hover { background: #f5f9ff; }

.image-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(18, 69, 167, 0.18);
  border: 1px solid rgba(223, 229, 242, 0.9);
}

.section-image {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.process-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--fw-line);
  box-shadow: 0 14px 36px rgba(20, 61, 154, 0.08);
  background: #fff;
}

.process-image {
  width: 100%;
  height: auto;
}

.feature-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.benefit-card,
.mission-card,
.intel-card,
.legal-card,
.contact-card {
  background: var(--fw-white);
  border: 1px solid var(--fw-line);
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(20, 61, 154, 0.06);
}

.feature-card,
.benefit-card,
.mission-card,
.contact-card {
  padding: 28px;
}

.feature-card h3,
.benefit-card h3,
.mission-card h3 {
  margin: 0 0 12px;
  color: var(--fw-blue-deep);
  font-size: 1.28rem;
}

.feature-card p,
.benefit-card p,
.mission-card p {
  margin: 0;
  color: var(--fw-muted);
  line-height: 1.7;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 1.45rem;
  background: linear-gradient(180deg, #eff5ff, #e8fff0);
}

.process-panel {
  background: #fff;
  border: 1px solid var(--fw-line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--fw-shadow);
}

.process-branding {
  text-align: center;
  margin-bottom: 18px;
  font-size: 1.7rem;
  font-weight: 800;
}

.brand-green { color: var(--fw-green); }
.brand-blue { color: var(--fw-blue-deep); }

.steps-list {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.step-copy {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--fw-line);
  border-radius: 18px;
  padding: 20px 22px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #edf4ff, #f4fff7);
  color: var(--fw-blue-deep);
  font-size: 1.45rem;
  font-weight: 800;
}

.step-copy h3 {
  margin: 2px 0 8px;
  color: var(--fw-blue-deep);
}

.step-copy p {
  margin: 0;
  color: var(--fw-muted);
  line-height: 1.7;
}

.step-cta {
  text-align: center;
  margin-top: 8px;
}

.capture-hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #eff5ff, #f7fcf8);
  border: 1px solid var(--fw-line);
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--fw-shadow);
}

.capture-copy h2 {
  margin: 0 0 12px;
  color: var(--fw-blue-deep);
  font-size: clamp(2rem, 4vw, 3rem);
}

.capture-copy p {
  margin: 0;
  color: var(--fw-muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.capture-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--fw-line);
  box-shadow: 0 12px 30px rgba(20, 61, 154, 0.08);
  padding: 22px;
}

.capture-card-head {
  color: var(--fw-blue-deep);
  font-weight: 800;
  margin-bottom: 16px;
}

.capture-board {
  border-radius: 18px;
  background: linear-gradient(180deg, #1848a8, #12387f);
  color: #fff;
  padding: 18px;
}

.capture-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.capture-row:last-child { border-bottom: none; }

.capture-button {
  width: 100%;
  margin-top: 18px;
  min-height: 54px;
  border: none;
  border-radius: 16px;
  background: var(--fw-green);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
}

.capture-button:hover { background: #24953d; }

.intel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.intel-card {
  padding: 16px 12px 10px;
  overflow: hidden;
}

.intel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  padding: 0 4px;
}

.intel-head h3 {
  margin: 0;
  color: var(--fw-blue-deep);
  font-size: 1.28rem;
}

.intel-head a {
  color: var(--fw-blue);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.95rem;
}

.intel-meta {
  margin-bottom: 8px;
  color: var(--fw-muted);
  font-size: 0.88rem;
  padding: 0 4px;
}

.intel-table-wrap {
  overflow-x: auto;
}

.intel-table-wrap-no-scroll {
  overflow-x: hidden;
}

.intel-table {
  width: 100%;
  border-collapse: collapse;
}

.intel-table-fixed {
  table-layout: fixed;
}

.intel-table th,
.intel-table td {
  padding: 9px 8px;
  border-bottom: 1px solid #e7ebf4;
  text-align: left;
  font-size: 0.9rem;
  vertical-align: middle;
}

.intel-table th {
  color: var(--fw-blue-deep);
  background: #f7faff;
  font-size: 0.84rem;
  white-space: nowrap;
}

.intel-table-compact th,
.intel-table-compact td {
  padding: 9px 8px;
  font-size: 0.89rem;
}

.intel-table-compact th:nth-child(1),
.intel-table-compact td:nth-child(1) {
  width: 55%;
}

.intel-table-compact th:nth-child(2),
.intel-table-compact td:nth-child(2) {
  width: 16%;
}

.intel-table-compact th:nth-child(3),
.intel-table-compact td:nth-child(3) {
  width: 11%;
}

.intel-table-compact th:nth-child(4),
.intel-table-compact td:nth-child(4) {
  width: 18%;
}

.intel-col-brand {
  min-width: 0;
}

.intel-col-price {
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.88rem;
}

.intel-col-trend {
  white-space: nowrap;
  text-align: center;
  font-size: 0.86rem;
}

.intel-col-updated {
  white-space: normal;
  font-size: 0.77rem;
  line-height: 1.15;
  color: var(--fw-muted);
}

.intel-brand-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.intel-brand-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 22px;
  margin-top: 2px;
}

.intel-brand-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  line-height: 1.1;
}

.intel-brand-name {
  display: block;
  font-weight: 700;
  color: #15264d;
  font-size: 0.95rem;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.intel-station-name {
  display: block;
  margin-top: 2px;
  color: var(--fw-muted);
  font-size: 0.72rem;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.intel-station-name-muted {
  opacity: 0.85;
}

.intel-date-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 40px;
}

.intel-date-line {
  display: block;
  font-size: 0.76rem;
  line-height: 1.1;
  color: var(--fw-muted);
  white-space: nowrap;
}

.intel-time-line {
  display: block;
  margin-top: 2px;
  font-size: 0.74rem;
  line-height: 1.1;
  color: var(--fw-muted);
  white-space: nowrap;
}

.trend-up {
  color: #c24a2a;
  font-weight: 700;
}

.trend-down {
  color: #20934d;
  font-weight: 700;
}

.trend-flat {
  color: #7b8394;
  font-weight: 700;
}

.mission-banner {
  border-radius: 28px;
  padding: 42px 38px;
  margin-bottom: 34px;
  background:
    radial-gradient(circle at 20% 55%, rgba(87, 230, 131, 0.85), transparent 16%),
    radial-gradient(circle at 35% 28%, rgba(121, 255, 180, 0.42), transparent 11%),
    radial-gradient(circle at 60% 40%, rgba(88, 154, 255, 0.70), transparent 12%),
    radial-gradient(circle at 80% 58%, rgba(191, 255, 151, 0.55), transparent 13%),
    linear-gradient(135deg, #0d2167 0%, #12307a 46%, #145d7b 100%);
  box-shadow: var(--fw-shadow);
  color: #fff;
}

.mission-banner-copy {
  max-width: 640px;
}

.mission-banner-eyebrow {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.86);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mission-banner h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.mission-banner p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  font-size: 1.05rem;
}

.mission-section-head {
  margin-bottom: 26px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mission-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.join-box {
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
  border: 1px solid var(--fw-line);
  border-radius: 30px;
  padding: 42px 28px;
  box-shadow: var(--fw-shadow);
}

.join-box h2 {
  margin: 0 0 12px;
  color: var(--fw-blue-deep);
  font-size: clamp(2rem, 4vw, 3rem);
}

.join-box p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--fw-muted);
  line-height: 1.75;
  font-size: 1.08rem;
}

.site-footer {
  border-top: 1px solid var(--fw-line);
  background: rgba(255, 255, 255, 0.82);
  padding: 28px 0 30px;
}

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

.footer-brand-block {
  display: grid;
  gap: 6px;
}

.footer-brand {
  color: var(--fw-blue-deep);
  font-size: 1.3rem;
  font-weight: 800;
}

.footer-tagline,
.footer-copy {
  color: var(--fw-muted);
  margin: 0;
}

.footer-compact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.footer-compact-links a {
  color: var(--fw-muted);
  font-weight: 600;
  font-size: 0.94rem;
}

.footer-compact-links a:hover {
  color: var(--fw-blue);
}

.legal-page {
  min-height: calc(100vh - 80px);
}

.legal-head {
  margin-bottom: 20px;
}

.legal-card {
  padding: 36px 30px;
  line-height: 1.75;
}

.legal-card h2 {
  margin: 28px 0 10px;
  color: var(--fw-blue-deep);
  font-size: 1.3rem;
}

.legal-card p,
.legal-card li {
  color: #35435f;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #203563;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cfd8ec;
  border-radius: 14px;
  min-height: 50px;
  padding: 12px 14px;
  font: inherit;
  color: #1d2433;
  background: #fff;
}

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

.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--fw-muted);
}

.form-check input {
  margin-top: 4px;
}

.captcha-placeholder-block {
  display: grid;
  gap: 10px;
}

.captcha-placeholder-label {
  font-weight: 700;
  color: #203563;
}

.captcha-placeholder-box {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #b9caeb;
  border-radius: 16px;
  background: #f8fbff;
  color: var(--fw-muted);
  text-align: center;
  padding: 14px;
}

.form-status {
  min-height: 24px;
  font-weight: 700;
}

.form-status.is-success {
  color: #1f7a3d;
}

.form-status.is-error {
  color: #b53a2b;
}

@media (max-width: 1080px) {
  .hero-modal,
  .capture-hero,
  .intel-grid,
  .mission-grid,
  .feature-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 820px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--fw-line);
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(20, 61, 154, 0.12);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

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

  .site-nav a {
    padding: 12px;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: #f5f8ff;
  }

  .site-nav-static {
    display: none !important;
  }

  .nav-utility-group {
    display: grid;
    gap: 8px;
    margin-left: 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-modal {
    padding: 26px;
    border-radius: 26px;
  }

  .section-image {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 66px 0;
  }

  .header-inner {
    min-height: 72px;
  }

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

  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .hero-text,
  .section-head p,
  .join-box p,
  .capture-copy p,
  .mission-banner p {
    font-size: 1rem;
  }

  .hero-actions,
  .capture-actions,
  .form-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-social-actions {
    flex-direction: column;
  }

  .social-btn {
    width: 100%;
  }

  .step-copy {
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .mission-banner {
    padding: 28px 22px;
  }
.hero-capture-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-capture-icon {
  font-size: 1.2rem;
}

.footer-compact-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
  opacity: 0.8;
}
}
