/* ==========================================================================
   PakaWeb — Design tokens
   Navy: #0A1628  |  Accent: #00A3FF  |  Surfaces: white / light gray
   ========================================================================== */
:root {
  --navy: #0A1628;
  --navy-mid: #102038;
  --navy-card: #152848;
  --accent: #00A3FF;
  --accent-soft: rgba(0, 163, 255, 0.14);
  --white: #ffffff;
  --gray: #F4F7FB;
  --gray-line: #E2E8F0;
  --muted: #8BA0B8;
  --text: #1B2A41;
  --text-soft: #5B6B80;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(10, 22, 40, 0.12);
  --header-h: 76px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  background: var(--accent);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.menu-open { overflow: hidden; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-header.is-open {
  background: var(--navy);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.88; }

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(145deg, #00A3FF, #0077CC);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 20px rgba(0, 163, 255, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: #D5E2F0;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  margin-left: 0.5rem;
  background: var(--accent) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 18px rgba(0, 163, 255, 0.22);
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s !important;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 163, 255, 0.35);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 110;
  transition: background 0.2s;
}
.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  left: 12px;
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
}
.menu-toggle span { top: 21px; }
.menu-toggle span::before,
.menu-toggle span::after { content: ""; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.site-header.is-open .menu-toggle span { background: transparent; }
.site-header.is-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}
.site-header.is-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s, filter 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(0, 163, 255, 0.28);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #33B5FF;
  box-shadow: 0 16px 32px rgba(0, 163, 255, 0.42);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(0, 163, 255, 0.12);
  border-color: var(--accent);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: 4.5rem 0 5.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 40%, transparent 80%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: -80px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.28), transparent 68%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(2.15rem, 5.5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  max-width: 16ch;
  margin-bottom: 1.1rem;
}

.hero h1 span { color: var(--accent); }

.hero-lead {
  max-width: 38rem;
  color: #B7C7DA;
  font-size: 1.08rem;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 3.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-meta dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}
.hero-meta dd { color: var(--white); font-weight: 600; }

/* --------------------------------------------------------------------------
   Shared section chrome
   -------------------------------------------------------------------------- */
section { padding: 5rem 0; }

.section-kicker {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.section-intro {
  color: var(--text-soft);
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.services { background: var(--gray); }

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 1.6rem 1.45rem 1.5rem;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 48px rgba(10, 22, 40, 0.14);
  border-color: rgba(0, 163, 255, 0.45);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

.service-card h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.service-card p { color: var(--text-soft); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Portfolio
   -------------------------------------------------------------------------- */
.work { background: var(--navy); color: var(--white); }
.work .section-intro { color: #A9BBD0; }
.work .card-grid { padding: 0.35rem 0.15rem 1.35rem; }

.project-card {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(0) scale(1);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(0, 163, 255, 0.5);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45), 0 0 36px rgba(0, 163, 255, 0.12);
}

.project-thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #1a2332;
}

.browser-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  flex-shrink: 0;
  background: #0C1A30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3D4F66;
}
.browser-bar .dot:nth-child(1) { background: #FF5F57; }
.browser-bar .dot:nth-child(2) { background: #FEBC2E; }
.browser-bar .dot:nth-child(3) { background: #28C840; }

.browser-url {
  flex: 1;
  margin-left: 8px;
  min-width: 0;
  font-size: 0.68rem;
  font-weight: 600;
  color: #8BA0B8;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 0.2rem 0.55rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-thumb img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top center;
  transform: scale(1);
  transition: transform 0.4s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.05);
}

.project-body {
  padding: 1.25rem 1.3rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.project-body p {
  color: #A9BBD0;
  font-size: 0.93rem;
  margin-bottom: 0.7rem;
  flex: 1;
}

.project-built {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
}

.project-body .btn { align-self: flex-start; }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about {
  background: var(--gray);
}

.about-grid {
  display: grid;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.08);
  position: relative;
}

.about-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(0, 163, 255, 0.35) 42%, transparent 78%);
  z-index: 3;
  pointer-events: none;
}

.about-panel {
  background: linear-gradient(165deg, #0C1C34 0%, var(--navy) 48%, #102A4A 100%);
  color: var(--white);
  padding: 2.15rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid rgba(0, 163, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease;
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 163, 255, 0.18);
  pointer-events: none;
}

.about-panel::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.38), transparent 70%);
  pointer-events: none;
}

