/* Resume Architect — design tokens from Revenue-Grade Automation system */
:root {
  --color-midnight-ink: #202020;
  --color-cloud-canvas: #f5f5f5;
  --color-paper-white: #ffffff;
  --color-muted-ash: #333333;
  --color-ash-soft: #5b5b5b;
  --color-ghost-border: #e7e3f5;
  --color-ghost-border-light: #f7f5fd;
  /* Primary brand: indigo-navy (Notion/Linear-feel). Var name kept for backwards compatibility. */
  --color-electric-violet: #1F2A5C;
  --color-electric-violet-hover: #2A3870;
  --color-brand-tint: rgba(31, 42, 92, 0.08);
  --color-brand-tint-strong: rgba(31, 42, 92, 0.14);

  --font-display: 'Montserrat', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --text-caption: 14px;
  --text-body: 16px;
  --text-subheading: 18px;
  --text-heading-sm: 20px;
  --text-heading: 26px;
  --text-heading-lg: 36px;
  --text-display: 48px;
  --text-display-xl: 64px;

  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-16: 16px;
  --spacing-20: 20px;
  --spacing-24: 24px;
  --spacing-32: 32px;
  --spacing-40: 40px;
  --spacing-48: 48px;
  --spacing-80: 80px;
  --spacing-96: 96px;
  --spacing-176: 176px;

  --page-max-width: 1200px;
  --content-max-width: 720px;
  --section-gap: 40px;
  --card-padding: 20px;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 6px; /* pills retired — kept name for backwards compat, now a small radius */
  --radius-inputs: 6px;

  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 1px rgba(15, 23, 42, 0.03);
  --shadow-elevated: 0 1px 2px rgba(15, 23, 42, 0.04), 0 10px 30px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--color-paper-white);
  color: var(--color-midnight-ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--color-midnight-ink); text-decoration: none; }
a:hover { color: var(--color-electric-violet); }

