/* =========================================================
   IX7 GAME — MODERN ONE PAGE WEBSITE
   ========================================================= */

:root {
  --bg: #070a12;
  --bg-soft: #0c101b;
  --surface: #111624;
  --surface-2: #151b2b;
  --border: rgba(255, 255, 255, 0.09);

  --text: #f4f7ff;
  --muted: #9da7ba;

  --accent: #7c5cff;
  --accent-2: #20d9ff;
  --accent-3: #a98dff;

  --success: #48e0a4;

  --radius: 22px;
  --radius-small: 14px;

  --container: 1180px;

  --shadow:
    0 20px 70px rgba(0, 0, 0, 0.35);

  --transition:
    220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}


/* =========================================================
   RESET
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(124, 92, 255, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 25%,
      rgba(32, 217, 255, 0.08),
      transparent 28%
    ),
    var(--bg);

  color: var(--text);

  font-family: "Inter", sans-serif;

  line-height: 1.7;

  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(
    calc(100% - 40px),
    var(--container)
  );

  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-small {
  padding: 65px 0;
}

p {
  color: var(--muted);
}

::selection {
  background: var(--accent);
  color: white;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(7, 10, 18, 0.78);

  border-bottom: 1px solid transparent;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    background var(--transition),
    border-color var(--transition);
}

.site-header.scrolled {
  background: rgba(7, 10, 18, 0.95);
  border-bottom-color: var(--border);
}

.nav-wrapper {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


/* BRAND */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  font-family: "Space Grotesk", sans-serif;

  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 39px;
  height: 39px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2)
    );

  color: white;

  font-size: 12px;

  box-shadow:
    0 8px 30px rgba(124, 92, 255, 0.35);
}

.brand-text {
  font-size: 17px;
}

.brand-text strong {
  color: var(--accent-2);
}


/* NAV */

.main-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-navigation a {
  color: #c7cedd;

  font-size: 14px;
  font-weight: 600;

  transition:
    color var(--transition);
}

.main-navigation a:hover {
  color: white;
}


/* MOBILE MENU */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border: 1px solid var(--border);
  border-radius: 12px;

  background: var(--surface);

  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 5px;
}

.menu-toggle span {
  width: 19px;
  height: 2px;

  background: white;

  border-radius: 10px;

  transition: transform var(--transition);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: calc(100vh - 76px);

  display: flex;
  align-items: center;

  padding-top: 80px;
  padding-bottom: 80px;

  position: relative;
}

.hero::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  left: -280px;
  top: 5%;

  background: var(--accent);

  opacity: 0.06;

  filter: blur(100px);

  border-radius: 50%;

  pointer-events: none;
}

.hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(400px, 0.85fr);

  align-items: center;

  gap: 80px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--accent-2);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.pulse-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--success);

  box-shadow:
    0 0 0 5px rgba(72, 224, 164, 0.08),
    0 0 18px rgba(72, 224, 164, 0.8);
}

.hero h1 {
  max-width: 750px;

  margin-top: 20px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(
    42px,
    6vw,
    76px
  );

  line-height: 0.99;

  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;

  background:
    linear-gradient(
      90deg,
      #ffffff,
      var(--accent-3),
      var(--accent-2)
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.hero-description {
  max-width: 650px;

  margin-top: 25px;

  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 13px;

  margin-top: 34px;
}

.btn {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 0 22px;

  border-radius: 13px;

  font-size: 14px;
  font-weight: 800;

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.btn span {
  font-size: 17px;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background:
    linear-gradient(
      135deg,
      var(--accent),
      #6250f4
    );

  color: white;

  box-shadow:
    0 12px 35px rgba(124, 92, 255, 0.28);
}

.btn-primary:hover {
  box-shadow:
    0 17px 42px rgba(124, 92, 255, 0.4);
}

.btn-secondary {
  border: 1px solid var(--border);

  background: rgba(255, 255, 255, 0.035);

  color: white;
}

.btn-secondary:hover {
  border-color:
    rgba(124, 92, 255, 0.45);
}

.hero-note {
  margin-top: 20px;

  display: flex;
  align-items: center;

  gap: 8px;

  color: #7f8a9e;

  font-size: 12px;
}

.hero-note span {
  color: var(--success);
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
  position: relative;

  min-height: 540px;

  display: grid;
  place-items: center;
}

.device-card {
  position: relative;

  z-index: 2;

  width: min(
    350px,
    75vw
  );

  padding: 10px;

  border-radius: 31px;

  background:
    linear-gradient(
      145deg,
      #252b3c,
      #090c15
    );

  border: 1px solid rgba(255, 255, 255, 0.13);

  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.55),
    0 0 90px rgba(124, 92, 255, 0.12);

  transform: rotate(2deg);
}

.device-topbar {
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 17px;
}

.device-logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;

  color: white;
}

.device-status {
  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 8px;
  font-weight: 800;

  color: #7e8aa2;
}

.device-status i {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--success);
}