.about-panel:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 0 48px rgba(0, 163, 255, 0.1);
}

.about-initials {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 24px rgba(0, 163, 255, 0.38), 0 0 0 5px rgba(0, 163, 255, 0.12);
}

.about-panel h3 {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.45rem;
  position: relative;
  z-index: 1;
}

.about-panel .role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.about-panel .about-blurb {
  color: #C5D4E6;
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  max-width: 32ch;
}

.about-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(0, 163, 255, 0.2);
  position: relative;
  z-index: 1;
}

.about-meta li {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E8F4FF;
  background: rgba(0, 163, 255, 0.12);
  border: 1px solid rgba(0, 163, 255, 0.28);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
}

.about-copy {
  padding: 2.2rem 2.15rem 2.15rem;
  background: linear-gradient(90deg, #F4F8FC 0%, var(--white) 22%);
}

.about-copy .section-kicker { margin-bottom: 0.55rem; }

.about-copy h2 {
  margin-bottom: 0.95rem;
  max-width: 18ch;
}

.about-copy p {
  color: var(--text-soft);
  margin-bottom: 0.9rem;
  line-height: 1.7;
  max-width: 42rem;
}

.about-copy p:last-of-type { margin-bottom: 0; }

.about-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.about-list li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.7rem 0.9rem;
  background: var(--gray);
  border: 1px solid var(--gray-line);
  border-radius: 12px;
}

.about-list li::before {
  content: "";
  width: 28px;
  height: 28px;
  margin-top: 0;
  border-radius: 8px;
  background-color: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%2300A3FF' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 7.5 5.5 10.5 11.5 3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact { background: var(--gray); }

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-card,
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-card:hover,
.contact-form:focus-within {
  border-color: rgba(0, 163, 255, 0.35);
  box-shadow: 0 14px 36px rgba(10, 22, 40, 0.08);
}

.contact-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--gray-line);
}
.contact-item:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-item:first-child { padding-top: 0; }

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: #0077CC;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item a {
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.contact-item a:hover { color: #0077CC; }

.form-row { display: grid; gap: 0.9rem; margin-bottom: 0.9rem; }

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

input, textarea {
  width: 100%;
  border: 1px solid var(--gray-line);
  background: var(--gray);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

input:focus, textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

textarea { min-height: 130px; resize: vertical; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin-top: 0.9rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-status.is-success {
  display: block;
  background: #E8F8EE;
  color: #166534;
}
.form-status.is-error {
  display: block;
  background: #FEECEC;
  color: #991B1B;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: #A9BBD0;
  padding: 2.25rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-inner a { color: var(--white); font-weight: 500; transition: color 0.2s; }
.footer-inner a:hover { color: var(--accent); }
.footer-copy { font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .form-row.two { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .card-grid { grid-template-columns: repeat(4, 1fr); }
  .work .card-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 0.78fr 1.22fr; }
  .about-panel { justify-content: center; }
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; }
  .hero { padding: 6.5rem 0 7rem; }
}

@media (max-width: 899px) {
  .menu-toggle { display: block; }

  .about-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 163, 255, 0.16);
    justify-content: flex-start;
    padding: 1.85rem 1.5rem 1.7rem;
  }

  .about-copy {
    padding: 1.75rem 1.4rem 1.85rem;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    bottom: 0;
    width: 100%;
    height: calc(100dvh - var(--header-h));
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.4rem;
    padding: 1.5rem 1.75rem 3.5rem;
    border-bottom: 0;
    z-index: 95;
    transform: translateY(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
  }

  .site-header.is-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-links li { width: 100%; }

  .nav-links a:not(.nav-cta) {
    display: block;
    color: var(--white);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    padding: 0.85rem 0.25rem;
    border-radius: 10px;
    background: transparent;
  }

  .nav-links a:not(.nav-cta):hover,
  .nav-links a:not(.nav-cta):focus-visible {
    color: var(--accent);
    background: transparent;
  }

  .nav-cta {
    display: flex;
    margin: 1.35rem 0 0;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 1rem 1.25rem !important;
    font-size: 1.05rem !important;
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
