/* ============================================================
   Hawthorne Rise — Your Online Presence. Elevated.
   Light theme · Mobile-first · Domain-root ready
   ============================================================ */

:root {
  --ink: #0b1220;
  --ink-soft: #1a2740;
  --body: #3d4d63;
  --muted: #6b7c91;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-tint: #eef4fb;

  --cyan: #22d3ee;
  --blue: #3b82f6;
  --blue-deep: #1d4ed8;
  --navy: #0f172a;

  --grad: linear-gradient(135deg, #22d3ee 0%, #3b82f6 55%, #2563eb 100%);
  --grad-soft: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(59, 130, 246, 0.08));

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --maxw: 1140px;

  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 12px;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(59, 130, 246, 0.42); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-deep); transform: translateY(-2px); }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.btn-block { width: 100%; }

.section { padding: 80px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.85rem, 5vw, 2.7rem); margin-bottom: 12px; }
.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; }
.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: block;
  box-shadow: none;
  border: none;
}
.nav-links { display: none; align-items: center; gap: 22px; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--blue-deep); }
.nav-cta {
  background: var(--grad) !important;
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.28);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 4px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 959px) {
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 12px 20px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .nav-links.open { display: flex; opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin-top: 14px; padding: 14px !important; }
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .brand-icon { width: 44px; height: 44px; border-radius: 12px; }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, #000 15%, transparent 75%);
  pointer-events: none;
  opacity: 0.5;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 64px 0 72px;
  max-width: var(--maxw);
  margin-inline: auto;
  text-align: left;
}
.hero-top {
  display: grid;
  gap: 28px;
  align-items: start;
  margin-bottom: 32px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero-brand {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.hero-brand img {
  width: min(96vw, 560px);
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #fff;
}
.hero-copy h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.hero-copy .lead {
  font-size: 1.12rem;
  color: var(--body);
  max-width: 540px;
  margin-bottom: 12px;
}
.hero-copy .sub {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 0;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  padding-top: 4px;
}
@media (min-width: 860px) {
  .hero-top {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: start;
  }
  .hero-brand img {
    width: 100%;
    max-width: none;
  }
}
.hero-pills span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

/* ========== Strip ========== */
.strip {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 4px solid transparent;
  border-image: var(--grad) 1;
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 16px 20px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.82rem;
  text-align: center;
}
.strip .sep { color: var(--cyan); }

/* ========== Services ========== */
.services-grid {
  display: grid;
  gap: 16px;
}
.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}
.service h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service p { font-size: 0.92rem; color: var(--muted); margin-bottom: 14px; flex: 1; }
.service .price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue-deep);
  margin-bottom: 14px;
}
.service ul { display: grid; gap: 6px; margin-bottom: 18px; }
.service ul li {
  position: relative;
  padding-left: 18px;
  font-size: 0.86rem;
  color: var(--body);
}
.service ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ========== Feature blocks ========== */
.feature-block {
  display: grid;
  gap: 28px;
  align-items: start;
  margin-bottom: 56px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-copy h3 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 12px; }
.feature-copy p { margin-bottom: 16px; }
.feature-copy .price-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue-deep);
  margin: 8px 0 18px;
  padding: 8px 16px;
  background: var(--grad-soft);
  border-radius: 100px;
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.chip-list li {
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.check-grid {
  display: grid;
  gap: 8px;
}
.check-grid li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
}
.check-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
}
@media (min-width: 800px) {
  .feature-block { grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .feature-block.reverse .feature-copy { order: 2; }
}

.feature-panel {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.feature-panel::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.2);
  filter: blur(40px);
}
.feature-panel h4 {
  position: relative;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.feature-panel ul { position: relative; display: grid; gap: 8px; }
.feature-panel li { font-size: 0.9rem; padding-left: 16px; position: relative; }
.feature-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ========== Hosting ========== */
.host-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.host-includes li {
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.plans-grid {
  display: grid;
  gap: 18px;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.plan.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 14px;
  right: -32px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(40deg);
}
.plan-tier {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 8px;
}
.plan h3 { font-size: 1.3rem; margin-bottom: 10px; }
.plan-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.plan-price span { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.plan .desc { font-size: 0.92rem; color: var(--muted); margin: 12px 0 18px; }
.plan ul { display: grid; gap: 8px; margin-bottom: 22px; flex: 1; }
.plan ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
}
.plan ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: inset 0 0 0 2.5px #fff;
}
@media (min-width: 800px) {
  .plans-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========== Pricing table ========== */
.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.pricing-table th {
  font-family: var(--font-head);
  font-weight: 600;
  background: var(--bg-soft);
  color: var(--ink);
}
.pricing-table td:last-child,
.pricing-table th:last-child {
  text-align: right;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--blue-deep);
  white-space: nowrap;
}
.pricing-table tr:last-child td { border-bottom: none; }

/* ========== Why ========== */
.why-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.why-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.why-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--ink);
}
@media (min-width: 800px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ========== CTA ========== */
.cta {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 90% 40%, rgba(34, 211, 238, 0.22), transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(59, 130, 246, 0.18), transparent 55%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-bottom: 14px;
}
.cta p { margin-bottom: 28px; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ========== Contact form ========== */
.contact-grid {
  display: grid;
  gap: 36px;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 14px;
}
.field { display: grid; gap: 6px; }
.field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}
.form-note {
  text-align: center;
  font-weight: 600;
  color: var(--blue-deep);
  font-size: 0.92rem;
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}

/* ========== Footer ========== */
.site-footer {
  background: var(--navy);
  color: #94a3b8;
  padding-top: 48px;
  border-top: 3px solid transparent;
  border-image: var(--grad) 1;
}
.footer-inner {
  display: grid;
  gap: 28px;
  padding-bottom: 28px;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex: none;
}
.footer-brand h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.footer-brand p { font-size: 0.9rem; max-width: 320px; }
.footer-tag {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-content: start;
}
.footer-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  color: #cbd5e1;
  transition: color 0.18s ease;
}
.footer-nav a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 18px 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr; }
  .footer-nav { justify-content: flex-end; }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
