/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

:root {
  --bg: #0b1220;
  --panel: #0f1a30;
  --card: #0d1730;
  --text: #eaf0ff;
  --muted: rgba(234, 240, 255, 0.72);
  --border: rgba(234, 240, 255, 0.12);
  --primary: #5eead4;
  --primary-ink: #06221d;
  --secondary: rgba(234, 240, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(94, 234, 212, 0.18), transparent 60%),
    radial-gradient(1000px 600px at 90% 10%, rgba(94, 234, 212, 0.12), transparent 55%),
    linear-gradient(180deg, #070b14, var(--bg));
}

a { color: inherit; text-decoration: none; }
.container { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }

.skip-link {
  position: absolute; left: -999px; top: 10px;
  background: #fff; color: #000; padding: 10px 12px; border-radius: 10px;
}
.skip-link:focus { left: 10px; z-index: 1000; }

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(7, 11, 20, 0.55);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(94, 234, 212, 0.14);
  border: 1px solid rgba(94, 234, 212, 0.35);
  margin-right: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
}
.brand-name { font-weight: 800; line-height: 1.1; }
.brand-tagline { font-size: 13px; color: var(--muted); margin-top: 2px; }

.nav { display: flex; gap: 16px; }
.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover { background: rgba(234, 240, 255, 0.06); color: var(--text); }

.header-cta { display: flex; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: rgba(94, 234, 212, 0.65);
}
.btn-primary:hover { filter: brightness(0.98); }
.btn-secondary {
  background: var(--secondary);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: rgba(234, 240, 255, 0.16); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(234, 240, 255, 0.06); }
.btn-block { width: 100%; }

.hero { padding: 56px 0 28px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}
.eyebrow {
  display: inline-block;
  color: rgba(94, 234, 212, 0.95);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.25px;
  background: rgba(94, 234, 212, 0.10);
  border: 1px solid rgba(94, 234, 212, 0.24);
  padding: 8px 10px;
  border-radius: 999px;
}
h1 { font-size: clamp(34px, 4vw, 52px); line-height: 1.05; margin: 14px 0 10px; }
.lead { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 60ch; }

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

.trust-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.trust-points li {
  padding-left: 18px;
  position: relative;
}
.trust-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 3px;
  background: rgba(94, 234, 212, 0.9);
}

.note {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(15, 26, 48, 0.55);
  color: var(--muted);
}

.card {
  background: rgba(15, 26, 48, 0.55);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.card-title { margin: 0 0 6px; font-size: 18px; }
.card-subtitle { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.5; }

label { display: grid; gap: 7px; font-size: 13px; color: var(--muted); }
input, select, textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(234, 240, 255, 0.14);
  background: rgba(6, 10, 20, 0.55);
  color: var(--text);
  padding: 11px 12px;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(94, 234, 212, 0.6);
  box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.10);
}
.mini-form { display: grid; gap: 12px; }
.fine-print { margin: 10px 0 0; font-size: 12px; color: rgba(234, 240, 255, 0.58); line-height: 1.45; }
.center { text-align: center; }

.proof { padding: 18px 0 10px; }
.proof-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.proof-item {
  border: 1px solid var(--border);
  background: rgba(15, 26, 48, 0.38);
  border-radius: 16px;
  padding: 14px;
}
.proof-number { font-weight: 900; font-size: 18px; }
.proof-label { color: var(--muted); font-size: 13px; margin-top: 4px; line-height: 1.4; }

.section { padding: 56px 0; }
.section-alt { background: rgba(255, 255, 255, 0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { margin-bottom: 18px; }
.section-head h2 { margin: 0 0 8px; font-size: 28px; }
.section-head p { margin: 0; color: var(--muted); line-height: 1.6; max-width: 75ch; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.feature {
  border: 1px solid var(--border);
  background: rgba(15, 26, 48, 0.40);
  border-radius: 18px;
  padding: 18px;
}
.feature h3 { margin: 0 0 10px; font-size: 18px; }
.feature ul { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.7; }

.callout {
  margin-top: 18px;
  border: 1px solid rgba(94, 234, 212, 0.25);
  background: rgba(94, 234, 212, 0.08);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.callout h3 { margin: 0 0 6px; font-size: 18px; }
.callout p { margin: 0; color: var(--muted); }

.steps {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.steps li {
  border: 1px solid var(--border);
  background: rgba(15, 26, 48, 0.40);
  border-radius: 18px;
  padding: 18px;
}
.steps h3 { margin: 0 0 8px; font-size: 16px; }
.steps p { margin: 0; color: var(--muted); line-height: 1.6; }

.pricing-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.price-card {
  border: 1px solid var(--border);
  background: rgba(15, 26, 48, 0.40);
  border-radius: 18px;
  padding: 18px;
  position: relative;
}
.price-card.featured {
  border-color: rgba(94, 234, 212, 0.55);
  box-shadow: 0 20px 60px rgba(94, 234, 212, 0.08), var(--shadow);
}
.badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(94, 234, 212, 0.16);
  border: 1px solid rgba(94, 234, 212, 0.35);
  color: rgba(94, 234, 212, 0.95);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}
.price { font-weight: 900; font-size: 22px; margin: 8px 0 6px; }
.muted { color: var(--muted); }
.price-card ul { margin: 12px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.7; }

.quote {
  margin: 0;
  border: 1px solid var(--border);
  background: rgba(15, 26, 48, 0.40);
  border-radius: 18px;
  padding: 18px;
}
.quote blockquote {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
}
.quote figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.faq {
  border: 1px solid var(--border);
  background: rgba(15, 26, 48, 0.40);
  border-radius: 16px;
  padding: 14px 16px;
  margin-top: 12px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq-body { margin-top: 10px; color: var(--muted); line-height: 1.6; }

.contact { padding-bottom: 70px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}
.contact-details {
  margin-top: 14px;
  border: 1px solid var(--border);
  background: rgba(15, 26, 48, 0.35);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}
.contact-form { display: grid; gap: 12px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: rgba(7, 11, 20, 0.75);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .proof-inner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

}

