:root {
  --green: #00785f;
  --green-deep: #005845;
  --lime: #94ca3a;
  --lime-soft: #eaf7cf;
  --ink: #10231d;
  --muted: #63736d;
  --line: #dfe8e4;
  --surface: #ffffff;
  --surface-soft: #f5f9f7;
  --shadow: 0 22px 70px rgba(1, 79, 62, 0.13);
  --radius-lg: 30px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(148, 202, 58, .13), transparent 24rem),
    radial-gradient(circle at 100% 16%, rgba(0, 120, 95, .09), transparent 30rem),
    #fbfdfc;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(rgba(16,35,29,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,35,29,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

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

.page-shell {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand img { width: 116px; height: auto; }
.brand { display: inline-flex; text-decoration: none; }

.header-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  color: #2c4c42;
  box-shadow: 0 10px 30px rgba(0, 70, 55, .06);
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(148,202,58,.16);
}

.hero {
  min-height: 580px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: clamp(30px, 6vw, 88px);
  padding: 42px 0 72px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .19em;
  color: var(--green);
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(58px, 7.5vw, 108px);
  line-height: .89;
  letter-spacing: -.065em;
  font-weight: 820;
}

.hero h1 span {
  color: var(--green);
  position: relative;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: .02em;
  bottom: -.08em;
  width: 1.6em;
  height: .08em;
  border-radius: 999px;
  background: var(--lime);
}

.hero-text {
  max-width: 590px;
  margin: 34px 0 0;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 760;
  box-shadow: 0 14px 32px rgba(0,120,95,.22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  background: var(--green-deep);
  box-shadow: 0 18px 38px rgba(0,120,95,.27);
}

.text-link {
  color: var(--green);
  font-weight: 750;
  text-decoration: none;
}

.hero-visual {
  min-height: 475px;
  position: relative;
  display: grid;
  place-items: center;
}

.logo-stage {
  width: min(430px, 90%);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 42px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,120,95,.12);
  box-shadow: var(--shadow);
  transform: rotate(-2.4deg);
  overflow: hidden;
}

.logo-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(148,202,58,.14), transparent 34%),
    linear-gradient(315deg, rgba(0,120,95,.08), transparent 36%);
}

.logo-stage img {
  width: 74%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 14px 22px rgba(0,70,55,.08));
}

.logo-ring {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid rgba(0,120,95,.13);
  border-radius: 50%;
}

.logo-ring::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(148,202,58,.55);
  border-radius: inherit;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(.2px);
}

.orb-one {
  width: 132px;
  height: 132px;
  right: -6px;
  top: 10px;
  background: linear-gradient(135deg, var(--lime), #d7ef98);
  opacity: .72;
}

.orb-two {
  width: 82px;
  height: 82px;
  left: 0;
  bottom: 15px;
  background: linear-gradient(135deg, var(--green), #46a18e);
  opacity: .22;
}

.floating-tag {
  position: absolute;
  z-index: 4;
  padding: 11px 14px;
  border-radius: 13px;
  border: 1px solid rgba(0,120,95,.12);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 38px rgba(0,70,55,.12);
  font-size: 12px;
  font-weight: 820;
  color: var(--green-deep);
  backdrop-filter: blur(12px);
}
.tag-one { left: -18px; top: 24%; }
.tag-two { right: -20px; bottom: 20%; }

.apps-section {
  margin: 10px 0 92px;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 69, 55, .07);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -.04em;
}

.section-heading > p {
  max-width: 330px;
  margin: 0 0 6px;
  color: var(--muted);
  line-height: 1.6;
  text-align: right;
}

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

.app-card {
  min-height: 252px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fbfdfc);
  text-decoration: none;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.app-card::before {
  content: "";
  position: absolute;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  right: -52px;
  top: -55px;
  background: rgba(148,202,58,.11);
}

.app-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,120,95,.28);
  box-shadow: 0 20px 42px rgba(0,78,61,.10);
}

.app-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--lime-soft);
  color: var(--green);
  font-size: 22px;
  font-weight: 850;
}

.app-card h3 {
  margin: 24px 0 8px;
  font-size: 22px;
  letter-spacing: -.025em;
}

.app-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.app-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
}

.launch-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  transition: transform .2s ease;
}

.app-card:hover .launch-arrow { transform: translate(2px,-2px); }

.site-footer {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 76px; }
.footer-brand p { margin: 0; }
.copyright { margin: 0; text-align: right; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 22px; }
  .hero-copy { text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 410px; }
  .app-grid { grid-template-columns: 1fr 1fr; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .section-heading > p { text-align: left; }
}

@media (max-width: 620px) {
  .page-shell { width: min(100% - 24px, 1220px); }
  .site-header { min-height: 92px; }
  .brand img { width: 88px; }
  .header-pill { font-size: 11px; padding: 8px 11px; }
  .hero { min-height: auto; padding-bottom: 50px; }
  .hero h1 { font-size: clamp(52px, 17vw, 76px); }
  .hero-text { font-size: 16px; line-height: 1.65; }
  .hero-visual { min-height: 330px; }
  .logo-stage { width: min(310px, 92%); border-radius: 28px; }
  .floating-tag { font-size: 10px; padding: 9px 11px; }
  .tag-one { left: 0; }
  .tag-two { right: 0; }
  .apps-section { padding: 22px; border-radius: 24px; margin-bottom: 58px; }
  .app-grid { grid-template-columns: 1fr; }
  .app-card { min-height: 220px; }
  .site-footer { padding: 34px 0; flex-direction: column; align-items: flex-start; }
  .copyright { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
