:root {
  --navy: #273957;
  --navy-deep: #101b2d;
  --cyan: #68d7cf;
  --cyan-strong: #38bfb8;
  --ink: #111827;
  --slate: #546071;
  --line: #d9e2ea;
  --cloud: #f4f8fb;
  --white: #ffffff;
  --lime: #b8e36b;
  --shadow: 0 22px 60px rgba(16, 27, 45, 0.18);
  --radius: 4px;
  --page-x: clamp(20px, 5vw, 80px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    "Sora", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  min-height: 82px;
  padding: 12px var(--page-x);
  color: var(--white);
  background: rgba(16, 27, 45, 0.72);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  background: rgba(16, 27, 45, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 235px;
}

.brand img {
  width: 248px;
  height: auto;
}

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

.nav a {
  min-height: 42px;
  padding: 12px 11px;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.nav .nav-action {
  color: var(--navy-deep);
  background: var(--cyan);
}

.nav .nav-action:hover,
.nav .nav-action:focus-visible {
  color: var(--navy-deep);
  background: var(--lime);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 118px var(--page-x) 54px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 28%, rgba(104, 215, 207, 0.34), transparent 34%),
    linear-gradient(90deg, rgba(104, 215, 207, 0.08), transparent 30%),
    linear-gradient(135deg, #101b2d 0%, #273957 56%, #17233a 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, rgba(16, 27, 45, 0.52), transparent);
  pointer-events: none;
}

.hero-content,
.hero-preview {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(1.95rem, 4.1vw, 3.95rem);
  line-height: 1.02;
  font-weight: 800;
}

.hero p {
  width: min(100%, 650px);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--navy-deep);
  background: var(--cyan);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--lime);
}

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

.hero-preview {
  min-height: 520px;
}

.device {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.phone {
  right: 4%;
  bottom: 16px;
  width: min(240px, 42vw);
  aspect-ratio: 0.54;
  padding: 24px 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(233, 248, 248, 0.84));
}

.phone::before {
  content: "";
  position: absolute;
  inset: 9px 50% auto;
  width: 54px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(16, 27, 45, 0.24);
}

.device-bar,
.app-line,
.app-card,
.app-grid span {
  border-radius: 3px;
}

.device-bar {
  height: 58px;
  background: var(--navy);
}

.app-card {
  height: 96px;
  margin-top: 18px;
}

.app-card.cyan {
  background: linear-gradient(135deg, var(--cyan), #aaf2dc);
}

.app-line {
  width: 58%;
  height: 10px;
  margin-top: 16px;
  background: rgba(39, 57, 87, 0.18);
}

.app-line.wide {
  width: 84%;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.app-grid span {
  min-height: 54px;
  background: rgba(39, 57, 87, 0.12);
}

.browser {
  top: 38px;
  left: 0;
  width: min(440px, 72vw);
  aspect-ratio: 1.36;
  overflow: hidden;
  background: rgba(244, 248, 251, 0.94);
}

.browser-top {
  display: flex;
  gap: 7px;
  height: 38px;
  align-items: center;
  padding: 0 14px;
  background: var(--navy-deep);
}

.browser-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
}

.browser-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 20px;
  padding: 24px;
}

.browser-layout > div:first-child {
  min-height: 180px;
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(104, 215, 207, 0.42), transparent),
    var(--navy);
}

.browser-layout > div:last-child {
  display: grid;
  align-content: start;
  gap: 12px;
}

.browser-layout span {
  height: 18px;
  border-radius: 999px;
  background: rgba(39, 57, 87, 0.18);
}

.browser-layout span:first-child {
  width: 72%;
  height: 26px;
  background: var(--navy);
}

.browser-layout span:nth-child(2) {
  width: 92%;
}

.browser-layout span:nth-child(3) {
  width: 64%;
}

.intro-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 28px);
  padding: 26px 24px;
  color: var(--white);
  background: var(--navy-deep);
  text-transform: uppercase;
  overflow: hidden;
}

