:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #5d5644;
  --paper: #ffffff;
  --soft: #f7f3e8;
  --line: #ded5bd;
  --yellow: #f6c90e;
  --yellow-dark: #b88900;
  --amber: #ffb000;
  --charcoal: #1d1d1d;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.16);
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 28px, var(--container));
  margin-inline: auto;
}

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

.skip-link:focus {
  z-index: 20;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid rgba(246, 201, 14, 0.22);
  background: rgba(17, 17, 17, 0.88);
  color: var(--paper);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease;
}

.brand-logo {
  flex: 0 0 128px;
  width: 128px !important;
  height: 54px !important;
  max-width: 128px;
  max-height: 54px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.brand-name {
  line-height: 1;
}

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

.brand:hover .brand-logo {
  transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 12px;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

.site-nav a:not(.nav-cta):hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--paper);
  transform: translateY(-1px);
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:not(.nav-cta):hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid rgba(246, 201, 14, 0.5);
  color: var(--yellow) !important;
  font-weight: 800 !important;
}

.nav-cta:hover {
  background: var(--amber);
  color: var(--ink) !important;
  transform: translateY(-1px);
}

.site-nav a.is-active,
.site-nav a[aria-current="true"] {
  background: var(--yellow);
  color: var(--ink) !important;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(246, 201, 14, 0.2);
}

.site-nav a.is-active::after,
.site-nav a[aria-current="true"]::after {
  opacity: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: transparent;
  color: var(--paper);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: flex;
  min-height: 82svh;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.94) 0%, rgba(17, 17, 17, 0.7) 50%, rgba(17, 17, 17, 0.16) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroImageIn 900ms ease-out both;
}

.hero-content {
  align-self: center;
  padding-block: 120px 72px;
  color: var(--paper);
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions {
  animation: heroContentIn 720ms ease-out both;
}

.hero h1 {
  animation-delay: 90ms;
}

.hero-copy {
  animation-delay: 180ms;
}

.hero-actions {
  animation-delay: 270ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow-dark);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.6rem, 4.8rem, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 2.5rem, 2.9rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.text-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button {
  padding: 12px 18px;
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--amber);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.18);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.proof-grid div {
  min-height: 116px;
  padding: 24px;
  background: var(--paper);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 6px;
  font-size: 1rem;
}

.proof-grid span {
  color: var(--muted);
}

.section {
  padding-block: 86px;
  background: var(--paper);
}

.section-light {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.service-card {
  min-height: 290px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(21, 23, 26, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.12);
  transform: translateY(-5px);
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.course-card {
  display: grid;
  min-height: 360px;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.course-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.13);
  transform: translateY(-5px);
}

.course-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.course-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  padding: 5px 10px;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.course-logo {
  display: inline-flex;
  width: 96px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8dd;
  padding: 8px;
}

.course-logo img {
  width: 100%;
  max-height: 30px;
  object-fit: contain;
}

.course-card p {
  margin: 0;
  color: var(--muted);
}

.course-price {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.course-price strong,
.course-price span {
  display: block;
}

.course-price strong {
  font-size: 1.85rem;
  line-height: 1;
}

.course-price span {
  margin-top: 8px;
  color: var(--muted);
}

.course-link {
  display: inline-flex;
  min-height: 42px;
  width: fit-content;
  align-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.course-link:hover {
  background: var(--amber);
  transform: translateY(-2px);
}

.service-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
}

.service-icon.web {
  background:
    linear-gradient(var(--ink) 0 0) 12px 15px / 24px 4px no-repeat,
    linear-gradient(var(--ink) 0 0) 12px 25px / 18px 4px no-repeat,
    #ffe68a;
}

.service-icon.app {
  border: 3px solid var(--ink);
  background:
    radial-gradient(circle at 50% 82%, var(--ink) 0 3px, transparent 4px),
    #f6c90e;
}

.service-icon.content {
  background:
    linear-gradient(var(--ink) 0 0) 12px 12px / 24px 5px no-repeat,
    linear-gradient(var(--ink) 0 0) 12px 22px / 18px 5px no-repeat,
    linear-gradient(var(--ink) 0 0) 12px 32px / 22px 5px no-repeat,
    #fff0b3;
}

.service-icon.cloud {
  background:
    radial-gradient(circle at 16px 18px, var(--ink) 0 5px, transparent 6px),
    radial-gradient(circle at 28px 16px, var(--ink) 0 8px, transparent 9px),
    radial-gradient(circle at 35px 24px, var(--ink) 0 6px, transparent 7px),
    linear-gradient(var(--ink) 0 0) 14px 26px / 24px 8px no-repeat,
    #ffe68a;
}

.service-icon.deploy {
  background:
    linear-gradient(45deg, transparent 42%, var(--ink) 43% 57%, transparent 58%) 12px 10px / 24px 24px no-repeat,
    linear-gradient(var(--ink) 0 0) 22px 12px / 4px 24px no-repeat,
    linear-gradient(var(--ink) 0 0) 14px 30px / 20px 4px no-repeat,
    #f6c90e;
}

.service-icon.support {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 9px, var(--ink) 10px 13px, transparent 14px),
    linear-gradient(var(--ink) 0 0) 22px 8px / 4px 32px no-repeat,
    linear-gradient(var(--ink) 0 0) 8px 22px / 32px 4px no-repeat,
    #ffdf5a;
}

.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.cloud-layout {
  align-items: center;
}

.cloud-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cloud-provider {
  position: relative;
  display: inline-flex;
  width: 138px;
  min-height: 58px;
  padding: 12px 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
  color: var(--ink);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  font-weight: 900;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.cloud-provider:hover {
  border-color: var(--yellow);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.12);
  transform: translateY(-3px);
}

.cloud-provider img {
  width: 100%;
  max-height: 34px;
  object-fit: contain;
}

.cloud-button {
  margin-top: 28px;
}

.cloud-checklist {
  display: grid;
  gap: 16px;
}

.cloud-checklist article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.cloud-checklist article:hover {
  border-color: var(--yellow);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.1);
  transform: translateY(-4px);
}