/* Layout container */
.container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-32);
}
@media (max-width: 720px) {
  .container { padding: 0 var(--spacing-20); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(31, 42, 92, 0.12);
  box-shadow: 0 1px 0 rgba(31, 42, 92, 0.02), 0 4px 16px rgba(31, 42, 92, 0.04);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--spacing-24);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.4px;
  color: var(--color-midnight-ink);
}
.brand__logo {
  height: 36px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .brand__logo { height: 30px; }
}
.footer__brand-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  border-radius: 6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  position: relative;
  font-size: var(--text-caption);
  font-weight: 500;
  color: #3a3f55;
  background: transparent;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: color 120ms ease, background 120ms ease;
}
.nav a:hover {
  color: var(--color-electric-violet);
  background: rgba(31, 42, 92, 0.06);
}
.nav a.is-active {
  color: var(--color-electric-violet);
  background: transparent;
  font-weight: 600;
}
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -18px;
  height: 2px;
  background: var(--color-electric-violet);
  border-radius: 2px;
}

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 880px) {
  .nav { display: none; flex-direction: column; align-items: stretch; gap: 4px; position: absolute; right: var(--spacing-20); top: 64px; background: var(--color-paper-white); border: 1px solid var(--color-ghost-border); padding: 12px; border-radius: var(--radius-lg); min-width: 240px; }
  .nav.is-open { display: flex; }
  .nav a { text-align: left; background: transparent; padding: 10px 12px; }
  .nav a.is-active { background: var(--color-midnight-ink); color: var(--color-paper-white); }
  .nav-toggle { display: inline-block; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 11px 18px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.btn:focus-visible { outline: 2px solid var(--color-electric-violet); outline-offset: 2px; }
.btn--primary {
  background: var(--color-electric-violet);
  color: var(--color-paper-white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.btn--primary:hover { background: var(--color-electric-violet-hover); color: var(--color-paper-white); }
.btn--secondary { background: var(--color-midnight-ink); color: var(--color-paper-white); }
.btn--secondary:hover { background: #000; color: var(--color-paper-white); }
.btn--ghost { background: var(--color-paper-white); color: var(--color-midnight-ink); border-color: var(--color-ghost-border); }
.btn--ghost:hover { background: var(--color-cloud-canvas); color: var(--color-midnight-ink); border-color: #d8d3ea; }
.btn--sm { padding: 7px 12px; font-size: 13px; border-radius: var(--radius-md); }
.btn[disabled], .btn.is-disabled { opacity: 0.6; cursor: not-allowed; }

/* Hero with engineered grid background */
.hero {
  padding: 120px 0 104px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(245,245,245,0.78) 0%, rgba(245,245,245,0.62) 45%, rgba(245,245,245,0.92) 100%),
    url('/public/images/hero-office.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(32,32,32,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 70%);
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}
.hero__inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.hero__eyebrow {
  display: inline-block;
  color: var(--color-electric-violet);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__eyebrow .dot { display: none; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--color-midnight-ink);
  margin: 0 0 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--color-electric-violet);
}
.hero__sub {
  font-size: 20px;
  color: var(--color-muted-ash);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.5;
}
.hero__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Hero split layout (copy + product preview) */
.hero--split { padding: 96px 0 88px; }
.hero__split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}
.hero--split .hero__copy { text-align: left; }
.hero--split .hero__copy .hero__sub { margin-left: 0; margin-right: 0; }
.hero--split .hero__actions { justify-content: flex-start; }
.hero__preview { position: relative; }
@media (max-width: 960px) {
  .hero--split { padding: 80px 0 64px; }
  .hero__split { grid-template-columns: 1fr; gap: 40px; }
  .hero--split .hero__copy { text-align: center; }
  .hero--split .hero__actions { justify-content: center; }
}

/* App preview frame (used for hero + spotlights) */
.app-frame {
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-lg);
  padding: 6px;
  box-shadow: 0 24px 60px -28px rgba(32, 32, 60, 0.30), 0 8px 20px -12px rgba(32, 32, 60, 0.18);
  overflow: hidden;
}
.app-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Feature spotlight rows (image + copy, alternating sides) */
.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 24px 0;
}
.spotlight + .spotlight { margin-top: 32px; }
.spotlight--reverse .spotlight__media { order: 2; }
.spotlight--reverse .spotlight__body { order: 1; }
.spotlight__body .feature__title { font-size: 28px; }
.spotlight__body .feature__body { font-size: 17px; }
@media (max-width: 860px) {
  .spotlight { grid-template-columns: 1fr; gap: 28px; padding: 12px 0; }
  .spotlight + .spotlight { margin-top: 16px; }
  .spotlight--reverse .spotlight__media { order: 0; }
  .spotlight--reverse .spotlight__body { order: 0; }
}

/* Section primitives */
.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
.section--dark { background: var(--color-midnight-ink); color: var(--color-paper-white); }

.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-electric-violet);
  font-weight: 700;
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.section__lead {
  font-size: 18px;
  color: var(--color-muted-ash);
  line-height: 1.55;
  margin: 0;
}
.section--dark .section__lead { color: #c9c9d4; }

/* Cards */
.card {
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.card--canvas { background: var(--color-cloud-canvas); }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 880px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.feature__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-electric-violet);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.feature__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}
.feature__body {
  font-size: 16px;
  color: var(--color-muted-ash);
  line-height: 1.55;
  margin: 0;
}

/* Compact feature tile grid */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tile-grid { grid-template-columns: 1fr; } }
.tile {
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.tile h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.2px;
  margin: 0 0 8px;
  color: var(--color-midnight-ink);
}
.tile p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-muted-ash);
}

/* Audience strip */
.audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 880px) { .audience { grid-template-columns: 1fr 1fr; } }
.audience__item {
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.audience__item h4 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 500; font-size: 18px; letter-spacing: -0.3px; }
.audience__item p { margin: 0; font-size: 14px; color: var(--color-muted-ash); line-height: 1.5; }

