:root {
  --charcoal: #1F2A33;
  --green: #2F8A2F;
  --orange: #F4A11A;
  --light: #F7F8F6;
  --gray: #6B7280;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --muted-green: rgba(47, 138, 47, 0.08);
  --muted-orange: rgba(244, 161, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  background: white;
}

.site-logo {
  width: min(340px, 80%);
  height: auto;
  display: block;
}

.hero {
  padding: 100px 0 90px;
  text-align: center;
}

.profile-hero {
  padding: 76px 0 56px;
  border-bottom: 1px solid var(--border);
  background: white;
}

.eyebrow {
  color: var(--green);
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15;
}

.profile-label {
  display: inline-block;
  background: var(--muted-green);
  color: var(--green);
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin: 0 auto 26px;
  max-width: 920px;
}

.profile-hero h1 {
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(42px, 7vw, 72px);
  margin-bottom: 20px;
}

.subheadline,
.subtitle {
  font-size: clamp(18px, 2vw, 22px);
  max-width: 760px;
  color: var(--gray);
}

.subheadline {
  margin: 0 auto 26px;
}

.subtitle {
  max-width: 820px;
  margin: 0 0 28px;
}

.trust-note,
.status-box {
  max-width: 820px;
  padding: 18px 22px;
  border: 1px solid rgba(47, 138, 47, 0.22);
  border-radius: 20px;
  background: rgba(47, 138, 47, 0.07);
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 700;
}

.trust-note {
  margin: 0 auto 36px;
}

.status-box {
  max-width: 880px;
  font-size: 17px;
}

.trust-note span {
  color: var(--green);
}

.status-box p {
  margin: 8px 0 0;
  color: var(--gray);
  font-weight: 400;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--green);
  color: white;
}

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

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

.btn-secondary:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--light);
}

.section h2 {
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
}

body.home .section h2,
body.home .section-intro {
  text-align: center;
}

body.home .section h2 {
  margin-bottom: 18px;
}

.section-intro {
  max-width: 760px;
  margin: 0 0 42px;
  color: var(--gray);
  font-size: 18px;
}

body.home .section-intro {
  margin: 0 auto 48px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 980px;
}

body.home .cards {
  margin: 0 auto;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(47, 138, 47, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: var(--gray);
}

body.profile .card p {
  margin-bottom: 18px;
}

.coming-soon {
  max-width: 780px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 38px;
}

.coming-soon strong {
  display: block;
  margin-bottom: 18px;
  font-size: 20px;
}

.coming-soon ul {
  margin: 0;
  padding-left: 22px;
  color: var(--gray);
}

.coming-soon li {
  margin-bottom: 10px;
}

.vendor-note {
  max-width: 860px;
  margin: 34px auto 0;
  padding: 28px 32px;
  border-radius: 24px;
  border: 1px solid rgba(244, 161, 26, 0.28);
  background: rgba(244, 161, 26, 0.08);
  color: var(--charcoal);
}

.vendor-note h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.vendor-note p {
  margin: 0;
  color: var(--gray);
}

.vendor-note a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.vendor-note a:hover {
  text-decoration: underline;
}

.profile-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  max-width: 980px;
}

.meta-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.meta-item span {
  display: block;
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 4px;
}

.meta-item strong {
  font-size: 15px;
}

.signal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.signal-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--gray);
}

.signal-list li:last-child {
  border-bottom: 0;
}

.signal-list strong {
  color: var(--charcoal);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--light);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 14px;
}

.note {
  max-width: 980px;
  background: var(--muted-orange);
  border: 1px solid rgba(244, 161, 26, 0.32);
  border-radius: 24px;
  padding: 28px;
  color: var(--charcoal);
}

.note p {
  margin: 8px 0 0;
  color: var(--gray);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 980px;
}

.media-card {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: white;
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-align: center;
  padding: 16px;
  font-size: 14px;
}

.subtle-link {
  color: #555C66;
  text-decoration: none;
  border-bottom: 1px solid rgba(85, 92, 102, 0.22);
  transition: 0.2s ease;
}

.subtle-link:hover {
  color: #1F2A33;
  border-bottom-color: rgba(31, 42, 51, 0.38);
}

footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  font-size: 15px;
  color: var(--gray);
}

.footer-brand strong {
  display: block;
  margin-bottom: 14px;
  color: var(--charcoal);
  font-size: 18px;
}

.footer-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-links a,
.footer-contact a {
  display: block;
  color: var(--gray);
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--green);
}

.footer-address {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.footer-disclaimer {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--gray);
  font-size: 12px;
  line-height: 1.65;
}

.footer-disclaimer strong {
  color: var(--charcoal);
  font-size: 12px;
}

.footer-disclaimer p {
  margin: 8px 0 0;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--gray);
  text-align: center;
}

@media (max-width: 860px) {
  .hero {
    padding: 72px 0 64px;
    text-align: left;
  }

  .profile-hero {
    padding: 56px 0 44px;
  }

  .subheadline,
  .trust-note {
    margin-left: 0;
  }

  .buttons {
    justify-content: flex-start;
  }

  .cards,
  .media-grid,
  .profile-meta {
    grid-template-columns: 1fr;
  }

  .section h2,
  .section-intro {
    text-align: left;
  }

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