.cloud-checklist span {
  display: grid;
  width: 74px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--yellow);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 900;
}

.cloud-checklist p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-accent {
  background: var(--ink);
  color: var(--paper);
}

.section-accent .eyebrow {
  color: var(--yellow);
}

.support-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: end;
}

.support-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.launch-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(246, 201, 14, 0.32);
  border-radius: 8px;
  background: rgba(246, 201, 14, 0.32);
}

.launch-stats div {
  min-height: 112px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.launch-stats strong,
.launch-stats span {
  display: block;
}

.launch-stats strong {
  color: var(--yellow);
  font-size: 2.1rem;
  line-height: 1;
}

.launch-stats span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-header {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.form-header h3 {
  margin-top: 4px;
  font-size: 1.35rem;
  font-weight: 700;
}

.form-kicker {
  margin: 0;
  color: var(--yellow-dark);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d6cba6;
  border-radius: 8px;
  background: #fffdf6;
  color: var(--ink);
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8b8268;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.button:focus,
.text-button:focus,
.site-nav a:focus,
.brand:focus {
  outline: 3px solid rgba(246, 201, 14, 0.42);
  outline-offset: 3px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--yellow-dark);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(246, 201, 14, 0.16);
}

.form-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding-top: 4px;
}

.form-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-button {
  min-width: 170px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-card {
  display: flex;
  width: min(100%, 470px);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.contact-label {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.text-button {
  padding: 10px 14px;
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.text-button:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.copy-button {
  min-width: 132px;
  white-space: nowrap;
}

.copy-button.is-copied {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.site-footer {
  border-top: 1px solid rgba(246, 201, 14, 0.22);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) 1.5fr;
  gap: 56px;
  padding-block: 56px 42px;
}

.footer-brand {
  max-width: 440px;
}

.footer-logo {
  display: inline-flex;
  width: 150px;
  height: 64px;
  align-items: center;
}

.footer-logo img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.footer-brand h2 {
  max-width: 420px;
  margin-top: 24px;
  color: var(--paper);
  font-size: 1.7rem;
  line-height: 1.12;
}

.footer-brand p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3 {
  margin-bottom: 6px;
  color: var(--yellow);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--paper);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  text-align: right;
}

.animate-ready {
  opacity: 0;
  transform: translateY(22px);
}

.animate-ready.is-visible {
  animation: revealUp 620ms ease-out both;
  animation-delay: var(--delay, 0ms);
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.03);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  .service-grid,
  .course-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .contact-layout,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 240px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .header-inner {
    min-height: 58px;
  }

  .brand-logo {
    flex-basis: 104px;
    width: 104px !important;
    height: 44px !important;
    max-width: 104px;
    max-height: 44px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 58px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(17, 17, 17, 0.98);
    padding: 10px;
    animation: menuIn 180ms ease-out both;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    padding: 12px;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 4px;
  }

  .hero {
    min-height: 80svh;
  }

  .hero::after {
    background: rgba(21, 23, 26, 0.72);
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-content {
    padding-block: 98px 52px;
  }

  h1 {
    font-size: clamp(3rem, 3.4rem, 3.8rem);
  }

  h2 {
    font-size: clamp(1.75rem, 2rem, 2.2rem);
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .proof-grid,
  .service-grid,
  .course-grid,
  .launch-stats {
    grid-template-columns: 1fr;
  }

  .form-row,
  .form-footer {
    grid-template-columns: 1fr;
  }

  .contact-card {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 44px 30px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom span {
    text-align: left;
  }

  .form-button {
    width: 100%;
  }

  .cloud-checklist article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section {
    padding-block: 64px;
  }

}

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

  .animate-ready {
    opacity: 1;
    transform: none;
  }
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