.intro-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.82rem, 1.7vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.intro-band span {
  color: var(--cyan);
  font-size: clamp(1.2rem, 2.8vw, 2rem);
}

.section {
  padding: clamp(76px, 9vw, 126px) var(--page-x);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  margin-bottom: 44px;
}

.section h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.03;
  font-weight: 800;
}

.section p {
  color: var(--slate);
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.app-development {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  color: var(--white);
  background:
    radial-gradient(circle at 72% 12%, rgba(184, 227, 107, 0.22), transparent 30%),
    radial-gradient(circle at 20% 85%, rgba(104, 215, 207, 0.18), transparent 34%),
    #101b2d;
}

.app-development h2,
.web-stack h2 {
  color: inherit;
}

.app-development p {
  color: rgba(255, 255, 255, 0.74);
}

.app-copy {
  max-width: 760px;
}

.language-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.language-row span {
  display: inline-flex;
  gap: 10px;
  min-height: 34px;
  align-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 800;
}

.language-row img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.mobile-lab {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.lab-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.lab-logo,
.lab-logo-group {
  margin-bottom: 20px;
}

.lab-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.lab-logo-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.native-ios,
.native-android {
  grid-column: span 3;
}

.cross-platform {
  grid-column: span 6;
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(104, 215, 207, 0.2), transparent),
    rgba(255, 255, 255, 0.08);
}

.lab-card span {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lab-card h3 {
  margin: 26px 0 14px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
  line-height: 1;
}

.cross-platform h3 {
  margin-top: 22px;
}

.lab-card p {
  margin: 0;
}

.web-stack {
  color: var(--navy-deep);
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.stack-header {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.46fr);
  gap: clamp(26px, 6vw, 84px);
  align-items: end;
  margin-bottom: 38px;
}

.stack-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.code-window {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0c1524;
  border: 1px solid rgba(16, 27, 45, 0.18);
  box-shadow: 0 28px 80px rgba(16, 27, 45, 0.16);
}

.code-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 18px;
  background: #121f34;
}

.code-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.code-lines {
  display: grid;
  align-content: center;
  min-height: 372px;
  padding: clamp(22px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.96rem, 1.3vw, 1.15rem);
  line-height: 1.9;
}

.code-lines p {
  margin: 0;
  color: inherit;
}

.code-lines b {
  color: var(--cyan);
  font-weight: 800;
}

.code-lines i {
  color: var(--lime);
  font-style: normal;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(156px, 1fr));
  gap: 12px;
}

.tech-card {
  display: grid;
  align-content: start;
  min-height: 196px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(16, 27, 45, 0.07);
}

.tech-logo {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--navy-deep);
}

.tech-logo img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.tech-logo svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.supabase .tech-logo {
  background: #0b1726;
}

.next .tech-logo {
  background: #ffffff;
  border: 1px solid var(--line);
}

.react .tech-logo {
  background: #0b1726;
}

.typescript .tech-logo {
  background: #eaf2ff;
}

.vite .tech-logo {
  background: #fff7d6;
}

.mysql .tech-logo {
  background: #edf6fb;
}

.python .tech-logo {
  background: #edf4ff;
}

.rust .tech-logo {
  background: #ffffff;
  border: 1px solid var(--line);
}

.tauri .tech-logo {
  background: #102238;
}

.sql-logo {
  color: #38bfb8;
  background: #e9fbf9;
}

.tech-card h3 {
  margin: 0 0 10px;
  color: var(--navy-deep);
  font-size: 1.16rem;
}

.tech-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 191, 184, 0.55);
  box-shadow: 0 20px 45px rgba(16, 27, 45, 0.1);
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 56px;
  color: var(--cyan-strong);
  background: rgba(104, 215, 207, 0.13);
  border-radius: 6px;
}

.icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.timeline h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 1.34rem;
  line-height: 1.2;
}

.service-card p {
  margin: 16px 0 0;
}

.method {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 92px);
  background: var(--cloud);
}

.method-copy {
  position: sticky;
  top: 118px;
  align-self: start;
}

