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

html {
  scroll-behavior: smooth;
}

:root {
  --paper: #f3efe5;
  --ink: #0d0d0d;
  --green: #00e572;
  --white: #ffffff;
  --muted: #57544c;
  --line: 2px solid var(--ink);
  --shadow: 6px 6px 0 var(--ink);
  --gutter: 42px;
  --display: "Archivo Black", "Arial Black", -apple-system, sans-serif;
}

::selection {
  background: var(--green);
  color: var(--ink);
}

body {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

/* ---------- Header ---------- */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: var(--paper);
  border-bottom: var(--line);
  transition: transform 0.3s ease;
}

header.hide {
  transform: translateY(-100%);
}

.logo {
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.5px;
}

nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a {
  color: var(--ink);
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"] {
  background: var(--ink);
  color: var(--green);
  box-shadow: 4px 0 0 var(--ink), -4px 0 0 var(--ink);
}

nav a.nav-cta {
  background: var(--green);
  border: var(--line);
  padding: 9px 16px;
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
}

nav a.nav-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  padding: 160px var(--gutter) 90px;
}

.hero-sub {
  margin-top: 26px;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

.hero-stats {
  display: inline-flex;
  margin-top: 44px;
  border: var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-stat {
  padding: 16px 22px;
}

.hero-stat + .hero-stat {
  border-inline-start: var(--line);
}

.hero-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

.hero-stat span {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--muted);
}

h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6.2vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}

h1 span.stroke {
  display: inline-block;
  background: var(--green);
  padding: 0 0.14em;
  box-shadow: 5px 5px 0 var(--ink);
  margin: 0.06em 0;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn {
  font-family: inherit;
  border: var(--line);
  padding: 16px 26px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--green);
}

.btn-primary:hover {
  box-shadow: 2px 2px 0 var(--green);
}

.btn-green {
  background: var(--green);
  color: var(--ink);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
}

/* ---------- Hero card ---------- */

.hero-card {
  position: relative;
  border: 3px solid var(--ink);
  background: var(--white);
  padding: 22px;
  box-shadow: 10px 10px 0 var(--ink);
}

.browser-top {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.browser-top span {
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.browser-top span:first-child {
  background: var(--green);
}

.mock-block {
  position: relative;
  background: var(--green);
  border: var(--line);
  color: var(--ink);
  padding: 28px;
  height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.mock-title {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.02;
  text-transform: uppercase;
  max-width: 340px;
  z-index: 2;
}

.mock-title span {
  background: var(--ink);
  color: var(--green);
  padding: 0 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  z-index: 2;
}

.mock-grid div {
  height: 80px;
  border: var(--line);
  background: var(--white);
}

.mock-grid div:nth-child(2) {
  background: var(--ink);
}

.mock-grid div:nth-child(5) {
  background: var(--ink);
}

.mock-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: 60px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: var(--white);
}

/* ---------- Marquee strip ---------- */

.strip {
  background: var(--ink);
  border-top: var(--line);
  border-bottom: var(--line);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip-track {
  display: inline-block;
  animation: move 20s linear infinite;
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--green);
}

.strip-track span {
  margin-right: 24px;
}

.strip-track span::after {
  content: "★";
  margin-left: 24px;
  color: var(--white);
}

@keyframes move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */

.section {
  padding: 110px var(--gutter);
}

.section-header {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  margin-bottom: 56px;
  align-items: start;
}

.section-kicker {
  display: inline-block;
  justify-self: start;
  background: var(--ink);
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  padding: 8px 14px;
  box-shadow: 4px 4px 0 var(--green);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 400;
}

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  min-height: 340px;
  border: var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: inherit;
  text-decoration: none;
}

.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

a.card:hover {
  background: var(--green);
}

.card.short {
  min-height: 250px;
}

.card-number {
  font-family: var(--display);
  font-size: 14px;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--green);
  padding: 6px 12px;
  align-self: flex-start;
}

.card h3 {
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 400;
}

.card h3.smaller {
  font-size: 19px;
}

.card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 16px;
  margin-top: 16px;
}

a.card:hover p {
  color: var(--ink);
}

.card .card-link {
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  display: inline-block;
  border-bottom: 3px solid var(--green);
  align-self: flex-start;
}

/* ---------- Statement ---------- */

.statement {
  padding: 130px var(--gutter);
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-top: var(--line);
  border-bottom: var(--line);
}

.statement h2 {
  font-family: var(--display);
  font-size: clamp(34px, 5.6vw, 80px);
  line-height: 1;
  text-transform: uppercase;
  max-width: 1250px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.statement .green {
  background: var(--green);
  color: var(--ink);
  padding: 0 0.14em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.statement-shape {
  position: absolute;
  right: -160px;
  top: -160px;
  width: 320px;
  height: 320px;
  background: var(--green);
  transform: rotate(12deg);
  border: 3px solid var(--white);
}

.statement-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 70px;
  position: relative;
  z-index: 2;
}

.statement-points > div {
  border-top: 3px solid var(--green);
  padding-top: 20px;
}

.statement-points h3 {
  font-family: var(--display);
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--white);
}

