:root {
  --ink: #10171f;
  --muted: #53606f;
  --green: #259925;
  --green-dark: #147b1b;
  --green-pale: #eaf6e8;
  --line: #dfe8df;
  --surface: #ffffff;
  --surface-soft: #f7faf6;
  --surface-green: #f2f8f1;
  --shadow-sm: 0 12px 36px rgba(16, 23, 31, 0.07);
  --shadow-lg: 0 32px 80px rgba(32, 84, 35, 0.12);
  --radius: 28px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

main,
section,
.hero-grid,
.section-heading,
.product-card,
.product-copy,
.product-visual,
.about-grid,
.about-copy,
.contact-card {
  min-width: 0;
}

:focus-visible {
  border-radius: 8px;
  outline: 3px solid rgba(37, 153, 37, 0.4);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(216, 226, 216, 0.78);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 1320px);
  min-height: 78px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.brand img {
  width: 38px;
  height: 38px;
}

.primary-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 50px);
}

.primary-nav a,
.footer-nav a {
  position: relative;
  min-height: 44px;
  padding-block: 10px;
  color: #26313d;
  font-size: 0.94rem;
  font-weight: 630;
}

.primary-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.footer-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  display: grid;
  min-height: 700px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 35%, rgba(164, 218, 152, 0.2), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfdfb 100%);
}

.hero::before {
  position: absolute;
  top: 64px;
  right: -120px;
  width: 570px;
  height: 570px;
  background-image: radial-gradient(rgba(37, 153, 37, 0.18) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(145deg, transparent 18%, black, transparent 82%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: 48px;
  padding-block: 90px 104px;
}

.hero-copy {
  max-width: 630px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.052em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.35rem, 6.3vw, 6.3rem);
  font-weight: 790;
}

h1 span {
  color: var(--green);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.2vw, 4.25rem);
  font-weight: 760;
}

.hero-description {
  max-width: 550px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 16px;
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2ca52d, #208f26);
  box-shadow: 0 12px 24px rgba(37, 153, 37, 0.2);
  color: white;
  font-weight: 720;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover {
  box-shadow: 0 16px 30px rgba(37, 153, 37, 0.28);
  transform: translateY(-2px);
}

.brand-orbit {
  position: relative;
  min-height: 510px;
}

.orbit-ring,
.hero-glow,
.brand-stage,
.float-card,
.orbit-dot {
  position: absolute;
}

.orbit-ring {
  top: 50%;
  left: 50%;
  border: 1px solid rgba(37, 153, 37, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring-outer {
  width: 450px;
  height: 450px;
  border-right-color: transparent;
}

.orbit-ring-inner {
  width: 330px;
  height: 330px;
  border-top-color: transparent;
  border-left-color: transparent;
}

.hero-glow {
  top: 50%;
  left: 50%;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(144, 206, 128, 0.26), transparent 68%);
  transform: translate(-50%, -50%);
}

.brand-stage {
  top: 50%;
  left: 50%;
  display: grid;
  width: 246px;
  height: 246px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 74px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 32px 70px rgba(35, 99, 43, 0.14);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(18px);
}

.brand-stage img {
  width: 156px;
  height: 156px;
  filter: drop-shadow(0 20px 28px rgba(37, 153, 37, 0.18));
}

.float-card {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(213, 225, 213, 0.88);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  color: var(--green);
  font-weight: 740;
}

.float-code {
  top: 43%;
  left: 3%;
  font-family: ui-monospace, monospace;
  animation: float-soft 5.2s ease-in-out infinite;
}

.float-device {
  right: 4%;
  bottom: 17%;
  animation: float-soft 5.8s 0.5s ease-in-out infinite;
}

.float-pixel {
  top: 12%;
  right: 13%;
  grid-template-columns: repeat(2, 8px);
  gap: 5px;
  animation: float-soft 6.2s 1s ease-in-out infinite;
}

.float-pixel i {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--green);
}

.float-pixel i:nth-child(2),
.float-pixel i:nth-child(3) {
  opacity: 0.45;
}

.tiny-device {
  display: block;
  width: 22px;
  height: 34px;
  border: 3px solid var(--green);
  border-radius: 6px;
}

.orbit-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #64bc5e;
  box-shadow: 0 0 0 6px rgba(100, 188, 94, 0.09);
}

