/* ============================================================
   Kestron — payments infrastructure
   Light, modern SaaS: white base, electric indigo, rounded cards,
   soft shadows, monospace code accents.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-subtle: #f6f7fb;
  --bg-ink: #0b1020;
  --bg-ink-2: #111834;

  --text: #1a2233;
  --text-strong: #0b1020;
  --muted: #5a6472;
  --text-invert: #eef1f8;
  --muted-invert: #9aa4bd;

  --accent: #5a57f5;
  --accent-2: #8b6bff;
  --accent-ink: #4a47d8;
  --accent-soft: rgba(90, 87, 245, 0.08);
  --success: #10b981;

  --line: #e7e9f2;
  --line-strong: #d6dae6;
  --line-invert: rgba(238, 241, 248, 0.14);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(11, 16, 32, 0.06),
    0 1px 3px rgba(11, 16, 32, 0.05);
  --shadow-md: 0 8px 24px rgba(11, 16, 32, 0.08),
    0 2px 6px rgba(11, 16, 32, 0.05);
  --shadow-lg: 0 24px 60px rgba(11, 16, 32, 0.14),
    0 8px 20px rgba(11, 16, 32, 0.08);

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 3rem);

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", "SFMono-Regular", Menlo, Consolas,
    "Liberation Mono", monospace;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  font-family: var(--sans);
  color: var(--text-strong);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0;
}

p {
  margin: 0;
}

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

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.bg-subtle {
  background: var(--bg-subtle);
}

/* ---------- type helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

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

.display {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  letter-spacing: -0.03em;
}

.h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
}

.measure {
  max-width: 60ch;
}

.grad-text {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease, transform 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(90, 87, 245, 0.4),
    0 6px 16px rgba(90, 87, 245, 0.25);
}

.btn--primary:hover {
  background: var(--accent-ink);
}

.btn--primary:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.btn--ghost {
  background: var(--bg);
  border-color: var(--line-strong);
  color: var(--text-strong);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.on-ink .btn--ghost {
  background: transparent;
  border-color: var(--line-invert);
  color: var(--text-invert);
}

.on-ink .btn--ghost:hover {
  border-color: var(--text-invert);
  color: var(--text-invert);
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.2s ease;
}

.textlink:hover {
  gap: 0.7rem;
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--bg-ink);
  color: var(--text-invert);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- reveal ---------- */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.85rem;
}

.chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.brand-logo {
  width: 26px;
  height: 26px;
  flex: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-left: auto;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 450;
  color: var(--muted);
  transition: color 0.18s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text-strong);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-strong);
  cursor: pointer;
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  padding: 0.75rem var(--gutter) 1.5rem;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-strong);
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.mobile-nav .btn {
  margin-top: 1rem;
}

@media (max-width: 820px) {
  .nav,
  .nav-actions .btn {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
      60% 55% at 78% 20%,
      rgba(139, 107, 255, 0.14),
      transparent 70%
    ),
    radial-gradient(50% 50% at 10% 8%, rgba(90, 87, 245, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-title {
  margin-top: 1.25rem;
}

.hero-lead {
  margin-top: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

/* hero visual: canvas panel + floating API card */
.hero-visual {
  position: relative;
}

.hero-panel {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #ffffff, #f3f4fb);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
}

.hero-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
  animation: fadeIn 1s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.api-card {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: min(78%, 340px);
  background: var(--bg-ink);
  color: var(--text-invert);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.9rem 1rem 1rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.55;
}

.api-card-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted-invert);
  font-size: 0.72rem;
  padding-bottom: 0.6rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid var(--line-invert);
}

.api-card-head .dots {
  display: inline-flex;
  gap: 4px;
  margin-right: 0.3rem;
}

.api-card-head .dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a4162;
}

.api-card code {
  display: block;
  white-space: pre;
  overflow-x: auto;
}

.api-card .k {
  color: #8b6bff;
}
.api-card .s {
  color: #63e6be;
}
.api-card .n {
  color: #ffd6a5;
}
.api-card .ok {
  color: var(--success);
}

@media (max-width: 940px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }
  .api-card {
    right: 0;
  }
}

/* ============================================================
   Feature grid
   ============================================================ */
.sec-head {
  max-width: 44ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.sec-head.center {
  margin-inline: auto;
  text-align: center;
}

.sec-head h2 {
  margin-top: 0.9rem;
}

.sec-head .lead {
  margin-top: 1rem;
}

.sec-head.center .lead {
  margin-inline: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

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

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  font-size: 1.1rem;
}

.feature p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

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

/* ============================================================
   Split (what we do) + pillars
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.stack-list {
  display: grid;
  gap: 1rem;
}

.stack-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.stack-item .num {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--accent);
  padding-top: 0.15rem;
}

.stack-item h3 {
  font-size: 1.02rem;
}

.stack-item p {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  padding-top: 1.5rem;
  border-top: 2px solid var(--accent);
}

.pillar h3 {
  font-size: 1.2rem;
}

.pillar p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .split,
  .pillars {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  color: #fff;
  max-width: 20ch;
}

.cta-band .btn--primary {
  background: #fff;
  color: var(--accent-ink);
  box-shadow: none;
}

.cta-band .btn--primary:hover {
  background: #f0efff;
}

@media (max-width: 720px) {
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-band .btn {
    width: 100%;
  }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg-ink);
  color: var(--text-invert);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
}

.footer-tagline {
  margin-top: 0.9rem;
  color: var(--muted-invert);
  font-size: 0.95rem;
  max-width: 34ch;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.9rem;
  color: var(--muted-invert);
  transition: color 0.18s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col-head {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-invert);
  margin-bottom: 0.35rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-invert);
  font-size: 0.82rem;
  color: var(--muted-invert);
}

@media (max-width: 760px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

/* ============================================================
   Interior pages
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    50% 60% at 85% 0%,
    rgba(139, 107, 255, 0.1),
    transparent 70%
  );
}

.page-hero-title {
  margin-top: 1.1rem;
  max-width: 20ch;
}

.page-hero-lead {
  margin-top: 1.4rem;
  max-width: 58ch;
}

.prose p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 64ch;
}

.prose p + p {
  margin-top: 1.3rem;
}

/* facts */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.fact {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.fact-value {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.fact-label {
  margin-top: 0.35rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

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

/* callout (partners note) */
.callout {
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.callout p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 62ch;
}

/* platform rows */
.plat-list {
  display: grid;
  gap: 1.25rem;
}

.plat-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  align-items: start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.plat-row:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.plat-row .feature-icon {
  margin: 0;
}

.plat-row h3 {
  font-size: 1.2rem;
}

.plat-row p {
  margin-top: 0.5rem;
  color: var(--muted);
  max-width: 68ch;
}

/* ============================================================
   Contact form
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-block {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.contact-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-email {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent);
}

.contact-email:hover {
  color: var(--accent-ink);
}

.contact-value {
  margin-top: 0.55rem;
  font-size: 1.1rem;
  color: var(--text-strong);
}

.contact-note {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 34ch;
}

.form-wrap {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form {
  display: grid;
  gap: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-strong);
}

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

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

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-note a {
  color: var(--accent);
  font-weight: 500;
}

.error-msg {
  font-size: 0.9rem;
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecdca;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.95rem;
}

.error-msg[hidden] {
  display: none;
}

.success {
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.success[hidden] {
  display: none;
}

.success-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
  margin-bottom: 1rem;
}

.success-title {
  font-size: 1.5rem;
}

.success-body {
  margin-top: 0.6rem;
  color: var(--muted);
  max-width: 42ch;
}

@media (max-width: 820px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-canvas canvas {
    animation: none;
  }
}
