/* === Brand system === */
:root {
  --violet: #8062EF;
  --violet-dark: #281877;
  --magenta: #A24F96;
  --bg: #FFFFFF;
  --bg-soft: #F7F6FB;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --border: #EAEAEA;
  --shadow-sm: 0 2px 8px rgba(40, 24, 119, 0.06);
  --shadow-md: 0 8px 32px rgba(40, 24, 119, 0.10);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-w: 1200px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--violet); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--violet-dark); }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3 {
  font-weight: 900;
  color: var(--violet-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}
p { margin: 0 0 1em; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* === Eyebrow === */
.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--violet);
  margin: 0 0 12px;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.85); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--violet); color: #fff; }
.btn--primary:hover { background: var(--violet-dark); color: #fff; transform: translateY(-1px); }
.btn--secondary { background: transparent; color: var(--violet); border-color: var(--violet); }
.btn--secondary:hover { background: var(--violet); color: #fff; }
.btn--white { background: #fff; color: var(--violet-dark); }
.btn--white:hover { background: var(--violet-dark); color: #fff; }
.btn--large { padding: 18px 40px; font-size: 1.05rem; }

/* === Nav === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: var(--max-w); margin: 0 auto; }
.nav__logo img { height: 32px; width: auto; }
.nav__menu { display: flex; gap: 28px; }
.nav__menu a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.nav__menu a:hover { color: var(--violet); }
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--violet);
  transition: width 0.2s ease;
}
.nav__menu a:hover::after { width: 100%; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--violet-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body { padding-top: 0; }
  body.is-menu-open { overflow: hidden; }
  .nav.is-scrolled,
  .nav.is-menu-open {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: var(--border);
  }
  .nav__menu {
    position: fixed;
    top: 56px; left: 0; right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    padding: 32px 24px 48px;
    gap: 8px;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu a {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    color: var(--violet-dark);
  }
  .nav__menu a::after { display: none; }
  .nav__toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 999px;
    padding: 10px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .nav.is-menu-open .nav__toggle,
  .nav.is-scrolled .nav__toggle {
    background: transparent;
    box-shadow: none;
  }
  .nav__inner { padding: 12px 16px; }
  .nav__logo img {
    height: 30px;
    filter: drop-shadow(0 1px 4px rgba(255,255,255,0.6));
  }
  .nav.is-scrolled .nav__logo img,
  .nav.is-menu-open .nav__logo img { filter: none; }
  .nav__toggle span { background: var(--violet-dark); width: 20px; }
}

/* === Hero === */
.hero {
  padding: 80px 0 96px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F6FB 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--violet);
  margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 24px;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero__accent {
  background: linear-gradient(135deg, var(--violet) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__photo {
  position: relative;
}
.hero__photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  object-fit: cover;
}
.hero__photo::before {
  content: '';
  position: absolute;
  inset: -12px -12px auto auto;
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, var(--violet) 0%, var(--magenta) 100%);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

@media (max-width: 880px) {
  .hero { padding: 0 0 40px; }
  .hero__inner { grid-template-columns: 1fr; gap: 28px; padding: 0; }
  .hero__photo { order: -1; max-width: none; margin: 0 -24px; }
  .hero__photo img { border-radius: 0 0 var(--radius-lg) var(--radius-lg); aspect-ratio: 4/3; box-shadow: none; object-position: center 20%; }
  .hero__photo::before { display: none; }
  .hero__text { padding: 0 24px; }
}

/* === Sections === */
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--accent { padding: 96px 0; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__head h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
.section__lead { font-size: 1.1rem; color: var(--text-muted); margin-top: 12px; }

@media (max-width: 880px) {
  .section { padding: 64px 0; }
  .section__head h2 { font-size: 1.65rem; }
  .newsletter h2 { font-size: 1.75rem; }
}
@media (max-width: 480px) {
  .section__head h2 { font-size: 1.4rem; }
  .newsletter h2 { font-size: 1.5rem; }
  .hero__title { font-size: 1.85rem; }
}

/* === About === */
.about {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.about__text p { font-size: 1.05rem; }
.about__photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.trust {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust li {
  text-align: center;
  padding: 16px 8px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
}
.trust strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--violet);
  line-height: 1;
  margin-bottom: 6px;
}
.trust span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about__photo { order: -1; }
  .trust { grid-template-columns: repeat(2, 1fr); }
}

/* === Newsletter === */
.section--accent {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--accent::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--magenta) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}
.newsletter {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.newsletter h2 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.newsletter h2 br { display: inline; }
.newsletter__lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}
.newsletter__features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter__features li {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.newsletter__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  margin-bottom: 8px;
}
.newsletter__icon svg { width: 22px; height: 22px; }
.newsletter__features strong { color: #fff; font-weight: 700; font-size: 1rem; }
.newsletter__features span { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; line-height: 1.5; }

.newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 12px;
  flex-wrap: wrap;
}
.newsletter__form input {
  flex: 1 1 240px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  font: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--text);
}
.newsletter__form input:focus {
  outline: none;
  border-color: var(--magenta);
}
.newsletter__note { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); margin: 0; }

@media (max-width: 720px) {
  .newsletter__features { grid-template-columns: 1fr; }
}

/* === Services === */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.services--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.services--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.service {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--violet);
}
.service h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.service p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 14px;
  line-height: 1.6;
}