.dot-one { top: 16%; left: 25%; }
.dot-two { top: 48%; right: 1%; }
.dot-three { bottom: 8%; left: 32%; }

.section {
  padding-block: clamp(88px, 10vw, 142px);
}

.products {
  border-block: 1px solid rgba(218, 229, 218, 0.72);
  background:
    radial-gradient(circle at 78% 58%, rgba(173, 219, 163, 0.24), transparent 34%),
    var(--surface-green);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 36px;
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 760px;
  margin: -6px 0 0;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

.product-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 4vw, 56px);
}

.product-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 25px;
  border-radius: 23px;
  box-shadow: 0 14px 28px rgba(37, 153, 37, 0.22);
}

.product-kicker {
  margin: 0 0 7px;
  color: #74808c;
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(2.4rem, 3.4vw, 3.55rem);
  font-weight: 770;
  white-space: nowrap;
}

.product-tagline {
  margin: 0 0 20px;
  color: var(--green-dark);
  font-size: 1.12rem;
  font-weight: 650;
}

.product-description {
  max-width: 500px;
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.75;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  gap: 9px;
  padding: 7px 13px;
  border: 1px solid #d7e9d4;
  border-radius: 999px;
  background: var(--green-pale);
  color: #207d24;
  font-size: 0.9rem;
  font-weight: 650;
}

.status-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 153, 37, 0.12);
}

.platforms {
  color: #33404c;
  font-size: 0.92rem;
  font-weight: 620;
}

.product-visual {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background: transparent;
}

.product-visual::before {
  content: none;
}

.product-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  filter: none;
}

.about {
  background:
    radial-gradient(circle at 74% 50%, rgba(222, 241, 218, 0.62), transparent 29%),
    #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(50px, 9vw, 124px);
}

.body-copy {
  display: grid;
  gap: 16px;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.06rem;
}

.body-copy p {
  margin: 0;
}

.about-art {
  position: relative;
  min-height: 460px;
}

.about-ring,
.about-mark-card,
.about-chip,
.about-dot {
  position: absolute;
}

.about-ring {
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(37, 153, 37, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.about-mark-card {
  top: 50%;
  left: 50%;
  display: grid;
  width: 202px;
  height: 202px;
  place-items: center;
  border: 1px solid #e1eae1;
  border-radius: 52px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -50%);
}

.about-mark-card img {
  width: 118px;
  height: 118px;
}

.about-chip {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid #dfe9df;
  border-radius: 17px;
  background: white;
  box-shadow: var(--shadow-sm);
  color: var(--green);
  font-weight: 760;
}

.about-chip-code { top: 48%; left: 9%; font-family: ui-monospace, monospace; }
.about-chip-focus { top: 3%; left: 49%; font-size: 1.6rem; }
.about-chip-app { right: 5%; bottom: 12%; }

.about-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #60b958;
}

.about-dot-one { top: 25%; right: 9%; }
.about-dot-two { bottom: 3%; left: 50%; }

.contact {
  padding-top: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
  align-items: center;
  min-height: 400px;
  overflow: hidden;
  padding: clamp(38px, 7vw, 82px);
  border: 1px solid #dce8dc;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 42%, rgba(190, 226, 181, 0.4), transparent 31%),
    var(--surface-soft);
}

.contact-card h2 {
  margin-bottom: 16px;
}

.contact-copy {
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.06rem;
}

.email-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 12px;
  color: var(--green-dark);
  font-size: 1.08rem;
  font-weight: 720;
}

.email-link span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.message-art {
  position: relative;
  min-height: 230px;
}

.paper-plane {
  position: absolute;
  top: 18px;
  right: 14%;
  color: white;
  font-family: Georgia, serif;
  font-size: clamp(6rem, 13vw, 10rem);
  line-height: 1;
  text-shadow:
    -1px -1px 0 #cbd8cb,
    1px -1px 0 #cbd8cb,
    -1px 1px 0 #cbd8cb,
    1px 1px 0 #cbd8cb,
    0 30px 30px rgba(48, 91, 46, 0.13);
  transform: rotate(-28deg);
}

.message-path {
  position: absolute;
  bottom: 34px;
  left: 2%;
  width: 62%;
  height: 80px;
  border-bottom: 2px dashed rgba(37, 153, 37, 0.42);
  border-radius: 0 0 50% 50%;
  transform: rotate(4deg);
}