/* Invite banner */
.invite {
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.invite__badge {
  display: inline-block;
  color: var(--color-electric-violet);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.invite__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.6px;
  margin: 0 0 12px;
}
.invite__body {
  color: var(--color-muted-ash);
  max-width: 540px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.55;
}

/* Workflow steps */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  align-items: start;
}
.step__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -1px;
  color: var(--color-electric-violet);
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
}
.step p { margin: 0; color: var(--color-muted-ash); line-height: 1.55; }

/* Article cards */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .articles-grid { grid-template-columns: 1fr; } }

.article-card {
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, border-color 160ms ease;
}
.article-card:hover { transform: translateY(-2px); border-color: #d8d3ef; }
.article-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--color-cloud-canvas);
  overflow: hidden;
}
.article-card__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.article-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-card__cat {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-electric-violet);
}
.article-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.4px;
  margin: 0;
  color: var(--color-midnight-ink);
}
.article-card__excerpt {
  color: var(--color-muted-ash);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-ash-soft);
  border-top: 1px solid var(--color-ghost-border);
  padding-top: 14px;
  margin-top: 4px;
}

/* Article reader */
.article-hero {
  padding: 56px 0 32px;
}
.article-hero__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--color-ash-soft);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.article-hero__cat {
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  color: var(--color-electric-violet);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
}
.article-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 auto 24px;
  max-width: 880px;
  text-align: center;
}
.article-hero__image {
  max-width: 1100px;
  margin: 32px auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.article-hero__image img { width: 100%; height: 100%; object-fit: cover; }

.article-body {
  max-width: var(--content-max-width);
  margin: 48px auto;
  padding: 0 var(--spacing-20);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-muted-ash);
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.4px;
  line-height: 1.2;
  color: var(--color-midnight-ink);
  margin: 40px 0 16px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--color-midnight-ink);
  margin: 32px 0 12px;
}
.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol { padding-left: 22px; margin: 0 0 22px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--color-midnight-ink); font-weight: 700; }
.article-body blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--color-electric-violet);
  background: var(--color-paper-white);
  border-radius: var(--radius-lg);
  color: var(--color-midnight-ink);
  font-size: 17px;
}

/* Prose pages */
.prose {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 56px var(--spacing-20) 96px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-muted-ash);
}
.prose h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--color-midnight-ink);
  margin: 0 0 24px;
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.4px;
  color: var(--color-midnight-ink);
  margin: 36px 0 12px;
}
.prose p { margin: 0 0 18px; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 8px; }

/* Related */
.related { padding: 32px 0 96px; }
.related h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.3px;
  text-align: center;
  margin: 0 0 24px;
}

/* Footer */
.site-footer {
  background: var(--color-midnight-ink);
  color: #c9c9d4;
  padding: 64px 0 32px;
  margin-top: 80px;
}
.site-footer a { color: #c9c9d4; }
.site-footer a:hover { color: var(--color-paper-white); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-paper-white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer__brand .brand__mark { background: var(--color-paper-white); }
.footer__brand .brand__mark::before,
.footer__brand .brand__mark::after { background: var(--color-electric-violet); }
.footer__tag { font-size: 14px; color: #9a9ab0; max-width: 280px; line-height: 1.5; }
.footer__col h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a9ab0;
  margin: 0 0 14px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__col a { font-size: 14px; }
.footer__bottom {
  border-top: 1px solid #2c2c2c;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #7a7a8e;
}

/* Capabilities / pillars */
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-ghost-border);
  background: var(--color-cloud-canvas);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-electric-violet);
  flex: 0 0 40px;
  font-family: var(--font-display);
  font-weight: 700;
}

/* Not found */
.notfound {
  max-width: 640px;
  margin: 0 auto;
  padding: 120px var(--spacing-20);
  text-align: center;
}
.notfound h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 80px;
  letter-spacing: -2px;
  margin: 0 0 12px;
}
.notfound p { color: var(--color-muted-ash); margin: 0 0 24px; }

