:root {
  --bg: #ffffff;
  --bg-2: #f6f4fd;
  --bg-3: #efeafc;
  --surface: #ffffff;
  --text: #1c1535;
  --muted: #5f5a78;
  --accent: #7a00df;
  --accent-2: #9b3cff;
  --accent-soft: #f1e8ff;
  --line: #e9e4f5;
  --radius: 16px;
  --maxw: 1120px;
  --shadow: 0 18px 44px -22px rgba(122, 0, 223, 0.35);
  --shadow-sm: 0 8px 24px -16px rgba(28, 21, 53, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  margin: 0 0 0.4em;
  letter-spacing: -0.02em;
}

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

.accent {
  color: var(--accent);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.9em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(122, 0, 223, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -12px rgba(122, 0, 223, 0.65);
}

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

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}

.brand-mark {
  display: inline-flex;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}

.brand-text strong {
  font-weight: 800;
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s ease;
}

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

.nav-cta {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.2s;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(72px, 12vw, 150px) 0 clamp(64px, 9vw, 110px);
  background:
    radial-gradient(900px 520px at 82% -10%, rgba(155, 60, 255, 0.22), transparent 60%),
    radial-gradient(720px 520px at -5% 15%, rgba(122, 0, 223, 0.12), transparent 55%),
    linear-gradient(180deg, #faf8ff 0%, var(--bg) 70%);
  overflow: hidden;
}

.hero-inner {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 800;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 640px;
  margin: 1.2rem 0 2rem;
}

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

/* Intro */
.intro {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.quote {
  margin: 0;
  max-width: 940px;
  position: relative;
  padding-left: clamp(20px, 4vw, 40px);
  border-left: 4px solid;
  border-image: linear-gradient(180deg, var(--accent), var(--accent-2)) 1;
}

.quote blockquote {
  margin: 0;
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.quote blockquote strong {
  color: var(--accent);
}

.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.quote-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  flex: none;
}

.quote-by {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

/* Section heads */
.section-head {
  margin-bottom: 48px;
  max-width: 640px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
}

/* Services — two pillars */
.services {
  padding: clamp(64px, 9vw, 110px) 0;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pillar {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px 34px;
  scroll-margin-top: 90px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pillar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 0, 223, 0.35);
  box-shadow: var(--shadow);
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 20px;
}

.pillar h3 {
  font-size: 1.55rem;
}

.pillar > p {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 1rem;
}

.pillar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pillar-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
  font-size: 0.95rem;
}

.pillar-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 4px var(--accent);
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent);
  transition: gap 0.15s ease, color 0.15s ease;
}

.pillar-link:hover {
  gap: 11px;
  color: var(--accent-2);
}

/* ParkMaster product */
.parkmaster {
  padding: clamp(64px, 9vw, 110px) 0;
  background:
    radial-gradient(720px 420px at 100% 0%, rgba(122, 0, 223, 0.14), transparent 60%),
    linear-gradient(180deg, #faf8ff, var(--bg));
}

.pm-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.pm-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pm-tagline {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin: 0 0 26px;
}

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

.pm-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pm-card:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 0, 223, 0.32);
  box-shadow: var(--shadow);
}

.pm-card h4 {
  font-size: 1.12rem;
  margin-bottom: 0.4em;
  color: var(--accent);
}

.pm-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.93rem;
}

/* Screenshot frame */
.shot {
  margin: 0 0 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.shot-wide {
  margin: 56px auto 0;
  max-width: 980px;
}

.shot-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 13px 16px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.shot-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d9d2ec;
}

.shot a {
  display: block;
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
}

.shot figcaption {
  padding: 16px 22px;
  font-size: 0.9rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}

/* Capabilities */
.capabilities {
  padding: clamp(64px, 9vw, 110px) 0;
  background:
    radial-gradient(600px 360px at 95% 0%, rgba(155, 60, 255, 0.12), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.cap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cap:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 0, 223, 0.3);
  box-shadow: var(--shadow-sm);
}

.cap-dot {
  display: block;
  width: 38px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  margin-bottom: 16px;
}

.cap h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35em;
}

.cap p {
  color: var(--muted);
  margin: 0;
  font-size: 0.93rem;
}

/* My Protect */
.myprotect {
  padding: clamp(64px, 9vw, 110px) 0;
}

.myprotect-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.myprotect h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
}

.myprotect p {
  color: var(--muted);
  font-size: 1.05rem;
}

.myprotect strong {
  color: var(--accent);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  position: relative;
  padding: 16px 18px 16px 50px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(122, 0, 223, 0.12);
}

/* Contact */
.contact {
  padding: clamp(64px, 9vw, 110px) 0;
  background:
    radial-gradient(700px 420px at 8% 100%, rgba(122, 0, 223, 0.1), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
}

.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: block;
  margin-bottom: 18px;
}

.field span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  resize: vertical;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(122, 0, 223, 0.15);
}

.contact-form .btn {
  width: 100%;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner .copy {
  font-size: 0.85rem;
  color: rgba(95, 90, 120, 0.7);
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    padding: 12px 24px 20px;
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    text-align: center;
    margin-top: 12px;
  }

  .pillars,
  .pm-grid,
  .cap-grid,
  .myprotect-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}