.site-footer {
  padding: 0px 0px 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 42px;
  min-height: 190px;
  padding: 42px 50px;
  border-radius: 24px;
  background: linear-gradient(135deg, #121a23, #1d2730);
  color: white;
}

.footer-brand p {
  margin: 20px 0 0;
  color: #b8c1ca;
  font-size: 0.82rem;
}

.footer-nav {
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}

.footer-nav a {
  color: #dfe4e8;
}

.footer-email {
  justify-self: end;
  color: #89d682;
  font-size: 0.9rem;
  font-weight: 650;
}

.reveal {
  transition: opacity 650ms ease, transform 650ms ease;
}

.motion-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(22px);
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; padding-block: 76px 54px; }
  .hero-copy { max-width: 760px; }
  .brand-orbit { min-height: 470px; }
  .product-card { grid-template-columns: 1fr; }
  .product-visual { min-height: 0; padding: 0; }
  .product-visual img { width: min(100%, 720px); height: auto; object-fit: contain; }
  .about-grid { grid-template-columns: 1fr; }
  .about-art { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-email { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 110px; }
  .container, .header-inner { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { min-height: 66px; }
  .brand { gap: 8px; font-size: 1rem; }
  .brand img { width: 32px; height: 32px; }
  .primary-nav { gap: 8px; }
  .primary-nav a { padding-inline: 7px; font-size: 0.79rem; }
  .hero-grid { padding-top: 64px; }
  h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .brand-orbit { left: auto; width: 100%; min-height: 400px; transform: none; }
  .orbit-ring-outer { width: min(100%, 380px); height: auto; aspect-ratio: 1; }
  .orbit-ring-inner { width: min(74%, 280px); height: auto; aspect-ratio: 1; }
  .hero-glow { width: min(90%, 340px); height: auto; aspect-ratio: 1; }
  .brand-stage { width: 210px; height: 210px; border-radius: 62px; }
  .brand-stage img { width: 132px; height: 132px; }
  .float-code { left: 0; }
  .float-pixel { right: 2%; }
  .float-device { right: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 0; margin-bottom: 30px; }
  .product-card { border-radius: 22px; }
  .product-copy { padding: 36px 26px 30px; }
  .product-visual { min-height: 0; padding: 0; }
  .product-visual img { width: 100%; }
  .about-art { left: auto; width: 100%; min-height: 390px; transform: none; }
  .about-ring { width: min(88vw, 330px); height: auto; aspect-ratio: 1; }
  .about-chip-code { left: 1%; }
  .about-chip-focus { left: 48%; }
  .about-chip-app { right: 1%; }
  .contact-card { grid-template-columns: 1fr; border-radius: 22px; }
  .message-art { min-height: 170px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 38px 28px; }
  .footer-email { grid-column: auto; }
  .email-link,
  .footer-email { overflow-wrap: anywhere; }
}

@media (max-width: 460px) {
  .header-inner { flex-direction: column; gap: 2px; padding-top: 8px; }
  .brand { justify-content: center; }
  .primary-nav { justify-content: center; }
  .hero-grid { padding-top: 48px; }
  h1 { font-size: clamp(2.75rem, 14vw, 3.65rem); }
  .primary-button { width: 100%; }
  .brand-orbit { min-height: 350px; transform: none; }
  .orbit-ring-outer { width: min(100%, 320px); }
  .orbit-ring-inner { width: min(72%, 230px); }
  .hero-glow { width: min(90%, 290px); }
  .brand-stage { width: 170px; height: 170px; border-radius: 50px; }
  .brand-stage img { width: 106px; height: 106px; }
  .float-card { width: 54px; height: 54px; border-radius: 15px; }
  .float-code { left: 0; }
  .float-pixel { right: 0; }
  .float-device { right: 0; }
  .product-visual { min-height: 0; padding: 0; }
  .product-visual img { width: 100%; }
  .about-art { min-height: 330px; transform: none; }
  .about-ring { width: min(88vw, 285px); }
  .about-mark-card { width: 162px; height: 162px; border-radius: 44px; }
  .about-mark-card img { width: 96px; height: 96px; }
  .about-chip { width: 50px; height: 50px; border-radius: 14px; }
  .email-link { font-size: 0.94rem; }
  .message-art { display: none; }
  .contact-card { min-height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