.device-screen {
  min-height: 430px;

  padding: 28px 20px;

  border-radius: 22px;

  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(124, 92, 255, 0.25),
      transparent 35%
    ),
    #0b0f19;

  border: 1px solid rgba(255, 255, 255, 0.07);
}

.screen-heading small {
  display: block;

  color: #7d879b;

  font-size: 8px;
  letter-spacing: 0.2em;
}

.screen-heading strong {
  display: block;

  margin-top: 7px;

  font-family: "Space Grotesk", sans-serif;

  font-size: 30px;
  letter-spacing: -0.04em;
}

.screen-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;

  margin-top: 35px;
}

.screen-tile {
  min-height: 100px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 13px;

  border-radius: 16px;

  border: 1px solid var(--border);

  background:
    linear-gradient(
      145deg,
      rgba(124, 92, 255, 0.16),
      rgba(255, 255, 255, 0.025)
    );
}

.screen-tile.wide {
  grid-column: span 2;

  min-height: 80px;
}

.screen-tile span {
  font-size: 9px;
  color: #7d879b;
}

.screen-tile b {
  font-family: "Space Grotesk", sans-serif;

  font-size: 14px;
}

.screen-line {
  height: 1px;

  margin: 32px 0 20px;

  background: var(--border);
}

.screen-footer {
  display: flex;
  justify-content: space-between;

  color: #667187;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 0.12em;
}

.orb {
  position: absolute;

  border-radius: 50%;

  filter: blur(1px);

  pointer-events: none;
}

.orb-one {
  width: 220px;
  height: 220px;

  top: 40px;
  right: 10px;

  background: rgba(124, 92, 255, 0.14);

  filter: blur(70px);
}

.orb-two {
  width: 170px;
  height: 170px;

  bottom: 30px;
  left: 30px;

  background: rgba(32, 217, 255, 0.1);

  filter: blur(65px);
}

.floating-card {
  position: absolute;

  z-index: 4;

  display: flex;
  align-items: center;

  gap: 10px;

  padding: 12px 15px;

  border: 1px solid var(--border);

  border-radius: 15px;

  background: rgba(16, 21, 34, 0.84);

  backdrop-filter: blur(15px);

  box-shadow: var(--shadow);
}

.floating-card > span {
  width: 31px;
  height: 31px;

  display: grid;
  place-items: center;

  border-radius: 9px;

  background: rgba(124, 92, 255, 0.16);

  color: var(--accent-3);

  font-size: 9px;
  font-weight: 800;
}

.floating-card small {
  display: block;

  color: #687388;

  font-size: 8px;
  letter-spacing: 0.12em;
}

.floating-card strong {
  display: block;

  margin-top: 2px;

  font-size: 11px;
}

.floating-one {
  top: 105px;
  left: 0;
}