/* ---------- Nav: login + signup ---------- */
.nav__login {
  font-weight: 600;
  color: var(--color-midnight-ink) !important;
}
.nav__login:hover { color: var(--color-electric-violet) !important; }
.nav__login.is-active::after { display: none; }

/* Use compound selector .nav a.nav__cta (0,2,1) so it outranks the generic
   .nav a (0,1,1) rule that otherwise forces background:transparent/dark text
   on the Sign-up CTA. */
.nav a.nav__cta {
  margin-left: 8px;
  padding: 9px 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--color-electric-violet);
  color: var(--color-paper-white);
  border-color: var(--color-electric-violet);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 6px 16px rgba(31, 42, 92, 0.22);
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, border-color 120ms ease;
}
.nav a.nav__cta:hover {
  background: var(--color-electric-violet-hover);
  border-color: var(--color-electric-violet-hover);
  color: var(--color-paper-white);
  transform: translateY(-1px);
  box-shadow: 0 2px 0 rgba(0,0,0,0.04), 0 10px 22px rgba(31, 42, 92, 0.32);
}
.nav a.nav__cta:active { transform: translateY(0); }
.nav a.nav__cta.is-active {
  background: var(--color-electric-violet);
  color: var(--color-paper-white);
  box-shadow: 0 0 0 3px rgba(31, 42, 92, 0.18), 0 6px 16px rgba(31, 42, 92, 0.22);
}
.nav a.nav__cta.is-active::after { display: none; }

@media (max-width: 880px) {
  .nav a.is-active::after { display: none; }
  .nav a.nav__cta { margin-left: 0; box-shadow: 0 4px 12px rgba(31, 42, 92, 0.20); }
}

/* ---------- Invite / CTA actions ---------- */
.invite__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

/* ---------- Auth (login / signup) ---------- */
.auth { padding: 64px 0 96px; }
.auth__card {
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border, #e6e6ee);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(15, 15, 35, 0.04), 0 8px 24px rgba(15, 15, 35, 0.05);
  padding: 40px;
  max-width: 460px;
  margin: 0 auto;
}
.auth__head { margin-bottom: 24px; }
.auth__badge {
  display: inline-block;
  background: rgba(31, 42, 92, 0.08);
  color: var(--color-electric-violet);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.auth__title {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}
.auth__sub { color: var(--color-muted-ash); margin: 0; }
.auth__form { display: flex; flex-direction: column; gap: 18px; }
.auth__submit { width: 100%; margin-top: 4px; }
.auth__alt { text-align: center; color: var(--color-muted-ash); margin: 8px 0 0; font-size: 14px; }
.auth__alt a { color: var(--color-electric-violet); font-weight: 600; }
.auth__alert {
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  margin-bottom: 18px;
  border: 1px solid transparent;
}
.auth__alert--error {
  background: #fdecec;
  border-color: #f5b8b8;
  color: #8a1a1a;
}
.auth__alert--info {
  background: rgba(31, 42, 92, 0.06);
  border-color: rgba(31, 42, 92, 0.25);
  color: #2a2a6b;
}
.auth__alert--success {
  background: #e8f5ec;
  border-color: #b6dcc1;
  color: #18603a;
}
.auth__forgot {
  text-align: center;
  margin: 10px 0 0;
  font-size: 14px;
}
.auth__forgot a {
  color: var(--color-electric-violet);
  font-weight: 600;
}

/* ---------- Form fields ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-deep-ink, #15151f);
}
.field__input {
  font: inherit;
  font-size: 15px;
  padding: 10px 12px;
  border-radius: var(--radius-inputs);
  border: 1px solid var(--color-ghost-border, #d8d8e2);
  background: #fff;
  color: var(--color-deep-ink, #15151f);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field__input:focus {
  outline: none;
  border-color: var(--color-electric-violet);
  box-shadow: 0 0 0 3px rgba(31, 42, 92, 0.18);
}
.field__input--short { max-width: 120px; }
.field__input--textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.5;
  font-family: var(--font-body);
}
.field__input--error { border-color: #c92a2a; }
.field__input--error:focus { box-shadow: 0 0 0 3px rgba(201, 42, 42, 0.18); }
.field__hint { color: var(--color-muted-ash); font-size: 12px; }
.field__error { color: #8a1a1a; font-size: 12px; font-weight: 600; }

@media (max-width: 560px) {
  .auth { padding: 32px 0 64px; }
  .auth__card { padding: 28px 22px; border-radius: 10px; }
  .auth__title { font-size: 24px; }
}

/* ============================================================
   v2: Rich pages, photo cards, big footer
   ============================================================ */

/* ---------- Page header (consistent across subpages) ---------- */
.page-header {
  padding: 96px 0 56px;
  background:
    radial-gradient(1000px 380px at 50% 0%, rgba(31, 42, 92,0.10), transparent 70%),
    var(--color-cloud-canvas);
  border-bottom: 1px solid var(--color-ghost-border);
}
.page-header__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-electric-violet);
  margin-bottom: 16px;
}
.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin: 0 0 18px;
  max-width: 880px;
}
.page-header__lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-ash-soft);
  margin: 0;
  max-width: 720px;
}
@media (max-width: 720px) {
  .page-header { padding: 64px 0 40px; }
}

