/* ===================================================
   NEXOCONTABLE · Design System
   Based on Acctual DESIGN.md — light, achromatic, teal accent
   =================================================== */

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: var(--nav-height, 68px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* --- DESIGN TOKENS --- */
:root {
  /* Colors */
  --color-canvas-white:  #ffffff;
  --color-ink-black:     #000000;
  --color-graphite:      #0f0f0f;
  --color-deep-slate:    #1e1e1e;
  --color-ash-gray:      #8d8d8d;
  --color-button-black:  #0d111b;
  --color-sky-teal:      #0098f2;
  --color-hot-pink:      #f200ca;
  --color-vivid-violet:  #6d56fc;
  --color-subtle-cream:  #f7fafc;
  --color-border:        rgba(0, 0, 0, 0.08);
  --color-border-focus:  rgba(0, 152, 242, 0.4);

  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-caveat:  'Caveat', cursive;

  /* Type scale */
  --text-caption:    12px;
  --text-body-sm:    14px;
  --text-body:       16px;
  --text-subheading: 20px;
  --text-heading:    32px;
  --text-heading-lg: 40px;
  --text-display:    64px;

  --leading-caption:    1.2;
  --leading-body-sm:    1.43;
  --leading-body:       1.5;
  --leading-subheading: 1.25;
  --leading-heading:    1.21;
  --leading-heading-lg: 1.2;
  --leading-display:    1.13;

  --tracking-subheading: -0.24px;
  --tracking-heading:    -0.64px;
  --tracking-heading-lg: -1.2px;
  --tracking-display:    -2.368px;

  /* Weights */
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;

  /* Spacing */
  --sp-4:   4px;
  --sp-8:   8px;
  --sp-12:  12px;
  --sp-16:  16px;
  --sp-20:  20px;
  --sp-24:  24px;
  --sp-32:  32px;
  --sp-40:  40px;
  --sp-48:  48px;
  --sp-64:  64px;
  --sp-80:  80px;
  --sp-96:  96px;

  /* Radii */
  --radius-cards:   20px;
  --radius-badges:  1250px;
  --radius-images:  32px;
  --radius-buttons: 100px;
  --radius-input:   10px;
  --radius-icon:    12px;

  /* Shadows */
  --shadow-subtle:   rgba(0, 0, 0, 0.06) 0px 2.5px 2.5px 0px;
  --shadow-card:     rgba(0, 0, 0, 0.08) 0px 4px 16px 0px;
  --shadow-card-hover: rgba(0, 0, 0, 0.12) 0px 8px 32px 0px;
  --shadow-btn:      rgb(36, 38, 40) 0px 0px 0px 1px, rgba(27, 28, 29, 0.48) 0px 1px 2px 0px;

  /* Layout */
  --page-max-width: 1200px;
  --nav-height:     68px;
}

/* ===================================================
   BASE
   =================================================== */

body {
  font-family: var(--font-primary);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-graphite);
  background: var(--color-canvas-white);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-16);
  z-index: 9999;
  padding: var(--sp-8) var(--sp-16);
  background: var(--color-button-black);
  color: var(--color-canvas-white);
  border-radius: var(--radius-buttons);
  font-size: var(--text-body-sm);
  transition: top 0.2s;
}
.skip-link:focus { top: var(--sp-16); }

/* Container */
.container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--sp-24);
}

/* ===================================================
   SCROLL SNAP — sections
   =================================================== */

.hero,
.section,
.footer {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

/* ===================================================
   NAVIGATION
   =================================================== */

#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}

#navbar.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-subtle);
}

.nav-container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--sp-24);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-32);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-shrink: 0;
}

.nav-logo img { height: 32px; width: auto; }

.nav-brand {
  font-size: var(--text-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-ink-black);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: var(--sp-32);
  margin-left: auto;
}

.nav-link {
  font-size: var(--text-body-sm);
  font-weight: var(--fw-regular);
  color: var(--color-ash-gray);
  transition: color 0.15s;
  position: relative;
}

.nav-link:hover,
.nav-link.active { color: var(--color-ink-black); }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-sky-teal);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
}