.floating-two {
  bottom: 100px;
  right: -10px;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.section-heading {
  margin-bottom: 45px;
}

.section-heading.centered {
  max-width: 750px;

  margin-inline: auto;

  text-align: center;
}

.section-heading h2 {
  margin-top: 10px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(
    30px,
    4vw,
    50px
  );

  line-height: 1.05;

  letter-spacing: -0.045em;
}

.section-heading p {
  margin-top: 15px;
}


/* =========================================================
   QUICK INFORMATION
   ========================================================= */

.info-card {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  overflow: hidden;

  background: rgba(255, 255, 255, 0.025);

  box-shadow: var(--shadow);
}

.info-row {
  min-height: 100px;

  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: 5px;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.info-row:nth-child(4n) {
  border-right: 0;
}

.info-row:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.info-row span {
  color: #737e92;

  font-size: 11px;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}

.info-row strong {
  font-size: 14px;
}


/* =========================================================
   ABOUT / CONTENT
   ========================================================= */

.two-column {
  display: grid;

  grid-template-columns:
    0.85fr
    1.15fr;

  gap: 90px;

  align-items: start;
}

.content-copy {
  max-width: 720px;
}

.content-copy p + p {
  margin-top: 20px;
}


/* =========================================================
   SEO SECTIONS
   ========================================================= */

.seo-section {
  position: relative;

  border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.alt-section {
  background:
    linear-gradient(
      90deg,
      rgba(124, 92, 255, 0.035),
      transparent 55%
    );
}

.seo-section .container {
  position: relative;

  max-width: 900px;
}

.section-number {
  display: inline-block;

  margin-bottom: 12px;

  color: var(--accent);

  font-family: "Space Grotesk", sans-serif;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.1em;
}

.seo-section h2 {
  max-width: 800px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(
    28px,
    4vw,
    46px
  );

  line-height: 1.1;

  letter-spacing: -0.045em;

  margin-bottom: 22px;
}

.seo-section p {
  max-width: 850px;

  font-size: 16px;
}

.inline-btn {
  margin-top: 30px;
}


/* =========================================================
   TOPIC NAVIGATION
   ========================================================= */

.navigation-section {
  background: var(--bg-soft);

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.topic-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 10px;
}

.topic-grid a {
  min-height: 62px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 18px;

  border: 1px solid var(--border);

  border-radius: 13px;

  background: rgba(255, 255, 255, 0.02);

  color: #c7cedd;

  font-size: 13px;
  font-weight: 700;

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.topic-grid a span {
  color: var(--accent-2);

  transition: transform var(--transition);
}

.topic-grid a:hover {
  transform: translateY(-3px);

  border-color:
    rgba(124, 92, 255, 0.35);

  background:
    rgba(124, 92, 255, 0.06);
}

.topic-grid a:hover span {
  transform: translateX(4px);
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding: 45px;

  border: 1px solid rgba(124, 92, 255, 0.2);

  border-radius: var(--radius);

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(124, 92, 255, 0.17),
      transparent 35%
    ),
    rgba(255, 255, 255, 0.025);

  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin-top: 8px;

  font-family: "Space Grotesk", sans-serif;

  font-size: 32px;

  letter-spacing: -0.04em;
}

.cta-box p {
  margin-top: 7px;
}


/* =========================================================
   FEATURES
   ========================================================= */

.features-section {
  background:
    linear-gradient(
      180deg,
      var(--bg),
      var(--bg-soft)
    );
}

.feature-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 14px;
}

.feature-card {
  min-height: 220px;

  padding: 25px;

  border: 1px solid var(--border);

  border-radius: var(--radius-small);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    );

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);

  border-color:
    rgba(124, 92, 255, 0.3);

  background:
    linear-gradient(
      145deg,
      rgba(124, 92, 255, 0.09),
      rgba(255, 255, 255, 0.015)
    );
}

.feature-icon {
  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background:
    rgba(124, 92, 255, 0.12);

  color: var(--accent-3);

  font-size: 10px;
  font-weight: 800;
}

.feature-card h3 {
  margin-top: 24px;

  font-family: "Space Grotesk", sans-serif;

  font-size: 17px;
}

.feature-card p {
  margin-top: 9px;

  font-size: 13px;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 14px;
}

.process-card {
  position: relative;

  padding: 30px 25px;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  background: var(--surface);
}

.process-card > span {
  display: block;

  color: var(--accent);

  font-family: "Space Grotesk", sans-serif;

  font-size: 12px;
  font-weight: 800;
}

.process-card h3 {
  margin-top: 20px;

  font-family: "Space Grotesk", sans-serif;

  font-size: 18px;
}

.process-card p {
  margin-top: 9px;

  font-size: 13px;
}


/* =========================================================
   MINI CTA
   ========================================================= */

.mini-cta {
  padding-top: 0;
}

.mini-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding: 35px;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  background:
    linear-gradient(
      100deg,
      rgba(124, 92, 255, 0.08),
      rgba(32, 217, 255, 0.03)
    );
}

.mini-cta h2 {
  margin-top: 7px;

  font-family: "Space Grotesk", sans-serif;

  font-size: 30px;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
  background: var(--bg-soft);
}

.faq-list {
  max-width: 900px;

  margin-inline: auto;

  display: grid;

  gap: 9px;
}

.faq-item {
  border: 1px solid var(--border);

  border-radius: 15px;

  background:
    rgba(255, 255, 255, 0.025);

  overflow: hidden;
}

.faq-item summary {
  min-height: 68px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 22px;

  cursor: pointer;

  list-style: none;

  font-size: 14px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";

  color: var(--accent-2);

  font-size: 21px;
  font-weight: 400;

  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding:
    0 22px 22px;

  font-size: 14px;
}


/* =========================================================
   RESPONSIBLE USE
   ========================================================= */

