@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Instrument+Serif:ital@1&display=swap');

:root {
  --bg: #fffaf5;
  --surface: #ffffff;
  --surface-soft: rgba(255, 250, 245, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.95);
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-faint: #64748b;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.12);
  --primary: #f9550e;
  --primary-strong: #e94a08;
  --primary-soft: #fff1e1;
  --primary-tint: rgba(249, 85, 14, 0.18);
  --primary-border: rgba(249, 85, 14, 0.2);
  --primary-gradient: linear-gradient(135deg, #f9550e 0%, #ffc561 100%);
  --primary-gradient-hover: linear-gradient(135deg, #f04f0b 0%, #ffbb51 100%);
  --primary-text: #ffffff;
  --shadow-soft: 0 10px 32px rgba(249, 85, 14, 0.08);
  --shadow-large: 0 18px 56px rgba(249, 85, 14, 0.12);
  --radius-xl: 1.5rem;
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --radius-pill: 999px;
  --font-sans: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-accent: "Instrument Serif", serif;
  --page-max: 1200px;
  --section-pad: clamp(4rem, 8vw, 8rem);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-sans);
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at top center, rgba(255, 197, 97, 0.24) 0%, rgba(255, 197, 97, 0) 40%),
    url("./assets/grid.svg");
  background-repeat: no-repeat, repeat;
  background-size: 100% 34rem, 40px 40px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

p,
ul {
  margin: 0;
}

ul {
  padding-left: 1.15rem;
}

code {
  padding: 0.18rem 0.38rem;
  border-radius: 999px;
  background: rgba(23, 24, 28, 0.07);
  font-size: 0.92em;
}

.section-shell {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding-inline: clamp(1.2rem, 3vw, 2.4rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1.2rem, 5vw, 4rem);
  background: var(--surface-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.site-header.is-scrolled {
  padding: 0.85rem clamp(1.2rem, 5vw, 4rem);
  background: var(--surface-strong);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
  max-width: min(100%, 30rem);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: clamp(2.9rem, 3.8vw, 3.5rem);
  height: clamp(2.9rem, 3.8vw, 3.5rem);
  object-fit: contain;
  flex-shrink: 0;
}

.brand-mark {
  background: var(--primary);
  color: #000;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px var(--primary-tint);
}

.brand-name {
  font-size: clamp(0.88rem, 0.76rem + 0.4vw, 1.02rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  white-space: normal;
  max-width: 26ch;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.45rem;
  min-width: 0;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1.5px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-icon {
  width: 1.2em;
  height: 1.2em;
  object-fit: contain;
  margin-right: 0.45em;
  flex-shrink: 0;
}

.header-cta,
.primary-button {
  background: var(--primary-gradient);
  color: var(--primary-text);
  border: 1px solid transparent;
  box-shadow: 0 10px 24px var(--primary-tint);
}

.header-cta:hover,
.primary-button:hover {
  background: var(--primary-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(249, 85, 14, 0.22);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  border: 1px solid var(--primary-border);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.secondary-button:hover {
  background: rgba(249, 85, 14, 0.08);
  border-color: rgba(249, 85, 14, 0.28);
  transform: translateY(-2px);
}

.hero,
.advantages,
.how-it-works,
.use-cases,
.privacy,
.faq,
.final-cta {
  padding-top: var(--section-pad);
}

.hero {
  padding-top: clamp(0.5rem, 1.5vw, 1.5rem);
  padding-bottom: 1rem;
  text-align: center;
  overflow: hidden;
}

.hero-shell {
  max-width: 1100px;
}

.hero-pill {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: linear-gradient(135deg, rgba(249, 85, 14, 0.12) 0%, rgba(255, 197, 97, 0.24) 100%);
  color: var(--primary-strong);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.headline-accent {
  display: inline-block;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4em;
  margin-left: 0.5rem;
  line-height: 1;
}

.editable-box {
  position: relative;
  display: inline-block;
  border: 1.5px solid #4285f4;
  padding: 0.1rem 0.4rem;
  margin: 0 0.15rem;
  background: rgba(66, 133, 242, 0.04);
  border-radius: 1px;
  cursor: text;
  user-select: none;
}

/* Resize Handles */
.handle {
  position: absolute;
  width: 7px;
  height: 7px;
  background: #fff;
  border: 1.2px solid #4285f4;
  z-index: 2;
}

.handle.nw {
  top: -4px;
  left: -4px;
}

.handle.n {
  top: -4px;
  left: calc(50% - 3.5px);
}

.handle.ne {
  top: -4px;
  right: -4px;
}

.handle.w {
  top: calc(50% - 3.5px);
  left: -4px;
}

.handle.e {
  top: calc(50% - 3.5px);
  right: -4px;
}

.handle.sw {
  bottom: -4px;
  left: -4px;
}

.handle.s {
  bottom: -4px;
  left: calc(50% - 3.5px);
}

.handle.se {
  bottom: -4px;
  right: -4px;
}

/* Rotation Handle */
.rotate-handle {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.rotate-line {
  width: 1.5px;
  height: 15px;
  background: #4285f4;
}

.rotate-icon {
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1.2px solid #4285f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
}

.rotate-icon::after {
  content: "⟳";
  font-size: 10px;
  color: #4285f4;
  font-weight: bold;
}

/* Blinking Cursor Simulation */
.editable-box::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 15%;
  bottom: 15%;
  width: 1.5px;
  background: #4285f4;
  animation: cursor-blink 1s infinite steps(1);
}

@keyframes cursor-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-subheadline {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1rem;
  margin-top: 2.2rem;
}

.hero-visual {
  margin-top: 2.5rem;
  width: 100%;
  position: relative;
  text-align: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Removed legacy CSS-only slide cards */

.section-intro {
  margin-bottom: 4rem;
}

.section-intro-centered {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  color: var(--primary-strong);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-intro h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-intro p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}

.advantage-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.advantage-item {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.icon-shell {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, rgba(249, 85, 14, 0.12) 0%, rgba(255, 197, 97, 0.28) 100%);
  color: var(--primary-strong);
  border: 1px solid var(--primary-border);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-shell svg {
  width: 1.75rem;
  height: 1.75rem;
}

.advantage-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.advantage-item p {
  color: var(--ink-soft);
  line-height: 1.6;
}

.steps-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.step-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 1.25rem;
  border: 1px solid var(--line);
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: var(--primary-gradient);
  color: var(--primary-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  box-shadow: 0 10px 22px rgba(249, 85, 14, 0.18);
}

.step-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-item p {
  color: var(--ink-soft);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.use-case-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.use-case-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.use-case-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.use-case-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.privacy-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.privacy-item {
  background: #fff;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
}

.privacy-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.privacy-item p {
  color: var(--ink-soft);
}

.limited-use {
  padding-top: 1.5rem;
}

.limited-use-note {
  max-width: 820px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  border: 1px solid var(--primary-border);
  border-radius: 0.9rem;
  background: rgba(255, 244, 232, 0.9);
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: center;
}

.limited-use-note strong {
  color: var(--ink);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  padding: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary-strong);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--ink-soft);
}

.quality-list {
  padding: 0 1.5rem 1.5rem 2.5rem;
  display: grid;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.final-cta-shell {
  background:
    radial-gradient(circle at top right, rgba(255, 197, 97, 0.16) 0%, rgba(255, 197, 97, 0) 30%),
    linear-gradient(145deg, #171717 0%, #1f2937 62%, #2a1408 100%);
  color: #fff;
  padding: 5rem 2rem;
  border-radius: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 64px rgba(42, 20, 8, 0.2);
}

.final-cta-shell h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.final-cta-shell p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.final-cta .secondary-button {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 197, 97, 0.26);
  color: #fff;
}

.final-cta .secondary-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 197, 97, 0.42);
}

.site-footer {
  padding: 4rem 2.4rem 2.4rem;
  border-top: 1px solid var(--line);
  background: #fcfcfc;
}

.footer-content {
  width: min(100%, var(--page-max));
  margin: 0 auto 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-info {
  flex: 1 1 300px;
}

.footer-brand {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.footer-info p {
  color: var(--ink-soft);
  max-width: 320px;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--ink-soft);
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-strong);
}

.footer-bottom {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 0.85rem;
  text-align: center;
}

.footer-bottom p + p {
  margin-top: 0.4rem;
}

.footer-disclaimer {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink-faint);
  font-size: 0.82rem;
  line-height: 1.55;
}

.heart-icon {
  color: #e25555;
}

/* Legal Pages */
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 80vh;
}

.legal-shell {
  max-width: 800px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.legal-eyebrow {
  color: var(--primary-strong);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.legal-shell h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.legal-meta {
  color: var(--ink-faint);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.legal-lead {
  font-size: 1.25rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line);
}

.legal-section {
  margin-bottom: 3.5rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.legal-section p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-section ul {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.75rem;
}

.legal-section strong {
  color: var(--ink);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.early-access-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 2rem;
  background-image:
    radial-gradient(circle at top center, rgba(255, 197, 97, 0.24) 0%, rgba(255, 197, 97, 0) 42%),
    url("./assets/grid.svg");
  background-repeat: no-repeat, repeat;
  background-size: 100% 28rem, 40px 40px;
}

.early-access-shell {
  width: min(100%, 600px);
  margin: auto auto 0;
}

.brand-standalone {
  margin-bottom: 2rem;
  justify-content: center;
}

.early-access-panel {
  background: #fff;
  padding: 3rem;
  border-radius: 2rem;
  border: 1px solid rgba(249, 85, 14, 0.12);
  box-shadow: var(--shadow-large);
  text-align: center;
}

.early-access-panel h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.early-access-panel p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.placeholder-checklist {
  text-align: left;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 1rem;
  margin: 2rem 0;
}

.placeholder-checklist p {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.placeholder-checklist ul {
  padding-left: 1.25rem;
}

.placeholder-checklist li {
  margin-bottom: 0.5rem;
}

.format-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tool-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.tool-chip svg {
  width: 1.25rem;
  height: 1.25rem;
}

.flow-arrow {
  color: var(--primary-strong);
  font-weight: 700;
}

.hero-trust {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-top: 2rem;
}

.tool-chip {
  border: 1px solid var(--primary-border);
  background: rgba(255, 244, 232, 0.96);
}

/* Media Queries */
@media (max-width: 1024px) {
  .site-header {
    padding: 1rem 2rem;
  }
}

@media (max-width: 920px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem 1rem;
    padding: 0.9rem 1.2rem;
  }

  .site-header.is-scrolled {
    padding: 0.9rem 1.2rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    gap: 1.1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .header-cta {
    min-height: 2.85rem;
    padding-inline: 1.15rem;
    white-space: nowrap;
    justify-self: end;
  }
}

@media (max-width: 768px) {
  .site-header {
    gap: 0.75rem 0.85rem;
    padding: 0.85rem 1rem;
  }

  .site-header.is-scrolled {
    padding: 0.85rem 1rem;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-logo {
    width: 2.7rem;
    height: 2.7rem;
  }

  .brand-name {
    max-width: 17ch;
    font-size: 0.88rem;
    line-height: 1.02;
    white-space: normal;
  }

  .site-nav {
    gap: 0.95rem;
    font-size: 0.88rem;
  }

  .header-cta {
    min-height: 2.65rem;
    padding-inline: 0.95rem;
    font-size: 0.88rem;
  }

  .hero h1 {
    font-size: 3rem;
  }


  .advantage-shell,
  .use-case-grid,
  .privacy-shell,
  .steps-shell {
    grid-template-columns: 1fr;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .limited-use {
    padding-top: 1.1rem;
  }

  .limited-use-note {
    padding: 0.9rem 1rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
  }

  .brand {
    justify-self: start;
  }

  .header-cta {
    width: 100%;
    justify-self: stretch;
  }

  .site-nav {
    gap: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

*,
*::before,
*::after {
  animation: none !important;
  transition: none !important;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}
