@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Variable.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-VariableItalic.woff2") format("woff2");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #fbfbf8;
  --surface: #ffffff;
  --ink: #18201c;
  --muted: #59645f;
  --line: #dfe4de;
  --brand: #006b5f;
  --brand-dark: #004c45;
  --accent: #e5503f;
  --soft: #eef6f1;
  --shadow: 0 18px 45px rgba(24, 32, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Satoshi", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(223, 228, 222, 0.85);
  background: rgba(251, 251, 248, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(0, 76, 69, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 72px);
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 610px);
  gap: 44px;
  align-items: center;
}

.hero-logo {
  width: 92px;
  height: 92px;
  display: block;
  margin-bottom: 22px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 76, 69, 0.18);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.hero-copy {
  margin: 22px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.4vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.button:hover {
  background: var(--brand-dark);
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--brand);
  background: var(--soft);
}

.hero-showcase {
  justify-self: end;
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(280px, 340px);
  gap: 24px;
  align-items: center;
}

.showcase-copy {
  position: relative;
  min-height: 250px;
}

.showcase-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  animation: showcaseText 15s infinite;
}

.showcase-text span {
  width: max-content;
  margin-bottom: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.showcase-text h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.showcase-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.showcase-text-2 {
  animation-delay: 5s;
}

.showcase-text-3 {
  animation-delay: 10s;
}

.phone-visual {
  position: relative;
  width: min(100%, 355px);
  aspect-ratio: 9 / 18;
  padding: 14px;
  border: 1px solid #25332d;
  border-radius: 38px;
  background: #17211c;
  box-shadow: var(--shadow);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #f7f8f4;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.phone-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  animation: phoneSlide 15s infinite;
}

.phone-slide-2 {
  animation-delay: 5s;
}

.phone-slide-3 {
  animation-delay: 10s;
}

.slide-dots {
  position: absolute;
  left: 50%;
  bottom: -28px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slide-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c9d5cf;
  animation: slideDot 15s infinite;
}

.slide-dots span:nth-child(2) {
  animation-delay: 5s;
}

.slide-dots span:nth-child(3) {
  animation-delay: 10s;
}

@keyframes phoneSlide {
  0%,
  30% {
    opacity: 1;
  }

  36%,
  100% {
    opacity: 0;
  }
}

@keyframes showcaseText {
  0%,
  30% {
    opacity: 1;
    transform: translateY(0);
  }

  36%,
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes slideDot {
  0%,
  30% {
    background: var(--brand);
    transform: scale(1.25);
  }

  36%,
  100% {
    background: #c9d5cf;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-slide,
  .showcase-text,
  .slide-dots span {
    animation: none;
  }

  .phone-slide-1,
  .showcase-text-1 {
    opacity: 1;
    transform: none;
  }

  .slide-dots span:first-child {
    background: var(--brand);
    transform: scale(1.25);
  }
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section-inner,
.content {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

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

.policy-header {
  padding: 64px 0 34px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.policy-header h1 {
  font-size: clamp(2.5rem, 7vw, 4.6rem);
}

.updated {
  color: var(--muted);
  margin: 14px 0 0;
}

.company-note {
  max-width: 760px;
}

.content {
  padding: 44px 0 72px;
  max-width: 850px;
}

.content h2 {
  margin: 40px 0 10px;
  font-size: 1.55rem;
}

.content h2:first-child {
  margin-top: 0;
}

.content p,
.content li {
  color: var(--muted);
}

.content ul {
  padding-left: 22px;
}

.contact-panel {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 12px 16px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 44px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-showcase {
    justify-self: center;
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 420px);
  }

  .showcase-copy {
    min-height: 170px;
    order: 2;
    text-align: center;
  }

  .showcase-text {
    align-items: center;
  }

  .phone-visual {
    width: min(100%, 310px);
    justify-self: center;
  }

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

  .section {
    padding: 54px 0;
  }
}

@media (max-width: 460px) {
  .hero-actions .button {
    width: 100%;
  }

  .content,
  .section-inner,
  .nav,
  .hero,
  .footer-inner {
    width: min(100% - 24px, 1040px);
  }
}
