@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #080c17;
  --ink-soft: #121827;
  --paper: #f3f5f7;
  --white: #ffffff;
  --muted: #687184;
  --line: rgba(8, 12, 23, 0.13);
  --cyan: #62e6f2;
  --blue: #4b7cff;
  --violet: #8f6bff;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow: 0 32px 80px rgba(4, 9, 24, 0.16);
  --font-display: 'Manrope', 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--cyan);
  color: var(--ink);
  padding: 12px 16px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 23, 0.78);
  backdrop-filter: blur(22px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(98, 230, 242, 0.18), rgba(143, 107, 255, 0.25));
  box-shadow: inset 0 0 22px rgba(98, 230, 242, 0.08);
}

.brand-mark::before {
  position: absolute;
  width: 21px;
  height: 21px;
  border: 2px solid var(--cyan);
  border-right-color: transparent;
  border-radius: 50%;
  content: '';
}

.brand-mark span,
.brand-mark i {
  position: absolute;
  font-size: 0;
}

.brand-mark i::after {
  position: absolute;
  top: -2px;
  left: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 7px 8px 0 var(--cyan);
  content: '';
}

.brand-name {
  font-size: 19px;
}

.brand-name span {
  color: #9ca7b9;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  color: #b7bfce;
  font-size: 14px;
  font-weight: 500;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--cyan);
  content: '';
  transition: transform 0.25s ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 0 18px;
  color: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  border-color: rgba(98, 230, 242, 0.45);
  background: rgba(98, 230, 242, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 158px 0 0;
  background:
    radial-gradient(circle at 66% 18%, rgba(75, 124, 255, 0.15), transparent 32%),
    linear-gradient(145deg, #080c17 0%, #0a0f1c 68%, #11152a 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  content: '';
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.hero-glow--one {
  top: 12%;
  right: -180px;
  width: 470px;
  height: 470px;
  background: rgba(98, 230, 242, 0.08);
}

.hero-glow--two {
  bottom: 8%;
  left: -150px;
  width: 360px;
  height: 360px;
  background: rgba(143, 107, 255, 0.1);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 590px;
  align-items: center;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #aab4c5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 22px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 8px 0 14px var(--cyan);
}

.eyebrow--dark {
  color: #687184;
}

.hero h1 {
  max-width: 630px;
  margin: 25px 0 25px;
  font-family: var(--font-display);
  font-size: clamp(49px, 5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.hero h1 em {
  display: block;
  background: linear-gradient(90deg, var(--cyan), #76a5ff 50%, #b299ff);
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-copy > p {
  max-width: 570px;
  margin: 0;
  color: #a8b1c0;
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 29px;
  border: 0;
  border-radius: 100px;
  padding: 0 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.button--primary {
  background: var(--cyan);
  box-shadow: 0 16px 40px rgba(98, 230, 242, 0.2);
  color: var(--ink);
}

.button--primary:hover {
  box-shadow: 0 20px 50px rgba(98, 230, 242, 0.32);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 38px;
  color: #778297;
  font-size: 12px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof i {
  color: var(--cyan);
  font-style: normal;
}

.hero-visual {
  position: relative;
  min-width: 0;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1.5deg);
}

.browser-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.43), 0 0 80px rgba(75, 124, 255, 0.12);
}

.browser-top {
  display: grid;
  height: 42px;
  align-items: center;
  grid-template-columns: 80px 1fr 30px;
  border-bottom: 1px solid #e6e9ed;
  background: #f6f7f9;
  color: #9aa2ad;
  font-size: 9px;
  text-align: center;
}

.browser-dots {
  display: flex;
  gap: 5px;
  padding-left: 14px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7dbe1;
}

.browser-lock {
  color: #a3abb6;
  font-style: normal;
}

.browser-body {
  min-height: 460px;
  padding: 0 30px 28px;
  background: #eefaff;
  color: #0b2630;
}

.mock-nav {
  display: flex;
  height: 67px;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
}

.mock-nav strong {
  font-size: 14px;
  letter-spacing: -0.04em;
}

.mock-nav span {
  color: #6e858d;
}

.mock-nav i {
  display: none;
}

.mock-hero {
  position: relative;
  display: grid;
  min-height: 238px;
  overflow: hidden;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  border-radius: 17px;
  background: #0b2932;
  color: #fff;
}

.mock-hero > div:first-child {
  position: relative;
  z-index: 2;
  padding: 32px;
}

.mock-hero span {
  color: #9ddbe6;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.mock-hero h2 {
  max-width: 250px;
  margin: 10px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.mock-hero button {
  border: 0;
  border-radius: 30px;
  background: #72e0ed;
  padding: 10px 14px;
  color: #0b2932;
  font-size: 8px;
  font-weight: 700;
}

.mock-building {
  position: absolute;
  right: -20px;
  bottom: -28px;
  width: 48%;
  height: 92%;
  transform: skewY(-4deg);
  border-radius: 12px 0 0;
  background: linear-gradient(145deg, #87bbc4, #163e48);
  box-shadow: -20px -20px 55px rgba(114, 224, 237, 0.14);
}

.mock-building::before {
  position: absolute;
  inset: 12px;
  background: linear-gradient(90deg, transparent 46%, rgba(255,255,255,.16) 47%, transparent 50%), linear-gradient(transparent 31%, rgba(255,255,255,.18) 32%, transparent 34%, transparent 64%, rgba(255,255,255,.18) 65%, transparent 67%);
  content: '';
}

.mock-building i {
  position: absolute;
  width: 20px;
  height: 31px;
  background: rgba(197, 239, 243, 0.55);
}

.mock-building i:nth-child(1) { top: 24px; left: 25px; }
.mock-building i:nth-child(2) { top: 24px; left: 70px; }
.mock-building i:nth-child(3) { top: 78px; left: 25px; }
.mock-building i:nth-child(4) { top: 78px; left: 70px; }
.mock-building i:nth-child(5) { top: 130px; left: 25px; }
.mock-building i:nth-child(6) { top: 130px; left: 70px; }

.mock-cards {
  display: grid;
  margin-top: 15px;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.mock-cards > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: #19313a;
  font-size: 8px;
}

.mock-cards i {
  height: 55px;
  margin-bottom: 8px;
  border-radius: 9px;
  background: linear-gradient(145deg, #b6d5d9, #759aa1);
}

.mock-cards > div:nth-child(2) i { background: linear-gradient(145deg, #eadfc7, #a99978); }
.mock-cards > div:nth-child(3) i { background: linear-gradient(145deg, #c4d5c1, #789078); }
.mock-cards span { margin-top: 3px; color: #819297; font-size: 7px; letter-spacing: 0; }

.floating-pill {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(14, 20, 36, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  padding: 11px 14px;
  backdrop-filter: blur(14px);
}

.floating-pill > i {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 9px;
  background: rgba(98, 230, 242, 0.1);
  color: var(--cyan);
  font-style: normal;
  font-size: 13px;
}

.floating-pill span {
  display: flex;
  flex-direction: column;
  color: #768298;
  font-size: 8px;
  line-height: 1.5;
}

.floating-pill strong {
  color: #e6ebf4;
  font-size: 9px;
  font-weight: 600;
}

.floating-pill--top { top: 52px; right: -35px; }
.floating-pill--bottom { bottom: 42px; left: -45px; }

.hero-marquee {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 89px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #7c8698;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-marquee i {
  color: var(--cyan);
  font-style: normal;
}

.section {
  padding: 132px 0;
}

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

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  margin-bottom: 64px;
}

.section-heading h2,
.process-intro h2,
.contact-copy h2 {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.section-heading--dark > p {
  color: #8e98aa;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 17px;
}

.service-card {
  position: relative;
  min-height: 305px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 34px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(16, 31, 60, 0.09);
}

.service-card--featured {
  grid-row: span 2;
  min-height: 628px;
  padding: 44px;
  background: linear-gradient(145deg, #dffbff, #eef5ff 58%, #ece7ff);
}

.service-card--featured::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 310px;
  height: 310px;
  border: 44px solid rgba(75, 124, 255, 0.1);
  border-radius: 50%;
  content: '';
}

.service-card--dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.service-number {
  position: absolute;
  top: 31px;
  right: 32px;
  color: #a1a8b3;
  font-size: 11px;
  font-weight: 700;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 31px;
  border-radius: 16px;
  background: #e8f7f8;
  color: #245c65;
  font-size: 22px;
}

.service-card--featured .service-icon {
  width: 64px;
  height: 64px;
  background: var(--ink);
  color: var(--cyan);
}

.service-card--dark .service-icon {
  background: rgba(98, 230, 242, 0.11);
  color: var(--cyan);
}

.service-card h3 {
  margin: 0 0 13px;
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.service-card--featured h3 {
  font-size: 36px;
}

.service-card p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-card--dark p {
  color: #9aa5b7;
}

.service-card ul {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 13px;
  list-style: none;
  color: #485263;
  font-size: 13px;
}

.service-card li::before {
  margin-right: 9px;
  color: #2aaebd;
  content: '✓';
}

.service-card > a {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 12px;
  font-weight: 700;
}

.service-card--featured > a {
  right: 44px;
  bottom: 40px;
  left: 44px;
}

.service-card--dark > a {
  border-color: rgba(255,255,255,.12);
}

.portfolio {
  background: var(--ink);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 22px;
}

.portfolio-card {
  min-width: 0;
}

.portfolio-preview {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--card-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-card:hover .portfolio-preview {
  transform: translateY(-7px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.preview-chrome {
  display: flex;
  height: 35px;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  background: rgba(255,255,255,.72);
  padding: 0 13px;
}

.preview-chrome i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,.16);
}

.preview-chrome span {
  margin-left: auto;
  margin-right: auto;
  color: rgba(0,0,0,.36);
  font-size: 7px;
}

.preview-page {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 29px 34px;
  background: linear-gradient(135deg, var(--card-soft), color-mix(in srgb, var(--card-accent) 20%, white));
  color: var(--card-dark);
}

.preview-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 71px;
}

.preview-nav strong {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: -0.04em;
}

.preview-nav span {
  opacity: 0.6;
  font-size: 7px;
}

.preview-page small {
  position: relative;
  z-index: 2;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.preview-page h3 {
  position: relative;
  z-index: 2;
  max-width: 310px;
  margin: 10px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 43px);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.preview-page button {
  position: relative;
  z-index: 2;
  border: 0;
  border-radius: 30px;
  background: var(--card-dark);
  padding: 10px 15px;
  color: var(--card-soft);
  font-size: 8px;
  font-weight: 700;
}

.preview-art {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 280px;
  height: 280px;
  transform: rotate(-10deg);
  border: 52px solid color-mix(in srgb, var(--card-accent) 55%, transparent);
  border-radius: 46% 54% 62% 38%;
}

.preview-art::before {
  position: absolute;
  inset: 20px;
  border: 2px solid color-mix(in srgb, var(--card-dark) 20%, transparent);
  border-radius: 50%;
  content: '';
}

.preview-art i {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--card-dark);
}

.preview-art i:nth-child(1) { top: 12px; left: 5px; }
.preview-art i:nth-child(2) { top: 93px; left: -31px; }
.preview-art i:nth-child(3) { right: -24px; bottom: 42px; }

.portfolio-card--restaurante .preview-page,
.portfolio-card--advocacia .preview-page,
.portfolio-card--loja .preview-page {
  background: var(--card-dark);
  color: var(--card-soft);
}

.portfolio-card--restaurante .preview-page button,
.portfolio-card--advocacia .preview-page button,
.portfolio-card--loja .preview-page button {
  background: var(--card-accent);
  color: var(--card-dark);
}

.portfolio-card--restaurante .preview-art,
.portfolio-card--advocacia .preview-art,
.portfolio-card--loja .preview-art {
  border-color: color-mix(in srgb, var(--card-accent) 36%, transparent);
}

.portfolio-card--escola .preview-art {
  border-radius: 12px;
  transform: rotate(13deg);
}

.portfolio-card--loja .preview-art {
  border-radius: 50% 50% 8px 8px;
}

.portfolio-info {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 21px 3px 0;
}

.portfolio-info span {
  color: #7f899a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-info h3 {
  margin: 7px 0 0;
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.portfolio-info > a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: var(--cyan);
  transition: transform 0.2s ease, background 0.2s ease;
}

.portfolio-info > a:hover {
  transform: rotate(8deg);
  background: rgba(98,230,242,.09);
}

.process {
  overflow: hidden;
}

.process-intro {
  max-width: 700px;
}

.process-intro > p {
  max-width: 620px;
  margin: 25px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.process-steps {
  position: relative;
  display: grid;
  margin-top: 72px;
  grid-template-columns: repeat(4, 1fr);
}

.process-steps::before {
  position: absolute;
  top: 26px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: #ccd2d9;
  content: '';
}

.process-step {
  position: relative;
  min-height: 260px;
  border-right: 1px solid var(--line);
  padding: 0 30px;
}

.process-step:first-child { padding-left: 0; }
.process-step:last-child { border-right: 0; padding-right: 0; }
.process-step > span { position: relative; z-index: 2; display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid #ccd2d9; border-radius: 50%; background: var(--paper); color: #838b97; font-size: 10px; font-weight: 700; }
.step-icon { margin: 36px 0 21px; color: #3a7d86; font-size: 25px; }
.process-step h3 { margin: 0 0 12px; font-family: var(--font-display); font-size: 20px; letter-spacing: -0.04em; }
.process-step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.plans {
  background: #0c111e;
}

.plans-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 475px;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.025);
  padding: 37px;
}

.plan-card--featured {
  border-color: rgba(98,230,242,.35);
  background: linear-gradient(155deg, rgba(98,230,242,.11), rgba(75,124,255,.08));
  box-shadow: 0 30px 70px rgba(0,0,0,.2);
}

.plan-card > i {
  position: absolute;
  top: 16px;
  right: 17px;
  border-radius: 30px;
  background: var(--cyan);
  padding: 7px 10px;
  color: var(--ink);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.plan-card > span { color: var(--cyan); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.plan-card h3 { margin: 22px 0 12px; font-family: var(--font-display); font-size: 28px; letter-spacing: -.045em; }
.plan-card p { min-height: 66px; margin: 0; color: #909bad; font-size: 14px; line-height: 1.65; }
.plan-card ul { display: grid; margin: 31px 0 0; padding: 25px 0 0; border-top: 1px solid rgba(255,255,255,.1); gap: 15px; list-style: none; color: #bec6d3; font-size: 13px; }
.plan-card li::before { margin-right: 9px; color: var(--cyan); content: '✓'; }
.plan-card > a { display: flex; align-items: center; justify-content: space-between; margin-top: auto; border-top: 1px solid rgba(255,255,255,.1); padding-top: 21px; font-size: 12px; font-weight: 700; }
.plan-card > a b { color: var(--cyan); font-size: 17px; }

.contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #0a0f1b, #11182b);
}

.contact::before {
  position: absolute;
  top: -200px;
  left: 25%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: rgba(75,124,255,.12);
  filter: blur(60px);
  content: '';
}

.contact-grid {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;
}

.contact-copy h2 { margin-top: 22px; }
.contact-copy p { max-width: 470px; margin: 26px 0; color: #98a3b5; font-size: 16px; line-height: 1.75; }
.contact-copy > a { display: inline-flex; align-items: center; gap: 19px; border-bottom: 1px solid rgba(98,230,242,.45); padding-bottom: 7px; color: var(--cyan); font-size: 14px; }

.contact-form {
  display: grid;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.035);
  box-shadow: 0 40px 90px rgba(0,0,0,.18);
  padding: 38px;
  gap: 22px;
  backdrop-filter: blur(18px);
}

.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.contact-form label { display: grid; gap: 9px; color: #bdc5d1; font-size: 11px; font-weight: 600; }
.contact-form input,
.contact-form textarea,
.contact-form select { width: 100%; border: 1px solid rgba(255,255,255,.1); outline: 0; border-radius: 12px; background: rgba(5,10,20,.47); padding: 14px 15px; color: var(--white); font-size: 13px; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input,
.contact-form select { height: 49px; }
.contact-form textarea { resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #687386; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: rgba(98,230,242,.5); box-shadow: 0 0 0 3px rgba(98,230,242,.08); }
.contact-form select option { background: var(--ink); }
.contact-form .button { justify-self: start; min-width: 190px; }
.contact-form > small { color: #687386; font-size: 10px; }

.site-footer {
  background: #060a12;
  color: #a0aabb;
}

.footer-main {
  display: grid;
  min-height: 260px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand--footer { color: var(--white); }
.footer-main > div:first-child > p { max-width: 390px; margin: 20px 0 0; color: #788397; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; }
.footer-links > div { display: grid; align-content: start; gap: 11px; }
.footer-links strong { margin-bottom: 5px; color: #eef2f7; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.footer-links a { font-size: 13px; transition: color .2s ease; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { display: flex; min-height: 74px; align-items: center; justify-content: space-between; gap: 20px; color: #5e6878; font-size: 10px; }

.error-page {
  display: flex;
  min-height: 78vh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 150px 24px 90px;
  text-align: center;
}

.error-page .error-code { background: linear-gradient(90deg, var(--cyan), var(--violet)); background-clip: text; color: transparent; font-family: var(--font-display); font-size: clamp(90px, 17vw, 190px); font-weight: 800; letter-spacing: -.1em; line-height: .8; opacity: .18; }
.error-page h1 { margin: 25px 0 15px; font-family: var(--font-display); font-size: clamp(38px, 5vw, 62px); letter-spacing: -.06em; }
.error-page p { max-width: 570px; margin: 0 0 30px; color: #9ba6b8; line-height: 1.7; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1);
}

.reveal--delay {
  transition-delay: .1s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero-grid { gap: 38px; grid-template-columns: 1fr 1.08fr; }
  .hero h1 { font-size: clamp(46px, 5.7vw, 66px); }
  .floating-pill--top { right: -12px; }
  .floating-pill--bottom { left: -12px; }
  .process-step { padding: 0 19px; }
  .contact-grid { gap: 50px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 36px, 720px); }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 82px 0 0; display: flex; transform: translateX(100%); align-items: stretch; flex-direction: column; gap: 0; background: rgba(8,12,23,.98); padding: 38px 24px; font-size: 20px; transition: transform .3s ease; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav > a { border-bottom: 1px solid rgba(255,255,255,.08); padding: 19px 0; }
  .main-nav .nav-cta { min-height: 58px; justify-content: space-between; margin-top: 22px; border: 1px solid rgba(98,230,242,.32); padding: 0 21px; }
  .menu-toggle[aria-expanded='true'] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded='true'] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero { padding-top: 132px; }
  .hero-grid { grid-template-columns: 1fr; gap: 65px; }
  .hero-copy { max-width: 690px; }
  .hero-visual { width: min(650px, 100%); margin-inline: auto; transform: none; }
  .hero-marquee { margin-top: 78px; overflow: hidden; justify-content: flex-start; white-space: nowrap; }
  .section { padding: 100px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .section-heading > p { max-width: 600px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { min-height: 560px; grid-row: auto; }
  .portfolio-grid { gap: 48px 15px; }
  .preview-page { min-height: 300px; padding: 24px; }
  .preview-nav { margin-bottom: 52px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .process-steps::before { display: none; }
  .process-step:nth-child(2) { border-right: 0; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 410px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; padding: 60px 0; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 520px); }
  .header-inner { min-height: 72px; }
  .main-nav { inset: 72px 0 0; }
  .brand-name { font-size: 17px; }
  .hero { padding-top: 118px; }
  .hero h1 { margin-top: 19px; font-size: clamp(44px, 13.2vw, 62px); line-height: 1.01; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; justify-content: space-between; }
  .browser-body { min-height: 375px; padding: 0 16px 18px; }
  .mock-nav span { display: none; }
  .mock-nav i { display: block; color: #6e858d; font-size: 8px; }
  .mock-hero { min-height: 215px; grid-template-columns: 1fr; }
  .mock-hero > div:first-child { padding: 25px; }
  .mock-building { opacity: .55; width: 50%; }
  .mock-cards i { height: 42px; }
  .mock-cards strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .floating-pill--top { top: -25px; right: 8px; }
  .floating-pill--bottom { display: none; }
  .hero-marquee { min-height: 72px; margin-top: 58px; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2,
  .process-intro h2,
  .contact-copy h2 { font-size: clamp(36px, 10.5vw, 49px); }
  .services-grid { gap: 13px; }
  .service-card,
  .service-card--featured { min-height: 400px; padding: 28px; }
  .service-card--featured { min-height: 510px; }
  .service-card--featured h3 { font-size: 30px; }
  .service-card > a,
  .service-card--featured > a { right: 28px; bottom: 27px; left: 28px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .preview-page { min-height: 330px; }
  .preview-page h3 { font-size: 38px; }
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .process-step { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); padding: 35px 0; }
  .process-step:first-child { padding-top: 0; }
  .process-step:last-child { border-bottom: 0; }
  .process-step > span { float: left; margin-right: 21px; }
  .step-icon { display: none; }
  .process-step h3 { padding-top: 3px; }
  .process-step p { margin-left: 73px; }
  .plan-card { min-height: 440px; padding: 30px; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form .button { width: 100%; justify-content: space-between; }
  .footer-main { min-height: auto; }
  .footer-links { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; }
}

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