.nav-phone {
  font-size: var(--text-body-sm);
  color: var(--color-ash-gray);
  transition: color 0.15s;
}
.nav-phone:hover { color: var(--color-ink-black); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-8);
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink-black);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   BUTTONS
   =================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  border-radius: var(--radius-buttons);
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  font-size: var(--text-body-sm);
  padding: 6px 14px;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s, box-shadow 0.15s;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-button-black);
  color: var(--color-canvas-white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { opacity: 0.82; }

.btn-ghost {
  background: transparent;
  color: var(--color-graphite);
  border: 1px solid var(--color-border);
}
.btn-ghost:hover {
  background: var(--color-subtle-cream);
  border-color: rgba(0, 0, 0, 0.14);
}

.btn-lg { padding: 13px 26px; font-size: var(--text-body); }
.btn-full { width: 100%; justify-content: center; }

/* ===================================================
   BADGE
   =================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  padding: 5px 14px;
  border-radius: var(--radius-badges);
  background: var(--color-subtle-cream);
  border: 1px solid var(--color-border);
  font-size: var(--text-caption);
  color: var(--color-ash-gray);
  font-weight: var(--fw-medium);
  letter-spacing: 0.01em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-sky-teal);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ===================================================
   SECTION SHARED
   =================================================== */

.section { padding: var(--sp-96) 0; }
.section-cream { background: var(--color-subtle-cream); }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-64);
}

.section-eyebrow {
  font-size: var(--text-caption);
  font-weight: var(--fw-medium);
  color: var(--color-sky-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-12);
}

.section-header h2 {
  font-size: var(--text-heading);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--color-ink-black);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-16);
}

.section-desc {
  font-size: var(--text-body);
  color: var(--color-ash-gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: var(--leading-body);
}

/* ===================================================
   HERO
   =================================================== */

.hero {
  padding: calc(var(--nav-height) + var(--sp-80)) 0 var(--sp-96);
  background-color: var(--color-canvas-white);
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.042) 1px, transparent 1px);
  background-size: 28px 28px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-24);
}

.hero-title {
  font-size: var(--text-display);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  color: var(--color-ink-black);
  font-weight: var(--fw-semibold);
}

.hero-desc {
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-deep-slate);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: var(--sp-12);
  flex-wrap: wrap;
  justify-content: center;
}

.feature-list {
  display: flex;
  gap: var(--sp-24);
  flex-wrap: wrap;
  justify-content: center;
  padding-top: var(--sp-8);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  font-size: var(--text-body-sm);
  color: var(--color-graphite);
  font-weight: var(--fw-regular);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-32);
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-hint span {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--color-ash-gray);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%   { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 16px; }
}

/* ===================================================
   SERVICES
   =================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-24);
}

.service-card {
  background: var(--color-canvas-white);
  border-radius: var(--radius-cards);
  padding: var(--sp-32);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--color-subtle-cream);
  border-radius: var(--radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-graphite);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: var(--text-subheading);
  line-height: var(--leading-subheading);
  letter-spacing: var(--tracking-subheading);
  color: var(--color-ink-black);
  font-weight: var(--fw-semibold);
}

.service-card p {
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
  color: var(--color-deep-slate);
  flex: 1;
}

.service-link {
  font-size: var(--text-body-sm);
  color: var(--color-sky-teal);
  font-weight: var(--fw-medium);
  transition: opacity 0.15s;
  align-self: flex-start;
}
.service-link:hover { opacity: 0.7; }

/* ===================================================
   VALUE PROPS
   =================================================== */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.value-card {
  padding: var(--sp-40);
  border-left: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}
.value-card:first-child { border-left: none; }

.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 152, 242, 0.07);
  border-radius: var(--radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card h3 {
  font-size: var(--text-subheading);
  line-height: var(--leading-subheading);
  color: var(--color-ink-black);
  font-weight: var(--fw-semibold);
}

.value-card p {
  font-size: var(--text-body-sm);
  color: var(--color-deep-slate);
  line-height: var(--leading-body);
}

/* ===================================================
   TOOLS
   =================================================== */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}

.tool-card {
  background: var(--color-canvas-white);
  border-radius: var(--radius-cards);
  padding: var(--sp-32);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--sp-24);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.tool-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.tool-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-12);
}

.tool-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(0, 152, 242, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sky-teal);
  flex-shrink: 0;
}

.tool-badge {
  padding: 3px 10px;
  border-radius: var(--radius-badges);
  background: var(--color-subtle-cream);
  border: 1px solid var(--color-border);
  font-size: var(--text-caption);
  color: var(--color-ash-gray);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.tool-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  flex: 1;
}

.tool-content h3 {
  font-size: var(--text-subheading);
  line-height: var(--leading-subheading);
  color: var(--color-ink-black);
  font-weight: var(--fw-semibold);
}

.tool-content p {
  font-size: var(--text-body-sm);
  color: var(--color-deep-slate);
  line-height: var(--leading-body);
}

