:root {
  color-scheme: light;
  --bg: #edf8fb;
  --bg-soft: #f7fcfd;
  --surface: #ffffff;
  --surface-tint: #e4f6fa;
  --ink: #102433;
  --muted: #58707c;
  --blue: #2077e8;
  --cyan: #20c7c9;
  --deep: #073044;
  --line: rgba(13, 67, 88, 0.14);
  --shadow: 0 22px 60px rgba(16, 51, 67, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 8%, rgba(32, 199, 201, 0.26), transparent 28rem),
    radial-gradient(circle at 88% 4%, rgba(32, 119, 232, 0.18), transparent 30rem),
    linear-gradient(180deg, #f8fdfe 0%, var(--bg) 48%, #ffffff 100%);
  color: var(--ink);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(18px);
}

.brand {
  flex: 0 0 auto;
}

.brand picture,
.brand img {
  display: block;
}

.brand img {
  width: clamp(128px, 15vw, 172px);
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.main-nav a,
.mobile-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.mobile-nav a:hover {
  color: var(--deep);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(16, 51, 67, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  color: var(--muted);
}

.mobile-nav.is-open {
  display: grid;
  gap: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 82px) 0 64px;
}

.hero-content {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #087d91;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--deep);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5vw, 4.5rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  min-height: 58px;
  padding: 14px 14px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--deep);
  box-shadow: 0 10px 26px rgba(16, 51, 67, 0.06);
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(32, 119, 232, 0.2);
}

.button.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--deep);
}

.hero-panel,
.example-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, #ffffff, #e9f9fb);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.browser-bar span:nth-child(2) {
  background: #ffd166;
}

.browser-bar span:nth-child(3) {
  background: #ef476f;
}

.browser-bar strong {
  margin-left: auto;
  font-size: 0.88rem;
  white-space: nowrap;
}

.preview-card {
  margin: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.preview-header {
  width: 78%;
  height: 62px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.preview-grid span {
  aspect-ratio: 1.2;
  border-radius: 8px;
  background: var(--surface-tint);
}

.preview-lines span {
  display: block;
  height: 12px;
  margin-top: 12px;
  border-radius: 999px;
  background: #d5e8ee;
}

.preview-lines span:nth-child(2) {
  width: 82%;
}

.preview-lines span:nth-child(3) {
  width: 58%;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 3rem;
  align-items: start;
  border-top: 1px solid var(--line);
}

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

article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(16, 51, 67, 0.06);
}

article p,
.site-footer p,
.contact-section p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.offers,
.examples {
  position: relative;
}

.offers::before,
.examples::before {
  content: "";
  position: absolute;
  inset: 28px -16px;
  z-index: -1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.38);
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.92);
}

.price-card.featured {
  background: linear-gradient(180deg, #ffffff, #f0fbfd);
  border-color: rgba(32, 199, 201, 0.42);
}

.label {
  align-self: flex-start;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 7px 11px;
  background: #e4f6fa;
  color: #087d91;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 14px 0 0;
  padding: 0;
  color: var(--deep);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.price-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.example-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 250, 252, 0.92));
}

.example-copy span {
  display: inline-block;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 7px 11px;
  background: #e4f6fa;
  color: #087d91;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.example-copy .button {
  margin-top: 12px;
}

.browser-bar.compact {
  padding: 12px 14px;
}

.browser-bar.compact strong {
  font-size: 0.8rem;
}

.mini-page {
  padding: 18px;
  background: #ffffff;
}

.mini-hero {
  height: 128px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, #ecd9cc, #9fb49b);
}

.mini-lines {
  margin: 18px 0;
}

.mini-lines span {
  display: block;
  height: 12px;
  margin-top: 10px;
  border-radius: 999px;
  background: #e1eef2;
}

.mini-lines span:first-child {
  width: 74%;
}

.mini-lines span:nth-child(2) {
  width: 52%;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-cards span {
  aspect-ratio: 1.45;
  border-radius: 8px;
  background: #f1f7f8;
  border: 1px solid var(--line);
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-section h2 {
  max-width: 720px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-logo img {
  width: 142px;
  height: auto;
}

.footer-link {
  color: var(--muted);
  font-weight: 800;
}

.footer-link:hover {
  color: var(--deep);
}

.legal-page {
  padding-top: clamp(48px, 8vw, 92px);
}

.legal-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.legal-heading h1 {
  font-size: clamp(2.55rem, 5vw, 4.2rem);
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
}

.legal-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.legal-card h3 {
  margin-top: 22px;
}

.legal-card a {
  color: #087d91;
  font-weight: 800;
}

.legal-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.legal-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

@media (max-width: 920px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero,
  .intro,
  .example-card {
    grid-template-columns: 1fr;
  }

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

  .contact-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 2.55rem;
  }

  .browser-bar strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .preview-card {
    margin: 14px;
    padding: 16px;
  }

  .section {
    padding: 54px 0;
  }

  .mini-cards {
    grid-template-columns: 1fr;
  }
}