.statement-points p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  border-top: 3px solid var(--ink);
  padding-top: 26px;
}

.step-num {
  font-family: var(--display);
  font-size: 58px;
  line-height: 1;
  color: var(--green);
  -webkit-text-stroke: 2px var(--ink);
  display: block;
}

.step h3 {
  font-family: var(--display);
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 18px 0 12px;
}

.step p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.view-all {
  padding-top: 40px;
  text-align: center;
}

/* ---------- Subpage layout ---------- */

.page-hero {
  padding: 170px var(--gutter) 70px;
  max-width: 1180px;
}

.page-hero .breadcrumbs {
  margin-bottom: 26px;
}

.page-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.6vw, 62px);
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 400;
}

.page-intro {
  margin-top: 26px;
  max-width: 760px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
}

.breadcrumbs {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  background: var(--green);
  color: var(--ink);
}

.breadcrumbs span.sep {
  margin: 0 8px;
}

.meta-line {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.meta-line .dot-sep {
  color: var(--green);
}

/* ---------- Prose ---------- */

.prose {
  padding: 20px var(--gutter) 100px;
  max-width: 860px;
  font-size: 17.5px;
  line-height: 1.75;
  color: #2b2a26;
}

.prose h2 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  margin: 64px 0 22px;
}

.prose h3 {
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  margin: 42px 0 16px;
}

.prose p {
  margin-bottom: 20px;
}

.prose ul,
.prose ol {
  margin: 0 0 22px 22px;
}

.prose li {
  margin-bottom: 10px;
}

.prose a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 3px solid var(--green);
}

.prose a:hover {
  background: var(--green);
  border-bottom-color: var(--ink);
}

.prose strong {
  color: var(--ink);
}

.prose blockquote {
  border: var(--line);
  border-left: 8px solid var(--green);
  background: var(--white);
  padding: 18px 22px;
  margin: 30px 0;
  color: var(--ink);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0;
  font-size: 15.5px;
  background: var(--white);
}

.prose th,
.prose td {
  border: var(--line);
  padding: 12px 14px;
  text-align: left;
}

.prose th {
  background: var(--ink);
  color: var(--green);
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 1px;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 860px;
  padding: 0 var(--gutter) 100px;
}

.faq-item {
  border: var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 26px 28px;
  margin-bottom: 22px;
}

.faq-item h3 {
  font-family: var(--display);
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--ink);
}

.faq-item p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}

.faq-item p a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 3px solid var(--green);
}

/* ---------- CTA band ---------- */

.cta-band {
  margin: 40px var(--gutter) 110px;
  border: 3px solid var(--ink);
  background: var(--green);
  color: var(--ink);
  padding: 56px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 10px 10px 0 var(--ink);
}

.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 400;
  max-width: 640px;
}

.cta-band .btn {
  background: var(--ink);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--white);
  flex: 0 0 auto;
}

.cta-band .btn:hover {
  box-shadow: 2px 2px 0 var(--white);
}

/* ---------- Blog cards ---------- */

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 0 var(--gutter) 110px;
}

.post-card {
  border: var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 250px;
}

.post-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
  background: var(--green);
}

.post-card .post-date {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
}

.post-card:hover .post-date {
  color: var(--ink);
}

.post-card h3 {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 400;
}

.post-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}

.post-card:hover p {
  color: var(--ink);
}

.post-card .read-more {
  color: var(--ink);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid var(--green);
  align-self: flex-start;
}

.post-card:hover .read-more {
  border-bottom-color: var(--ink);
}

/* ---------- Chips ---------- */

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0 var(--gutter) 90px;
  max-width: 1000px;
}

