:root {
  color-scheme: dark;
  --bg: #0a0e14;
  --text: #ffffff;
  --muted: #94a3b8;
  --brand-1: #8b5cf6;
  --brand-2: #06b6d4;
  --brand-3: #ec4899;
  --brand-4: #00e5a0;
  --brand-5: #f59e0b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(900px 540px at 18% 12%, rgba(139, 92, 246, 0.18), transparent 62%),
    radial-gradient(860px 520px at 82% 16%, rgba(6, 182, 212, 0.14), transparent 62%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: overlay;
}

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

svg {
  display: block;
}

section[id] {
  scroll-margin-top: 80px;
}

.cin-header {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 12px 18px 12px 24px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(10, 14, 20, 0.58);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  backdrop-filter: blur(26px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.045),
    0 18px 70px rgba(2, 6, 23, 0.34);
  transition: top 0.3s ease, min-height 0.3s ease, padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.cin-header.is-scrolled {
  top: 12px;
  min-height: 62px;
  padding: 10px 14px 10px 22px;
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(10, 14, 20, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.055),
    0 16px 56px rgba(2, 6, 23, 0.42);
}

.cin-brand {
  color: #f8fafc;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(15, 23, 42, 0.6);
}

.cin-nav,
.cin-actions,
.hero-actions,
.store-badges {
  display: flex;
  align-items: center;
}

.cin-nav {
  gap: 32px;
}

.cin-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.cin-nav a:hover,
.cin-nav a:focus-visible {
  color: #fff;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
}

.cin-actions,
.hero-actions,
.store-badges {
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  outline: 0;
}

.mobile-menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.cin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 16px 32px;
  color: white;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.cin-btn-primary {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  box-shadow: 0 12px 36px rgba(139, 92, 246, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cin-btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 48px rgba(139, 92, 246, 0.7), 0 0 30px rgba(6, 182, 212, 0.55);
}

.cin-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.cin-btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.cin-btn-large {
  padding: 20px 48px;
  font-size: 18px;
}

.cin-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 20px 76px;
  text-align: center;
}

.cin-hero-title,
.cin-massive-text {
  margin: 0;
  color: #fff;
  font-family: Sora, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
}

.cin-hero-title {
  font-size: clamp(80px, 12vw, 200px);
}

.cin-hero-sub {
  max-width: 900px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.4;
}

.hero-actions {
  justify-content: center;
  margin-top: 56px;
}

.cin-panel {
  min-height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 4%;
}

.cin-panel::before {
  content: "";
  position: absolute;
  inset: 12% -10%;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(620px 360px at 22% 34%, rgba(139, 92, 246, 0.24), transparent 62%),
    radial-gradient(620px 360px at 78% 62%, rgba(6, 182, 212, 0.18), transparent 62%);
  filter: blur(18px);
}

.cin-panel-content {
  position: relative;
  width: min(1600px, 100%);
  text-align: center;
}

.cin-massive-text {
  font-size: clamp(50px, 8vw, 130px);
  line-height: 1.05;
}

.cin-massive-sub {
  max-width: 900px;
  margin: 32px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 600;
  line-height: 1.5;
}

.final-panel {
  min-height: 100vh;
}

.identity-panel .hero-actions {
  margin-top: 42px;
}

.identity-badge {
  width: clamp(82px, 11vw, 150px);
  height: clamp(82px, 11vw, 150px);
  object-fit: contain;
  margin: 0 auto 32px;
  filter: drop-shadow(0 22px 46px rgba(6, 182, 212, 0.22));
}

.faq-section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  min-height: auto;
  padding: 120px 4%;
  overflow: hidden;
}

.faq-title {
  margin-bottom: 60px;
  font-size: clamp(40px, 6vw, 100px);
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 40px;
  text-align: left;
}

.faq-item {
  min-width: 0;
}

.faq-item h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Sora, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.faq-item p {
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 650;
  line-height: 1.5;
}

.cin-text-gradient-1,
.cin-text-gradient-2,
.cin-text-gradient-3,
.cin-text-gradient-4 {
  color: transparent;
  display: inline-block;
  background-size: 100% 100%;
  background-position: 50% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cin-text-gradient-1 {
  background-image: linear-gradient(135deg, var(--brand-1), var(--brand-2));
}

.cin-text-gradient-2 {
  background-image: linear-gradient(135deg, var(--brand-3), var(--brand-1));
}

.cin-text-gradient-3 {
  background-image: linear-gradient(135deg, var(--brand-4), var(--brand-2));
}

.cin-text-gradient-4 {
  background-image: linear-gradient(135deg, var(--brand-5), var(--brand-3));
}

.verified-main {
  overflow: hidden;
}

.verified-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 22px 80px;
  text-align: center;
}

.verified-hero-inner {
  width: min(1120px, 100%);
}

.verified-hero-mark {
  width: clamp(150px, 22vw, 280px);
  height: clamp(150px, 22vw, 280px);
  object-fit: contain;
  margin: 0 auto 36px;
  filter: drop-shadow(0 30px 70px rgba(6, 182, 212, 0.28));
}

.verified-hero h1,
.verified-section-head h2,
.criteria-copy h2,
.apply-panel h2 {
  margin: 0;
  color: #fff;
  font-family: Sora, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: 0;
}

.verified-hero h1 {
  font-size: clamp(58px, 9vw, 148px);
  line-height: 0.92;
}

.verified-hero p {
  max-width: 900px;
  margin: 30px auto 0;
  color: rgba(226, 232, 240, 0.76);
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 650;
  line-height: 1.46;
}

.verified-section {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 118px 0;
}

.verified-section-head {
  max-width: 940px;
  margin: 0 auto 54px;
  text-align: center;
}

.verified-section-mark {
  width: clamp(90px, 11vw, 140px);
  height: clamp(90px, 11vw, 140px);
  object-fit: contain;
  margin: 0 auto 28px;
  filter: drop-shadow(0 20px 46px rgba(6, 182, 212, 0.22));
}

.verified-section-mark.p-mark,
.identity-badge[src$="verified_business_badge.png"],
.business-mark {
  filter: drop-shadow(0 20px 46px rgba(139, 92, 246, 0.24));
}

.verified-section-head h2,
.criteria-copy h2,
.apply-panel h2 {
  font-size: clamp(44px, 7vw, 104px);
  line-height: 0.96;
}

.verified-section-head p,
.criteria-copy p,
.apply-panel p {
  max-width: 860px;
  margin: 24px auto 0;
  color: rgba(226, 232, 240, 0.74);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 650;
  line-height: 1.56;
}

.verified-copy-list {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 40px;
  text-align: left;
}

.verified-copy-item {
  min-width: 0;
}

.verified-copy-item h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Sora, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.verified-copy-item p {
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 650;
  line-height: 1.5;
}

.criteria-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.criteria-copy {
  position: sticky;
  top: 118px;
}

.criteria-copy p {
  margin-left: 0;
}

.criteria-list {
  display: grid;
  gap: 16px;
}

.criteria-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.criteria-row span {
  color: rgba(148, 163, 184, 0.8);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.criteria-row p {
  margin: 0;
  color: rgba(226, 232, 240, 0.84);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 750;
  line-height: 1.45;
}

.apply-section {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 76px 0 128px;
}

.apply-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: clamp(36px, 7vw, 74px);
  text-align: center;
  background:
    radial-gradient(620px 360px at 20% 0%, rgba(139, 92, 246, 0.2), transparent 64%),
    radial-gradient(620px 360px at 82% 82%, rgba(6, 182, 212, 0.16), transparent 64%),
    rgba(255, 255, 255, 0.045);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.store-badges {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
}

.store-badge {
  min-width: 210px;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-align: left;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.store-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.11);
}

.store-badge svg {
  width: 28px;
  height: 28px;
}

.store-badge span {
  display: grid;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.08;
}

.store-badge small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(150px, 0.55fr) minmax(150px, 0.55fr) minmax(230px, 0.9fr);
  gap: 42px;
  padding: 64px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(148, 163, 184, 0.86);
}