.responsible-section {
  padding-top: 65px;
  padding-bottom: 100px;
}

.responsible-box {
  display: grid;

  grid-template-columns:
    auto 1fr;

  gap: 22px;

  padding: 35px;

  border: 1px solid rgba(255, 183, 77, 0.16);

  border-radius: var(--radius);

  background:
    rgba(255, 183, 77, 0.035);
}

.responsible-icon {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 15px;

  background:
    rgba(255, 183, 77, 0.1);

  color: #ffcf75;

  font-weight: 900;
}

.responsible-box h2 {
  margin-top: 7px;

  font-family: "Space Grotesk", sans-serif;

  font-size: 30px;

  letter-spacing: -0.035em;
}

.responsible-box p {
  margin-top: 12px;

  max-width: 900px;

  font-size: 14px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding-top: 75px;

  background:
    #05070d;

  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.6fr
    1fr
    1fr
    1fr;

  gap: 50px;

  padding-bottom: 55px;
}

.footer-brand p {
  max-width: 390px;

  margin-top: 18px;

  font-size: 13px;
}

.footer-column {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 8px;

  font-family: "Space Grotesk", sans-serif;

  font-size: 14px;
}

.footer-column a {
  color: #7f899b;

  font-size: 12px;

  transition: color var(--transition);
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  min-height: 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  border-top: 1px solid var(--border);

  color: #626c7e;

  font-size: 11px;
}

.footer-bottom p {
  color: inherit;
}


/* =========================================================
   ANIMATION
   ========================================================= */

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.floating-one {
  animation:
    floatCard 5s ease-in-out infinite;
}

.floating-two {
  animation:
    floatCard 6s ease-in-out infinite reverse;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1050px) {

  .hero-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-note {
    justify-content: center;
  }

  .hero-visual {
    min-height: 500px;
  }

  .info-card {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .info-row:nth-child(4n) {
    border-right: 1px solid var(--border);
  }

  .info-row:nth-child(2n) {
    border-right: 0;
  }

  .info-row:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--border);
  }

  .info-row:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .two-column {
    gap: 45px;
  }

  .feature-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .topic-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .container {
    width: min(
      calc(100% - 28px),
      var(--container)
    );
  }

  .section {
    padding: 70px 0;
  }

  .section-small {
    padding: 50px 0;
  }


  /* MOBILE NAV */

  .nav-wrapper {
    min-height: 68px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-navigation {
    position: absolute;

    top: calc(100% + 1px);
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding: 8px 14px 15px;

    background:
      rgba(7, 10, 18, 0.98);

    border-bottom: 1px solid var(--border);

    opacity: 0;
    visibility: hidden;

    transform:
      translateY(-10px);

    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  .main-navigation.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .main-navigation a {
    padding: 13px 10px;

    border-bottom: 1px solid
      rgba(255, 255, 255, 0.04);
  }


  /* HERO */

  .hero {
    min-height: auto;

    padding-top: 65px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .device-card {
    width: min(
      290px,
      76vw
    );
  }

  .device-screen {
    min-height: 360px;
  }

  .screen-heading strong {
    font-size: 25px;
  }

  .floating-card {
    transform: scale(0.82);
  }

  .floating-one {
    left: -12px;
  }

  .floating-two {
    right: -12px;
  }


  /* INFO */

  .info-card {
    grid-template-columns: 1fr;
  }

  .info-row,
  .info-row:nth-child(4n),
  .info-row:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .info-row:last-child {
    border-bottom: 0;
  }


  /* CONTENT */

  .two-column {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .section-heading {
    margin-bottom: 30px;
  }


  /* SEO */

  .seo-section p {
    font-size: 15px;
  }


  /* TOPICS */

  .topic-grid {
    grid-template-columns: 1fr;
  }


  /* CTA */

  .cta-box,
  .mini-cta-inner {
    flex-direction: column;

    align-items: flex-start;

    padding: 28px;
  }

  .cta-box .btn,
  .mini-cta-inner .btn {
    width: 100%;
  }


  /* FEATURES */

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }


  /* PROCESS */

  .process-grid {
    grid-template-columns: 1fr;
  }


  /* RESPONSIBLE */

  .responsible-box {
    grid-template-columns: 1fr;

    padding: 25px;
  }


  /* FOOTER */

  .footer-grid {
    grid-template-columns: 1fr 1fr;

    gap: 35px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    padding: 20px 0;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .hero h1 {
    font-size: 38px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .device-card {
    width: 270px;
  }

  .floating-card {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}