/* Detailed service variant */
.service--detailed { padding: 36px 32px; }
.service__tag {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--violet);
  background: rgba(128, 98, 239, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 16px !important;
  align-self: flex-start;
}
.service__intro {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 18px !important;
}
.service__intro strong { color: var(--violet-dark); font-weight: 700; }
.service__intro em { color: var(--violet); font-style: normal; font-weight: 700; }

.service__topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}
.service__topics-title {
  font-size: 0.78rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--violet);
  margin: 0 0 8px !important;
}
.service__topics ul,
.service__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.service__topics li,
.service__bullets li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}
.service__topics li::before,
.service__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet);
}
.service__bullets li { padding-left: 24px; }

.service__note {
  color: var(--text-muted) !important;
  font-size: 0.85rem !important;
  font-style: italic;
  margin: 0 0 20px !important;
  line-height: 1.5;
}
.service__price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.service__price strong {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--violet-dark);
  line-height: 1;
}
.service__price span {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}
.cta-block {
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
}
.cta-block__lead {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--violet-dark);
  margin-bottom: 20px;
}
.cta-block__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .services, .services--two { grid-template-columns: 1fr; }
}

/* === Community === */
.community { text-align: center; }
.community__features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
@media (max-width: 1100px) {
  .community__features { grid-template-columns: repeat(2, 1fr); }
}
.community__features li {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.community__features li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--violet);
}
.community__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(128, 98, 239, 0.18) 0%, rgba(162, 79, 150, 0.18) 100%);
  color: var(--violet-dark);
  margin-bottom: 14px;
  transition: all 0.3s ease;
}
.community__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.4;
}
.community__features li:hover .community__icon {
  background: linear-gradient(135deg, var(--violet) 0%, var(--magenta) 100%);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(128, 98, 239, 0.35);
}
.community__features strong {
  display: block;
  font-size: 1.05rem;
  color: var(--violet-dark);
  margin-bottom: 4px;
  font-weight: 700;
}
.community__features span { color: var(--text-muted); font-size: 0.93rem; line-height: 1.55; }

@media (max-width: 880px) {
  .community__features { grid-template-columns: 1fr; }
}

/* === Testimonials === */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -8px; left: 20px;
  font-size: 5rem;
  font-weight: 900;
  color: var(--violet);
  opacity: 0.15;
  line-height: 1;
  font-family: 'Raleway', serif;
}
.testimonial p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 16px;
}
.testimonial footer {
  font-weight: 700;
  color: var(--violet);
  font-size: 0.9rem;
}
.testimonials__more {
  text-align: center;
  margin-top: 32px;
  font-size: 1rem;
}
.testimonials__more a {
  color: var(--violet);
  font-weight: 700;
}

@media (max-width: 880px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* === Projects === */
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  color: var(--text);
  transition: all 0.25s ease;
}
.project:hover {
  transform: translateY(-3px);
  border-color: var(--violet);
  box-shadow: var(--shadow-md);
  color: var(--text);
}
.project__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #FAFAFA;
  border-bottom: 1px solid var(--border);
}
.project__visual--logo {
  padding: 32px;
  background: linear-gradient(135deg, #FAFAFA 0%, #F4F2FA 100%);
}
.project__visual--logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.project__visual--cover {
  padding: 0;
}
.project__visual--cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project__body {
  display: flex;
  flex-direction: column;
  padding: 22px 24px 24px;
  flex: 1;
  gap: 8px;
}
.project__body h3 {
  margin: 0;
  font-size: 1.15rem;
}
.project__body > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
.project__meta {
  font-size: 0.78rem !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--violet) !important;
  margin: 4px 0 0 !important;
  line-height: 1.4 !important;
}
.project__cta {
  margin-top: auto;
  padding-top: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--violet);
  align-self: flex-start;
  transition: transform 0.2s ease;
}
.project:hover .project__cta {
  transform: translateX(3px);
  color: var(--violet-dark);
}
.project h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--violet-dark);
}
.project p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 880px) {
  .projects { grid-template-columns: 1fr; }
}

/* === Footer === */
.footer {
  background: var(--violet-dark);
  color: #fff;
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}
.footer__brand img { height: 40px; margin-bottom: 16px; }
.footer__brand p { color: rgba(255, 255, 255, 0.7); margin: 0 0 4px; font-size: 0.95rem; }
.footer__copy { font-size: 0.85rem !important; color: rgba(255, 255, 255, 0.5) !important; margin-top: 16px !important; }
.footer__label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  margin-bottom: 12px;
}
.footer__contact a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}
.footer__contact a:hover { color: var(--magenta); }
.footer__social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #fff;
  transition: all 0.2s ease;
}
.footer__social a:hover {
  background: var(--magenta);
  color: #fff;
  transform: translateY(-2px);
}

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

/* === Reveal animation === */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Focus === */
:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}
