:root {
  --bg: #0e1619;
  --bg-dark: #0b1215;
  --surface: #131d22;
  --surface-soft: rgba(255, 255, 255, 0.025);
  --text: #e9efef;
  --muted: #a7b5b6;
  --muted-2: #8c9a9c;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #2bd4bd;
  --accent-rgb: 43, 212, 189;
  --accent-dark: #06201d;
  --radius: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  background: rgba(var(--accent-rgb), 0.3);
}

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.section {
  padding: 96px 0;
  position: relative;
}

.section-band {
  background: var(--bg-dark);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(14, 22, 25, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  width: 24px;
  height: 47px;
  display: flex;
  align-items: stretch;
  gap: 4px;
  flex: 0 0 auto;
  transform: translateY(2px);
}

.brand-mark span {
  display: block;
  border-radius: 0;
  box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.18);
}

.brand-mark span:nth-child(1) {
  width: 2px;
  background: #159784;
}

.brand-mark span:nth-child(2) {
  width: 5px;
  background: var(--accent);
}

.brand-mark span:nth-child(3) {
  width: 8px;
  background: #65f1df;
}

.brand-logo {
  width: max-content;
  display: grid;
  gap: 4px;
  line-height: 1;
}

.brand-logo-main {
  width: max-content;
  justify-self: start;
  color: var(--text);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 33px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand-logo-sub {
  width: max-content;
  color: #65f1df;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #aebbbc;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 24px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: var(--accent-dark);
}

.button-primary:hover {
  filter: brightness(1.07);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-secondary:hover {
  border-color: var(--accent);
}

.button-full {
  width: 100%;
}

.hero {
  overflow: hidden;
}

.hero::before,
.contact-section::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.13), transparent 62%);
  pointer-events: none;
}

.hero::before {
  top: -40px;
  right: -120px;
}

.contact-section::before {
  left: -150px;
  bottom: -180px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero .eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2.4s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 18px;
  line-height: 1.2;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.55;
}

.hero-text strong {
  color: var(--text);
}

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

.hero-actions {
  margin-bottom: 38px;
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #c2cecf;
  font-size: 13.5px;
  font-weight: 700;
}

.trust-list li::before,
.check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.browser-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #0c1417;
  box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.7);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #182227;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px 14px 0 0;
}

.browser-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.browser-top span:nth-child(1) {
  background: #f6584f;
}

.browser-top span:nth-child(2) {
  background: #f9bd2e;
}

.browser-top span:nth-child(3) {
  background: #42c552;
}

.browser-top div {
  flex: 1;
  margin-left: 8px;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--bg);
  color: #8fa0a2;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 12px;
  text-align: center;
}

.sample-site {
  overflow: hidden;
  border-radius: 0 0 14px 14px;
  background: #0f1a14;
  color: #e9f3ec;
}

.sample-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sample-nav strong {
  color: #7ed957;
  font-size: 14px;
}

.sample-nav span {
  color: #9fb3a4;
  font-size: 11px;
}

.sample-hero {
  padding: 26px 18px;
  background: repeating-linear-gradient(135deg, rgba(126, 217, 87, 0.1) 0 12px, rgba(126, 217, 87, 0.04) 12px 24px);
}

.sample-hero h2 {
  max-width: 260px;
  margin-bottom: 8px;
  font-size: 24px;
}

.sample-hero p {
  max-width: 260px;
  margin-bottom: 14px;
  color: #a9c0b1;
  font-size: 13px;
  line-height: 1.5;
}

.sample-hero a {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 8px;
  background: #7ed957;
  color: #0a2410;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.sample-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px 18px 20px;
}

.sample-services span {
  padding: 12px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #cdded3;
  font-size: 11px;
  font-weight: 700;
}

.browser-caption {
  position: absolute;
  left: -14px;
  bottom: -36px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #141e22;
  color: #aebbbc;
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.6);
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 12px;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow),
.examples-heading p,
.contact-grid > div > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.business-grid,
.feature-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

.business-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.business-grid article,
.feature-grid article,
.process-grid article,
.price-card,
.addon-card,
.example-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.business-grid article,
.feature-grid article,
.process-grid article {
  padding: 24px;
}

.business-grid article {
  transition: transform 160ms ease, border-color 160ms ease;
}