/* ===================================================
   CONTACT
   =================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: var(--sp-80);
  align-items: start;
}

.contact-info .section-eyebrow { margin-bottom: var(--sp-12); }

.contact-info h2 {
  font-size: var(--text-heading-lg);
  line-height: var(--leading-heading-lg);
  letter-spacing: var(--tracking-heading-lg);
  color: var(--color-ink-black);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-16);
}

.contact-desc {
  font-size: var(--text-body);
  color: var(--color-ash-gray);
  line-height: var(--leading-body);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
  margin-top: var(--sp-32);
  font-style: normal;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  font-size: var(--text-body-sm);
  color: var(--color-graphite);
  transition: color 0.15s;
}
.contact-detail svg { color: var(--color-ash-gray); flex-shrink: 0; }
.contact-detail:hover { color: var(--color-sky-teal); }
.contact-detail:hover svg { color: var(--color-sky-teal); }

.contact-services {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
  margin-top: var(--sp-32);
  padding-top: var(--sp-32);
  border-top: 1px solid var(--color-border);
}

.contact-services li {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  font-size: var(--text-body-sm);
  color: var(--color-graphite);
}

/* ===================================================
   FORM
   =================================================== */

.contact-form-wrap {
  background: var(--color-canvas-white);
  border-radius: var(--radius-cards);
  padding: var(--sp-40);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-20);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.form-group label {
  font-size: var(--text-body-sm);
  color: var(--color-graphite);
  font-weight: var(--fw-medium);
}

.required { color: var(--color-sky-teal); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-primary);
  font-size: var(--text-body-sm);
  color: var(--color-graphite);
  background: var(--color-canvas-white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-input);
  padding: 11px 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  line-height: var(--leading-body);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-ash-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-sky-teal);
  box-shadow: 0 0 0 3px rgba(0, 152, 242, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #dc2626;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%238d8d8d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-feedback {
  border-radius: var(--radius-input);
  padding: var(--sp-16);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
}

.form-feedback.success {
  background: rgba(0, 152, 242, 0.06);
  color: #0076c0;
  border: 1px solid rgba(0, 152, 242, 0.2);
}

.form-feedback.error {
  background: rgba(220, 38, 38, 0.05);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.form-note {
  font-size: var(--text-caption);
  color: var(--color-ash-gray);
  text-align: center;
  line-height: var(--leading-body);
}

.form-contact-hint {
  font-size: var(--text-caption);
  color: var(--color-ash-gray);
  margin-top: calc(var(--sp-8) * -1);
}

/* Submit button loading state */
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===================================================
   FOOTER
   =================================================== */

.footer {
  background: var(--color-button-black);
  padding: var(--sp-64) 0 var(--sp-40);
}

.footer-top {
  display: flex;
  gap: var(--sp-80);
  padding-bottom: var(--sp-48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand { max-width: 260px; }

.footer-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: var(--sp-16);
}

.footer-tagline {
  font-size: var(--text-body-sm);
  color: rgba(255, 255, 255, 0.45);
  line-height: var(--leading-body);
}

.footer-nav {
  display: flex;
  gap: var(--sp-64);
  flex: 1;
}

.footer-col h4 {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-20);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

.footer-col a {
  font-size: var(--text-body-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--color-canvas-white); }

.footer-bottom {
  padding-top: var(--sp-32);
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.footer-bottom p,
.footer-bottom a {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a:hover { color: rgba(255, 255, 255, 0.6); }

.footer-legal { color: rgba(255, 255, 255, 0.2) !important; }

/* ===================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   =================================================== */

@media (max-width: 1024px) {
  .hero-title { font-size: 48px; letter-spacing: -1.2px; }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-48);
  }
  .contact-info h2 {
    font-size: var(--text-heading);
    letter-spacing: var(--tracking-heading);
  }

  .footer-top {
    flex-direction: column;
    gap: var(--sp-48);
  }
  .footer-brand { max-width: 100%; }
}

/* ===================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   =================================================== */

@media (max-width: 768px) {
  .section { padding: var(--sp-64) 0; }

  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    background: var(--color-canvas-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-32);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: var(--text-subheading); color: var(--color-ink-black); }
  .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-title { font-size: 36px; letter-spacing: -0.8px; line-height: 1.18; }
  .feature-list { flex-direction: column; align-items: flex-start; width: 100%; max-width: 280px; }
  .hero-scroll-hint { display: none; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .tools-grid    { grid-template-columns: 1fr; }
  .value-grid    { grid-template-columns: 1fr; }

  .value-card {
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding: var(--sp-32) 0;
  }
  .value-card:first-child { border-top: none; padding-top: 0; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: var(--sp-24); }

  /* Section header */
  .section-header h2 { font-size: var(--text-heading); }

  /* Footer */
  .footer-nav { flex-direction: column; gap: var(--sp-32); }
  .footer-top { gap: var(--sp-40); }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-16); }
  .hero-title { font-size: 30px; }
  .nav-brand { display: none; }
  .hero-content { gap: var(--sp-20); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
