:root {
  --bg: #ffffff;
  --bg-soft: #fffaf6;
  --bg-soft-2: #fff3ea;
  --bg-top: #fff6ef;
  --text: #121212;
  --text-muted: #4a4a4a;
  --primary: #f26d21;
  --primary-soft: #ff8a43;
  --border: rgba(242, 109, 33, 0.28);
  --header-bg: rgba(255, 255, 255, 0.82);
  --footer-bg: #fff7f1;
  --dash-card-bg: rgba(255, 255, 255, 0.72);
}

:root[data-theme="dark"] {
  --bg: #0a0a0a;
  --bg-soft: #131313;
  --bg-soft-2: #1a1a1a;
  --bg-top: #1f1a16;
  --text: #f3f3f3;
  --text-muted: #c9c9c9;
  --border: rgba(242, 109, 33, 0.35);
  --header-bg: rgba(14, 14, 14, 0.85);
  --footer-bg: #121212;
  --dash-card-bg: rgba(255, 255, 255, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Futura", "Futura PT", "Avenir Next", "Avenir", "Century Gothic", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, var(--bg-top) 0%, var(--bg) 65%);
  line-height: 1.65;
  position: relative;
  overflow-x: hidden;
}

.background-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.glow-1 {
  width: 380px;
  height: 380px;
  top: -130px;
  left: -60px;
  background: rgba(242, 109, 33, 0.18);
}

.glow-2 {
  width: 320px;
  height: 320px;
  right: -80px;
  top: 220px;
  background: rgba(255, 138, 67, 0.12);
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.brand-text {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.theme-toggle {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(242, 109, 33, 0.16);
  width: 42px;
  height: 24px;
  padding: 0;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.theme-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.theme-toggle:hover {
  background: rgba(242, 109, 33, 0.22);
}

:root[data-theme="dark"] .theme-toggle {
  background: rgba(242, 109, 33, 0.42);
}

:root[data-theme="dark"] .theme-toggle::after {
  transform: translateX(18px);
  background: #111111;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: #121212;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  box-shadow: 0 10px 30px rgba(242, 109, 33, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(242, 109, 33, 0.45);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  box-shadow: none;
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(242, 109, 33, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 2rem;
  align-items: start;
  padding: 6rem 0 4.2rem;
}

.hero-main {
  text-align: left;
  max-width: 760px;
}

.eyebrow {
  color: var(--primary-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.08;
}

.hero h1 span {
  color: var(--primary-soft);
}

.hero-copy {
  max-width: 620px;
  margin: 1.25rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-contact {
  width: 100%;
}

.hero-contact h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.hero-contact-note {
  margin: 0;
  color: var(--text-muted);
}

.hero-contact-note a {
  color: var(--text);
  text-decoration: none;
}

.hero-contact-note a:hover {
  text-decoration: underline;
}

.features,
.contact {
  padding: 4rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  background: linear-gradient(
    180deg,
    rgba(242, 109, 33, 0.09),
    rgba(242, 109, 33, 0.03)
  );
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem;
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 67, 0.7);
  box-shadow: 0 18px 36px rgba(242, 109, 33, 0.18);
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.platform,
.benefits,
.cta {
  padding: 4.25rem 0;
}

.platform {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.platform-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
}

.platform-copy p {
  margin: 0 0 1.4rem;
  color: var(--text-muted);
  max-width: 620px;
}

.dashboard-placeholder {
  background: linear-gradient(
    145deg,
    rgba(242, 109, 33, 0.09),
    rgba(242, 109, 33, 0.02)
  );
  border: 1px solid var(--border);
  border-radius: 20px;
  min-height: 320px;
  width: 100%;
  overflow: hidden;
}

.platform-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-item {
  background: rgba(242, 109, 33, 0.06);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  font-weight: 600;
  text-align: center;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  background: rgba(242, 109, 33, 0.1);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: 1.5rem;
  align-items: start;
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.cta-copy {
  max-width: 780px;
}

.cta-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
}

.cta-copy p {
  margin: 0 0 1.4rem;
  color: var(--text-muted);
  max-width: 620px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta-contact {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
}

.contact-map {
  width: 100%;
  min-height: 220px;
  border: 1px solid var(--border);
  border-radius: 12px;
  filter: grayscale(100%);
}

.contact-address {
  margin: 0.85rem 0 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(242, 109, 33, 0.04);
  padding: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-address strong {
  color: var(--text);
}

.contact-address a {
  color: var(--text);
  text-decoration: none;
}

.contact-address a:hover {
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--footer-bg);
  padding: 1.2rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 860px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    height: auto;
    padding: 1rem 0;
    flex-direction: column;
    gap: 0.8rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 3.8rem;
  }

  .hero-contact {
    width: min(640px, 100%);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-main {
    text-align: center;
    max-width: none;
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .platform {
    grid-template-columns: 1fr;
  }

  .cta {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}