.business-grid article:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  transform: translateY(-2px);
}

.business-grid h3 {
  margin-bottom: 4px;
  font-size: 15px;
}

.business-grid p,
.feature-grid p,
.process-grid p,
.example-card p {
  margin-bottom: 0;
  color: var(--muted-2);
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  align-items: start;
}

.price-card,
.addon-card,
.contact-form {
  padding: 34px;
}

.price-card {
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow: 0 24px 60px -34px rgba(var(--accent-rgb), 0.5);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price {
  font-size: 52px;
  font-weight: 800;
}

.price-row + p,
.price-row span:last-child,
.card-kicker {
  color: var(--muted-2);
}

.price-card hr {
  height: 1px;
  margin: 22px 0;
  border: 0;
  background: var(--line);
}

.price-card h3,
.card-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.check-list,
.addon-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 28px;
}

.check-list li {
  display: flex;
  gap: 11px;
  font-size: 15px;
  line-height: 1.4;
}

.addon-card {
  background: var(--surface-soft);
}

.addon-card h3 {
  margin-bottom: 22px;
}

.addon-list {
  margin-bottom: 22px;
}

.addon-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.addon-list li:last-child {
  border-bottom: 0;
}

.addon-list span {
  color: #6f7e80;
}

.note {
  margin: 0;
  padding: 15px;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: var(--radius);
  background: rgba(var(--accent-rgb), 0.08);
  color: #c2cecf;
  font-size: 14px;
  line-height: 1.5;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.examples-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 42px;
}

.examples-heading > div {
  max-width: 580px;
}

.examples-heading > span {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 800;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.example-card {
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease;
}

.example-card:hover {
  border-color: rgba(var(--accent-rgb), 0.4);
  transform: translateY(-3px);
}

.example-card > div:last-child {
  padding: 22px;
}

.placeholder {
  height: 172px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 11px, rgba(255, 255, 255, 0.02) 11px 22px);
  color: #637173;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 12px;
}

.example-card .card-kicker {
  margin-bottom: 8px;
  color: var(--accent);
}

.tag {
  display: inline-flex;
  margin-top: 18px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 800;
}

.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.process-grid span {
  display: block;
  margin-bottom: 14px;
  color: rgba(var(--accent-rgb), 0.9);
  font-size: 32px;
  font-weight: 800;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-grid h2 {
  max-width: 520px;
}

.contact-grid > div > p {
  max-width: 460px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}

.contact-methods a,
.contact-methods div {
  display: grid;
  gap: 3px;
  color: var(--text);
  text-decoration: none;
}

.contact-methods span {
  color: var(--muted-2);
  font-size: 13px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 7px;
  color: #c2cecf;
  font-size: 13px;
  font-weight: 800;
}

.contact-form label span,
.form-note {
  color: #6f7e80;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  outline: none;
  background: var(--bg);
  color: var(--text);
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  text-align: center;
  font-size: 12.5px;
}

.form-success {
  padding: 30px 10px;
  text-align: center;
}

.form-success .success-mark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent);
  font-size: 28px;
  font-weight: 800;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 34px 0;
}

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

.footer p {
  margin: 0;
  color: var(--muted-2);
  font-size: 14px;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 44px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .browser-card {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .nav {
    min-height: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand {
    max-width: 190px;
    gap: 7px;
  }

  .brand-mark {
    width: 22px;
    height: 44px;
    gap: 3px;
    transform: translateY(2px);
  }

  .brand-mark span:nth-child(1) {
    width: 2px;
  }

  .brand-mark span:nth-child(2) {
    width: 4px;
  }

  .brand-mark span:nth-child(3) {
    width: 7px;
  }

  .brand-logo {
    width: max-content;
  }

  .brand-logo-main {
    font-size: 30px;
  }

  .brand-logo-sub {
    font-size: 11px;
    letter-spacing: 0.32em;
  }

  .nav-cta {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .trust-list li,
  .sample-services {
    width: 100%;
  }

  .sample-nav {
    align-items: start;
    flex-direction: column;
  }

  .sample-services {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .price-card,
  .addon-card,
  .contact-form {
    padding: 24px;
  }

  .examples-heading {
    align-items: start;
    flex-direction: column;
  }
}
