:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --panel: #fbfbfc;
  --line: #e5e8ec;
  --line-strong: #cfd5dd;
  --text: #0b0d10;
  --muted: #59626c;
  --cyan: #12b3ef;
  --cyan-deep: #0079c2;
  --green: #17a85f;
  --radius: 18px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(18, 179, 239, 0.14), transparent 70%),
    radial-gradient(700px 500px at 100% 8%, rgba(0, 121, 194, 0.07), transparent 70%);
}

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

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

.hero-visual img,
.section-media img {
  width: 100%;
  height: auto;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 15px;
  color: var(--muted);
}

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

.lang {
  display: flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 3px;
  font-size: 13px;
  font-weight: 500;
}

.lang a {
  padding: 5px 13px;
  border-radius: 999px;
  color: var(--muted);
}

.lang a:hover {
  color: var(--text);
}

.lang a[aria-current="true"] {
  background: var(--text);
  color: #ffffff;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--cyan), var(--cyan-deep));
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 121, 194, 0.24);
}

.btn-mac {
  background: linear-gradient(180deg, #23bd71, #0d8c4e);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(13, 140, 78, 0.22);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: #ffffff;
}

.btn-ghost:hover {
  border-color: #b4bcc6;
}

/* Hero */

.hero {
  padding: 92px 0 72px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  font-size: 13px;
  color: var(--muted);
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-deep);
}

h1 {
  margin: 26px auto 0;
  max-width: 17ch;
  font-size: clamp(40px, 6.2vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.hero p {
  margin: 22px auto 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: #8a929b;
}

.hero-visual {
  margin-top: 62px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: 0 34px 80px rgba(17, 32, 48, 0.18);
}

/* Logos strip */

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--bg-soft);
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 34px;
  color: #6c757f;
  font-size: 14px;
}

.strip-inner span:first-child {
  color: #9aa2ab;
}

/* Sections */

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

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.section.reverse .section-grid .section-media {
  order: -1;
}

.tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}

h2 {
  margin: 16px 0 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  max-width: 46ch;
}

.features {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.features li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 14px;
  font-size: 15.5px;
  color: var(--muted);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.features li:hover {
  border-color: var(--line-strong);
  box-shadow: 0 8px 22px rgba(17, 32, 48, 0.07);
}

.features b {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 4px;
}

.section-media {
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: 0 26px 60px rgba(17, 32, 48, 0.16);
}

/* Closing CTA */

.cta {
  padding: 110px 0 120px;
  text-align: center;
}

.cta h2 {
  max-width: 20ch;
  margin-inline: auto;
}

.cta p {
  margin: 18px auto 0;
  max-width: 52ch;
  color: var(--muted);
}

.cta .hero-actions {
  margin-top: 32px;
}

/* Footer */

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: #8a929b;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

/* Scroll reveal, progressive enhancement */

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .section-grid > *,
    .cta > * {
      animation: reveal linear both;
      animation-timeline: view();
      animation-range: entry 8% cover 26%;
    }
  }
}

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

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .lang {
    margin-left: auto;
  }

  .hero {
    padding: 64px 0 48px;
  }

  .section {
    padding: 72px 0;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section.reverse .section-grid .section-media {
    order: 0;
  }
}