.footer-brand-block,
.footer-network,
.footer-col {
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 16px;
  color: #fff;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: 0;
}

.footer-brand-block p,
.footer-network p {
  max-width: 360px;
  margin: 0;
  color: rgba(203, 213, 225, 0.72);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.65;
}

.footer-col,
.footer-network {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-col h3,
.footer-network h3 {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  width: fit-content;
  color: rgba(226, 232, 240, 0.72);
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(6, 182, 212, 0.45);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
  margin: 0;
  color: rgba(148, 163, 184, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.reveal-up,
.reveal-blur {
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-blur {
  filter: blur(20px);
  transform: scale(1.05);
}

.cin-hero .reveal-blur,
.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .cin-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 60px;
    gap: 14px;
    padding: 10px 10px 10px 18px;
    border-radius: 30px;
  }

  .cin-header.is-scrolled {
    top: 10px;
    min-height: 56px;
    padding: 9px 9px 9px 16px;
  }

  .cin-nav {
    display: none;
  }

  body[data-page="landing"] .cin-nav {
    position: absolute;
    top: calc(100% + 15px);
    right: 8px;
    display: grid;
    justify-items: end;
    gap: 9px;
    width: min(270px, calc(100vw - 46px));
    padding: 2px 4px;
    pointer-events: none;
    visibility: hidden;
  }

  body[data-page="landing"] .cin-nav a {
    width: fit-content;
    max-width: 100%;
    opacity: 0;
    transform: translateX(30px);
    filter: blur(8px);
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(24px, 8vw, 38px);
    font-weight: 950;
    line-height: 1;
    text-align: right;
    text-shadow: 0 14px 40px rgba(2, 6, 23, 0.72);
    transition:
      opacity 0.48s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.58s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.58s cubic-bezier(0.16, 1, 0.3, 1),
      color 0.2s ease,
      text-shadow 0.2s ease;
  }

  body[data-page="landing"] .cin-nav a:hover,
  body[data-page="landing"] .cin-nav a:focus-visible {
    color: #fff;
    text-shadow: 0 0 24px rgba(6, 182, 212, 0.42), 0 14px 40px rgba(2, 6, 23, 0.72);
  }

  body[data-page="landing"] .cin-header.is-menu-open .cin-nav {
    pointer-events: auto;
    visibility: visible;
  }

  body[data-page="landing"] .cin-header.is-menu-open .cin-nav a {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }

  body[data-page="landing"] .cin-header.is-menu-open .cin-nav a:nth-child(1) {
    transition-delay: 0.03s;
  }

  body[data-page="landing"] .cin-header.is-menu-open .cin-nav a:nth-child(2) {
    transition-delay: 0.08s;
  }

  body[data-page="landing"] .cin-header.is-menu-open .cin-nav a:nth-child(3) {
    transition-delay: 0.13s;
  }

  body[data-page="landing"] .cin-header.is-menu-open .cin-nav a:nth-child(4) {
    transition-delay: 0.18s;
  }

  body[data-page="landing"] .cin-header.is-menu-open .cin-nav a:nth-child(5) {
    transition-delay: 0.23s;
  }

  body[data-page="landing"] .cin-header.is-menu-open .cin-nav a:nth-child(6) {
    transition-delay: 0.28s;
  }

  body[data-page="landing"] .cin-header.is-menu-open .mobile-menu-toggle {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
  }

  body[data-page="landing"] .cin-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  body[data-page="landing"] .cin-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  body[data-page="landing"] .cin-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .cin-actions .cin-btn-ghost {
    display: none;
  }

  body[data-page="landing"] .mobile-menu-toggle {
    display: inline-flex;
  }

  .cin-brand {
    font-size: 24px;
  }

  .cin-btn {
    padding: 14px 22px;
    font-size: 14px;
  }

  .cin-hero-title {
    font-size: clamp(68px, 18vw, 130px);
  }

  .cin-panel {
    min-height: 92vh;
    padding: 86px 22px;
  }

  .cin-massive-text {
    font-size: clamp(42px, 13vw, 82px);
  }

  .cin-massive-sub {
    font-size: clamp(18px, 5vw, 23px);
  }

  .store-badges {
    display: grid;
  }

  .faq-section {
    padding: 88px 22px 56px;
  }

  .faq-title {
    margin-bottom: 42px;
  }

  .faq-list {
    gap: 30px;
  }

  .identity-badge {
    margin-bottom: 24px;
  }

  .verified-hero {
    min-height: 94vh;
    padding: 106px 20px 64px;
  }

  .verified-hero-mark {
    margin-bottom: 26px;
  }

  .verified-hero p {
    font-size: clamp(18px, 5vw, 23px);
  }

  .verified-section,
  .apply-section {
    width: min(100% - 36px, 1180px);
  }

  .verified-section {
    padding: 82px 0;
  }

  .verified-section-head {
    margin-bottom: 38px;
  }

  .criteria-section {
    grid-template-columns: 1fr;
  }

  .verified-copy-list {
    gap: 30px;
  }

  .criteria-copy {
    position: relative;
    top: auto;
  }

  .criteria-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .apply-section {
    padding: 38px 0 82px;
  }

  .site-footer {
    width: min(100% - 36px, 1200px);
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 48px;
  }

  .footer-bottom {
    display: block;
  }
}

@media (max-width: 430px) {
  .cin-hero {
    min-height: 96vh;
  }

  .cin-hero-title,
  .cin-massive-text {
    overflow-wrap: anywhere;
  }

  .cin-btn-large,
  .store-badge {
    width: 100%;
  }
}