/* ---------- Feature rows (alternating, used by /features /security) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--color-ghost-border-light);
}
.feature-row:last-of-type { border-bottom: 0; }
.feature-row--reverse .feature-row__copy { order: 2; }
.feature-row--reverse .feature-row__media { order: 1; }
.feature-row__copy h2 { margin-top: 8px; }
.feature-row__media .app-frame,
.feature-row__media .photo-card { margin: 0 auto; }
@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .feature-row--reverse .feature-row__copy,
  .feature-row--reverse .feature-row__media { order: initial; }
}

/* ---------- Photo card (for content imagery) ---------- */
.photo-card {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  box-shadow: 0 1px 2px rgba(15,15,35,0.04), 0 10px 28px rgba(15,15,35,0.06);
}
.photo-card img { display: block; width: 100%; height: auto; }

/* ---------- Check list ---------- */
.check-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  color: var(--color-muted-ash);
  line-height: 1.45;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--color-electric-violet);
  border-bottom: 2px solid var(--color-electric-violet);
  transform: rotate(-45deg);
}

/* ---------- Stories grid (home) ---------- */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story-card {
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15,15,35,0.08);
}
.story-card__media { margin: 0; }
.story-card__media img { width: 100%; height: auto; display: block; }
.story-card__body { padding: 22px 22px 26px; }
.story-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-electric-violet);
  padding: 0;
  margin-bottom: 12px;
}
.story-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin: 0 0 8px;
}
.story-card__body-copy {
  margin: 0;
  color: var(--color-ash-soft);
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 980px) {
  .story-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .story-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA band (full-bleed photo backdrop) ---------- */
.cta-band {
  position: relative;
  padding: 96px 0;
  color: var(--color-paper-white);
  overflow: hidden;
}
.cta-band__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.cta-band__inner { position: relative; z-index: 1; text-align: center; }
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin: 0 0 16px;
  color: var(--color-paper-white);
}
.cta-band__sub {
  font-size: 18px;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.85);
}
.cta-band__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cta-band__ghost {
  background: rgba(255,255,255,0.10);
  color: var(--color-paper-white);
  border-color: rgba(255,255,255,0.35);
}
.cta-band__ghost:hover {
  background: rgba(255,255,255,0.18);
  color: var(--color-paper-white);
}

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}
.price-grid--single {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}
.price-card {
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  border-color: var(--color-electric-violet);
  box-shadow: 0 1px 2px rgba(15,15,35,0.04), 0 14px 38px rgba(31, 42, 92,0.10);
}
.price-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-electric-violet);
  padding: 0;
}
.price-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.4px;
  margin: 14px 0 6px;
}
.price-card__sub { color: var(--color-ash-soft); margin: 0; }
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 22px 0 4px;
}
.price-card__amount {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: -1.5px;
  font-weight: 700;
  line-height: 1;
}
.price-card__period { color: var(--color-ash-soft); font-size: 16px; }
.price-card__note { color: var(--color-ash-soft); font-size: 13px; margin: 0 0 20px; }
.price-card__cta { align-self: flex-start; }
.price-card__list { margin-top: 22px; }
.price-faq {
  margin-top: 56px;
  padding: 32px;
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-xl);
}
.price-faq__title { font-family: var(--font-display); margin: 0 0 18px; letter-spacing: -0.4px; }
.price-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 36px; }
.price-faq__grid h4 { margin: 0 0 6px; font-family: var(--font-display); font-size: 17px; }
.price-faq__grid p { margin: 0; color: var(--color-ash-soft); line-height: 1.55; }
@media (max-width: 880px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-faq__grid { grid-template-columns: 1fr; }
}