.chip-list a {
  border: var(--line);
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  padding: 12px 18px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.chip-list a:hover {
  background: var(--green);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

/* ---------- Footer ---------- */

.footer {
  padding: 90px var(--gutter) 36px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  background: var(--ink);
  color: var(--white);
  border-top: 3px solid var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 70px;
  align-items: start;
}

.footer-brand strong {
  font-family: var(--display);
  color: var(--white);
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
  margin: 14px 0 26px;
  max-width: 280px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-nav h4 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 16px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 14.5px;
}

.footer-nav a:hover {
  background: var(--green);
  color: var(--ink);
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.25);
  padding-top: 22px;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.socials a {
  width: 46px;
  height: 46px;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: 0.15s ease;
}

.socials a:hover {
  background: var(--green);
  color: var(--ink);
  border-color: var(--green);
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 var(--white);
}

.socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

/* ---------- Scroll top ---------- */

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border: var(--line);
  background: var(--green);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  z-index: 200;
  box-shadow: 4px 4px 0 var(--ink);
  transition: 0.12s ease;
}

.scroll-top:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

/* ---------- Language switcher ---------- */

.lang-switch {
  display: inline-flex;
  border: var(--line);
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
}

.lang-switch a {
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.lang-switch a + a {
  border-inline-start: var(--line);
}

.lang-switch a.on {
  background: var(--ink);
  color: var(--green);
  cursor: default;
}

.lang-switch a:not(.on):hover {
  background: var(--green);
  color: var(--ink);
}

.footer .lang-switch {
  margin-top: 26px;
  box-shadow: 4px 4px 0 var(--green);
}

/* ---------- Arabic (RTL) ---------- */

html[lang="ar"] {
  --display: "Alexandria", "Cairo", "Arial", sans-serif;
}

html[lang="ar"] body {
  font-family: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
}

/* Arabic is a connected script: never letter-space it, and it has no uppercase. */
html[lang="ar"] * {
  letter-spacing: 0 !important;
}

/* Alexandria needs explicit heavy weight (Archivo Black is single-weight 400). */
html[lang="ar"] :is(h1, .section-title, .page-title, .card h3, .card-number,
.statement h2, .cta-band h2, .post-card h3, .faq-item h3, .prose h2, .prose h3,
.mock-title, .strip-track, .logo, .footer-brand strong, .hero-stat strong, .step-num,
.step h3, .statement-points h3) {
  font-weight: 800;
}

/* Arabic script needs more vertical room than Latin display type. */
html[lang="ar"] h1 { line-height: 1.2; }
html[lang="ar"] .section-title,
html[lang="ar"] .page-title,
html[lang="ar"] .statement h2,
html[lang="ar"] .cta-band h2 { line-height: 1.3; }
html[lang="ar"] .mock-title { line-height: 1.35; }
html[lang="ar"] .card h3,
html[lang="ar"] .post-card h3 { line-height: 1.4; }

[dir="rtl"] .prose blockquote {
  border-left: var(--line);
  border-right: 8px solid var(--green);
}

[dir="rtl"] .prose ul,
[dir="rtl"] .prose ol {
  margin: 0 22px 22px 0;
}

[dir="rtl"] .prose th,
[dir="rtl"] .prose td {
  text-align: right;
}

/* Keep the marquee mechanics LTR; each span still renders its Arabic text RTL. */
[dir="rtl"] .strip {
  direction: ltr;
}

[dir="rtl"] .statement-shape {
  right: auto;
  left: -160px;
  transform: rotate(-12deg);
}

/* ---------- Responsive ---------- */

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

  .hero-card {
    max-width: 720px;
  }

  .post-grid,
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 18px;
  }

  header {
    padding: 14px 18px;
  }

  .logo {
    font-size: 20px;
  }

  nav {
    gap: 14px;
    font-size: 11px;
  }

  nav a.nav-cta {
    padding: 7px 11px;
  }

  .lang-switch a {
    padding: 7px 9px;
    font-size: 11px;
  }

  nav a.hide-mobile {
    display: none;
  }

  .hero {
    padding: 120px 18px 60px;
    gap: 42px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-stats {
    display: flex;
    width: 100%;
  }

  .hero-stat {
    flex: 1;
    padding: 12px 10px;
  }

  .hero-stat strong {
    font-size: 19px;
  }

  .hero-stat span {
    font-size: 10.5px;
  }

  .statement-points {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 46px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .step-num {
    font-size: 46px;
  }

  .view-all {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(32px, 9.5vw, 48px);
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 28px;
  }

  .btn {
    width: 100%;
    padding: 15px 20px;
  }

  .cta-band .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-card {
    padding: 14px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .mock-block {
    height: 380px;
    padding: 20px;
  }

  .mock-title {
    font-size: 26px;
  }

  .mock-circle {
    width: 220px;
    height: 220px;
    right: -100px;
    top: 80px;
  }

  .mock-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mock-grid div {
    height: 60px;
  }

  .strip {
    padding: 14px 0;
  }

  .strip-track {
    font-size: 17px;
  }

  .section {
    padding: 80px 18px;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  .section-title {
    font-size: clamp(26px, 7.5vw, 36px);
  }

  .cards,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .cards.two {
    grid-template-columns: 1fr;
  }

  .post-grid {
    padding: 0 18px 80px;
  }

  .chip-list {
    padding: 0 18px 70px;
  }

  .card {
    min-height: 260px;
    padding: 24px;
  }

  .card h3 {
    font-size: 20px;
  }

  .statement {
    padding: 90px 18px;
  }

  .statement h2 {
    font-size: clamp(28px, 8.5vw, 42px);
  }

  .statement-shape {
    width: 220px;
    height: 220px;
    right: -120px;
    top: -120px;
  }

  .page-hero {
    padding: 140px 18px 46px;
  }

  .page-title {
    font-size: clamp(26px, 7.5vw, 36px);
  }

  .page-intro {
    font-size: 17px;
  }

  .prose {
    padding: 10px 18px 70px;
    font-size: 16.5px;
  }

  .faq-list {
    padding: 0 18px 70px;
  }

  .cta-band {
    margin: 20px 18px 80px;
    padding: 40px 26px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .footer {
    padding: 70px 18px 24px;
    gap: 40px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .socials {
    flex-wrap: wrap;
  }

  .scroll-top {
    right: 16px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 30px;
  }

  .mock-title {
    font-size: 23px;
  }

  .section-title {
    font-size: 25px;
  }

  .statement h2 {
    font-size: 27px;
  }
}