.method-copy p {
  margin-top: 22px;
}

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  color: var(--cyan-strong);
  font-size: 0.95rem;
  font-weight: 800;
}

.timeline p {
  grid-column: 2;
  margin: -8px 0 0;
}

.platforms {
  background:
    linear-gradient(90deg, rgba(104, 215, 207, 0.11), transparent 38%),
    var(--white);
}

.platform-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(420px, 0.78fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  position: relative;
  min-height: 64px;
  padding: 16px 16px 16px 46px;
  color: var(--navy-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(16, 27, 45, 0.06);
}

.capability-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background: var(--cyan);
  border-radius: 3px;
  box-shadow: 0 0 0 5px rgba(104, 215, 207, 0.18);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.58fr);
  gap: clamp(34px, 7vw, 92px);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 0%, rgba(104, 215, 207, 0.22), transparent 31%),
    linear-gradient(135deg, #101b2d, #273957);
}

.contact h2,
.contact p {
  color: var(--white);
}

.contact-copy img {
  width: min(620px, 100%);
  margin-bottom: 44px;
}

.contact p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: "Sora", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-links a {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-links svg,
.footer-links svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.4;
}

.form-status.success {
  color: var(--cyan);
}

.form-status.error {
  color: #ffb4b4;
}

.spam-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(16, 27, 45, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(104, 215, 207, 0.16);
}

.contact-form option {
  color: var(--ink);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px var(--page-x);
  color: rgba(255, 255, 255, 0.72);
  background: #08101d;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer p {
  margin: 0;
  color: var(--white);
  font-weight: 760;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 112px;
  color: var(--white);
  font-family: "Century Gothic", CenturyGothic, AppleGothic, Arial, sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.footer-mark .tag {
  color: var(--white);
}

.footer-mark .letters {
  color: var(--cyan);
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--cyan);
}

@media (max-width: 960px) {
  .site-header {
    width: 100%;
    margin-top: 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    padding: 12px;
    background: rgba(16, 27, 45, 0.98);
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    min-height: 48px;
  }

  .hero,
  .method,
  .platform-panel,
  .contact,
  .section-heading,
  .app-development,
  .stack-header,
  .stack-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  .hero-preview {
    min-height: 420px;
  }

  .browser {
    left: 0;
  }

  .phone {
    right: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .mobile-lab,
  .tech-grid,
  .capability-list {
    grid-template-columns: 1fr;
  }

  .native-ios,
  .native-android,
  .cross-platform,
  .tech-card:nth-child(1),
  .tech-card:nth-child(2),
  .tech-card:nth-child(3),
  .tech-card:nth-child(4),
  .tech-card:nth-child(5) {
    grid-column: auto;
  }

  .code-window {
    min-height: 420px;
  }

  .code-lines {
    min-height: 372px;
  }

  .service-card {
    min-height: auto;
  }

  .icon-wrap {
    margin-bottom: 34px;
  }

  .method-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 156px;
  }

  .brand {
    min-width: 0;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 88svh;
    align-content: center;
    padding: 102px 20px 34px;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    line-height: 1.05;
  }

  .hero p {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-preview {
    display: none;
  }

  .browser {
    width: 100%;
  }

  .phone {
    width: 168px;
  }

  .intro-band {
    justify-content: center;
    gap: 10px;
    padding-inline: 14px;
    overflow: hidden;
  }

  .intro-band p {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .section {
    padding-inline: 20px;
  }

  .app-development,
  .web-stack {
    padding-block: 74px;
  }

  .language-row span {
    flex: 1 1 calc(50% - 18px);
    justify-content: flex-start;
  }

  .lab-card,
  .tech-card {
    min-height: auto;
  }

  .lab-card h3 {
    margin-top: 28px;
  }

  .code-window {
    min-height: 360px;
  }

  .code-lines {
    min-height: 312px;
    overflow: hidden;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline p {
    grid-column: auto;
    margin-top: 2px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer {
    flex-direction: column;
    align-items: stretch;
    padding-inline: 20px;
  }

  .footer-links {
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-mark {
    justify-content: flex-end;
    align-self: flex-end;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