/* ---------- Templates ---------- */
.template-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.template-card {
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-xl);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.template-card__preview {
  background: var(--color-cloud-canvas);
  border-radius: var(--radius-lg);
  height: 160px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 18px 16px;
  border: 1px solid var(--color-ghost-border-light);
}
.template-card__lines {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  justify-content: center;
}
.template-card__lines .line {
  height: 6px;
  background: var(--color-ghost-border);
  border-radius: 3px;
  width: 100%;
}
.template-card__lines .line--head { background: var(--color-midnight-ink); height: 8px; width: 55%; }
.template-card__lines .line--sub { background: var(--color-electric-violet); height: 5px; width: 32%; }
.template-card__lines .line--small { height: 6px; width: 28%; margin-top: 6px; background: var(--color-muted-ash); }
.template-card__lines .line--short { width: 60%; }
.template-card__title { font-family: var(--font-display); font-size: 16px; margin: 4px 0 0; letter-spacing: -0.2px; }
.template-card__body { margin: 0; font-size: 14px; color: var(--color-ash-soft); line-height: 1.45; }
.template-callout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
  margin-top: 56px;
  padding: 32px;
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-xl);
}
.template-callout__media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; }
.template-callout__media img { display: block; width: 100%; height: auto; }
@media (max-width: 1100px) { .template-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) {
  .template-grid { grid-template-columns: repeat(2, 1fr); }
  .template-callout { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
}

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 40px; }
.faq__group { display: flex; flex-direction: column; gap: 10px; }
.faq__heading {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.3px;
  margin: 0 0 6px;
}
.faq__item {
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
}
.faq__item + .faq__item { margin-top: 0; }
.faq__q {
  cursor: pointer;
  list-style: none;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-midnight-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-size: 22px;
  color: var(--color-electric-violet);
  line-height: 1;
  font-weight: 400;
}
.faq__item[open] .faq__q::after { content: "−"; }
.faq__a {
  padding: 0 20px 18px;
  color: var(--color-ash-soft);
  line-height: 1.6;
}
.faq__a a { color: var(--color-electric-violet); }

/* ---------- Security grid ---------- */
.security-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.security-card {
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.security-card h4 { margin: 0 0 8px; font-family: var(--font-display); font-size: 17px; letter-spacing: -0.2px; }
.security-card p { margin: 0; color: var(--color-ash-soft); line-height: 1.55; font-size: 15px; }
.security-card a { color: var(--color-electric-violet); }
@media (max-width: 980px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .security-grid { grid-template-columns: 1fr; } }

/* ---------- Changelog ---------- */
.changelog { display: flex; flex-direction: column; gap: 28px; max-width: 820px; }
.changelog__entry {
  padding: 24px 28px;
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-xl);
}
.changelog__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.changelog__date { color: var(--color-ash-soft); font-size: 13px; }
.changelog__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
}
.changelog__tag--major { color: var(--color-electric-violet); }
.changelog__tag--minor { color: var(--color-ash-soft); }
.changelog__title { font-family: var(--font-display); font-size: 20px; letter-spacing: -0.3px; margin: 0 0 6px; }
.changelog__body { margin: 0; color: var(--color-ash-soft); line-height: 1.55; }

