:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-300: #5eead4;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-900: #134e4a;
  --ink: #0b1f1c;
  --ink-soft: #3d5a55;
  --paper: #f7fbfa;
  --white: #ffffff;
  --line: rgba(13, 148, 136, 0.18);
  --shadow: 0 24px 60px rgba(11, 31, 28, 0.14);
  --radius: 1.25rem;
  --font-display: "Sora", sans-serif;
  --font-body: "Figtree", sans-serif;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(20, 184, 166, 0.18), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(13, 148, 136, 0.12), transparent 55%),
    linear-gradient(180deg, #eef8f6 0%, var(--paper) 28%, #ffffff 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(247, 251, 250, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav a:hover {
  color: var(--teal-700);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-600));
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--teal-900);
  border: 1px solid rgba(13, 148, 136, 0.28);
}

.btn-lg {
  padding: 0.9rem 1.45rem;
  font-size: 1rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-plane {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-plane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: scale(1.04);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(238, 248, 246, 0.96) 0%, rgba(238, 248, 246, 0.88) 38%, rgba(238, 248, 246, 0.35) 68%, rgba(238, 248, 246, 0.12) 100%),
    linear-gradient(180deg, rgba(238, 248, 246, 0.2) 0%, rgba(11, 31, 28, 0.18) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 4rem;
  max-width: 34rem;
  margin-left: max(1.25rem, calc((100% - 1120px) / 2));
  margin-right: auto;
  animation: riseIn 0.9s ease both;
}

.hero-logo {
  width: 88px;
  height: 88px;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 10px 24px rgba(13, 148, 136, 0.25));
}

.hero h1,
.section h2,
.cta-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 12ch;
}

.hero-lead,
.section-lead {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 38ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.section {
  padding: 5.5rem 0 4rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.section h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  max-width: 18ch;
}

.section-briefing,
.section-dashboard {
  background: transparent;
}

.shot {
  margin: 2rem 0 0;
  width: 100%;
}

.shot img {
  width: 100%;
  max-height: 78vh;
  object-fit: cover;
  object-position: top center;
  border-block: 1px solid var(--line);
}

.shot figcaption {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0.9rem auto 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.section-product {
  background:
    linear-gradient(180deg, rgba(204, 251, 241, 0.35), rgba(255, 255, 255, 0.9));
}

.product-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.product-copy p {
  color: var(--ink-soft);
  max-width: 42ch;
}

.points {
  margin: 1.4rem 0 1.8rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  font-weight: 600;
}

.points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.18);
}

.product-box {
  margin: 0;
  display: flex;
  justify-content: center;
}

.product-box img {
  width: min(420px, 100%);
  filter: drop-shadow(0 28px 50px rgba(11, 31, 28, 0.22));
  animation: floatY 5.5s ease-in-out infinite;
}

.section-cta {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.cta-block {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: var(--radius);
  background:
    radial-gradient(700px 220px at 50% 0%, rgba(94, 234, 212, 0.35), transparent 70%),
    linear-gradient(145deg, #0f766e, #0d9488 55%, #14b8a6);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-block h2 {
  color: var(--white);
  max-width: 16ch;
  margin-inline: auto;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta-block p {
  margin: 0.85rem auto 1.5rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.9);
}

.cta-block .btn-primary {
  background: var(--white);
  color: var(--teal-800, #115e59);
  box-shadow: none;
}

.cta-block .btn-primary:hover {
  background: var(--teal-50);
}

.cta-contact {
  margin: 1rem 0 0 !important;
  font-size: 0.95rem;
}

.cta-contact a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
  background: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-inner img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-copy p {
  margin: 0;
}

.footer-owner {
  margin-top: 0.35rem !important;
  font-size: 0.88rem;
}

.footer-inner a {
  color: var(--teal-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, 1%, 0); }
}

@media (min-width: 800px) {
  .nav {
    display: flex;
  }

  .product-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .hero-copy {
    padding-bottom: 5.5rem;
  }
}

@media (max-width: 799px) {
  .hero {
    min-height: auto;
  }

  .hero-plane img {
    object-position: 80% 30%;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(238, 248, 246, 0.92) 0%, rgba(238, 248, 246, 0.78) 48%, rgba(238, 248, 246, 0.35) 100%);
  }

  .hero-copy {
    max-width: none;
    margin-left: auto;
    padding: 3.2rem 0 14rem;
  }

  .hero h1 {
    max-width: none;
  }

  .shot img {
    max-height: none;
    object-fit: contain;
    background: #0b1f1c;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-plane img,
  .product-box img,
  .hero-copy,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