/* ============================================================
   Rich footer
   ============================================================ */
.site-footer {
  background: var(--color-midnight-ink);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 28px;
  margin-top: 80px;
}
.site-footer .container { max-width: var(--page-max-width); }
.footer__top {
  display: grid;
  grid-template-columns: 1.15fr 2.85fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-paper-white);
  margin-bottom: 14px;
}
.footer__brand-icon { width: 28px; height: 28px; border-radius: 6px; }
.footer__tag {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.66);
  line-height: 1.55;
  max-width: 360px;
}
.footer__news-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 8px;
  font-weight: 600;
}
.footer__news-row { display: flex; gap: 8px; max-width: 380px; }
.footer__news-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius-inputs);
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.06);
  color: var(--color-paper-white);
  font: inherit;
  font-size: 14px;
}
.footer__news-input::placeholder { color: rgba(255,255,255,0.45); }
.footer__news-input:focus { outline: none; border-color: var(--color-electric-violet); background: rgba(255,255,255,0.10); }
.footer__news-btn { white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.footer__news-btn[disabled] { opacity: 0.85; cursor: progress; }
.footer__news-spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255,255,255,0.45);
  border-top-color: var(--color-paper-white);
  border-radius: 50%;
  animation: footer-news-spin 0.7s linear infinite;
}
@keyframes footer-news-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .footer__news-spinner { animation-duration: 1.6s; }
}
.footer__news-note { margin: 10px 0 0; color: rgba(255,255,255,0.46); font-size: 12px; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-paper-white);
  margin: 0 0 14px;
  font-weight: 700;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  color: rgba(255,255,255,0.66);
  font-size: 14px;
  transition: color 120ms ease;
}
.footer__col a:hover { color: var(--color-paper-white); }

.footer__legal {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__company {
  font-style: normal;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.55;
}
.footer__company strong {
  color: var(--color-paper-white);
  font-weight: 600;
}
.prose-figure {
  margin: 28px 0 32px;
}
.prose-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 560px;
  border-radius: var(--radius-md);
}
.prose-figure--wide img { max-width: 720px; }

.prose-rule {
  border: 0;
  border-top: 1px solid rgba(20, 22, 36, 0.10);
  margin: 40px 0 18px;
}
.prose-imprint {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-muted-ash);
  margin: 0;
}
.footer__bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 18px;
  color: rgba(255,255,255,0.50);
  font-size: 13px;
}
.footer__bar-left, .footer__bar-right { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer__bar-sep { opacity: 0.5; }

@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__cols { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 880px) {
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .site-footer { padding: 48px 0 24px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer__news-row { max-width: none; }
}

.footer__news-confirm {
  margin: 12px 0 0;
  color: var(--color-paper-white);
  font-size: 14px;
  font-weight: 600;
  background: rgba(31, 42, 92,0.18);
  border: 1px solid rgba(31, 42, 92,0.45);
  padding: 10px 14px;
  border-radius: var(--radius-lg);
  max-width: 380px;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.contact-form-card {
  background: var(--color-paper-white);
  border: 1px solid var(--color-ghost-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 1px 0 rgba(31, 42, 92, 0.02), 0 6px 20px rgba(31, 42, 92, 0.04);
}
.contact-info { color: var(--color-midnight-ink); }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 16px;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 15px;
  margin: 20px 0 6px;
}
.contact-info p { color: var(--color-muted-ash); margin: 0 0 8px; line-height: 1.55; }
.contact-info a { color: var(--color-electric-violet); }
.contact-info a:hover { text-decoration: underline; }
.contact-info__address {
  font-style: normal;
  color: var(--color-muted-ash);
  line-height: 1.55;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-card { padding: 24px; }
}


.footer__top {
    display: flex;
}

ul.footlink {
    display: flex;
    width: 100%;
    justify-content: space-between;
}