:root {
  --navy-950: #06101c;
  --navy-900: #0a1624;
  --navy-800: #122238;
  --blue: #149be8;
  --blue-dark: #0a72bf;
  --green: #21cf70;
  --green-dark: #18a95a;
  --cream: #f7f4ee;
  --white: #ffffff;
  --surface: #f7f8fa;
  --surface-2: #eef2f6;
  --text: #101827;
  --muted: #667085;
  --border: #e3e8ef;
  --shadow: 0 24px 70px rgba(6, 16, 28, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 112px 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: #80d7ff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--blue-dark);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 36px rgba(33, 207, 112, 0.22);
}

.button-primary:hover {
  background: var(--green-dark);
}

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

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.button-full {
  width: 100%;
}

/* Navigation */

.hero {
  position: relative;
  min-height: 900px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(20, 155, 232, 0.15), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(33, 207, 112, 0.08), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  overflow: hidden;
}

.nav {
  position: relative;
  z-index: 20;
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

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

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

.nav-links > a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 700;
  transition: color 160ms ease;
}

.nav-links > a:hover {
  color: var(--white);
}

.nav-links .nav-cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 10px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 180ms ease;
}

/* Hero */

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 90px;
  padding-bottom: 86px;
}

.hero-copy {
  max-width: 800px;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 5.35vw, 5.4rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.72;
}

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

.hero-proof {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.hero-proof span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.visual-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(20, 155, 232, 0.17);
  filter: blur(80px);
}

.browser-card {
  position: relative;
  z-index: 2;
  width: min(100%, 550px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transform: rotate(-1.5deg);
}

.browser-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.browser-dots {
  display: flex;
  gap: 7px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.browser-address {
  width: 48%;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.browser-page {
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    #0d1c2e;
}

.preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}

.preview-mark {
  width: 76px;
  height: 16px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.preview-link {
  width: 70px;
  height: 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}

.preview-content {
  margin-bottom: 58px;
}

.preview-kicker {
  width: 120px;
  height: 8px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: rgba(128, 215, 255, 0.65);
}

.preview-title {
  height: 24px;
  margin-bottom: 11px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
}

.preview-title-wide {
  width: 88%;
}

.preview-title-short {
  width: 64%;
}

.preview-text {
  width: 74%;
  height: 8px;
  margin-top: 22px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}

.preview-text-short {
  width: 56%;
  margin-top: 10px;
}

.preview-button {
  width: 118px;
  height: 34px;
  margin-top: 26px;
  border-radius: 8px;
  background: var(--green);
}

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

.preview-grid div {
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(7, 17, 30, 0.78);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.floating-note strong,
.floating-note small {
  display: block;
}

.floating-note strong {
  font-size: 0.87rem;
}

.floating-note small {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.74rem;
}

.note-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-weight: 900;
}

.note-one {
  top: 30px;
  right: 0;
}

.note-two {
  left: 0;
  bottom: 38px;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: 28px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 99px;
  transform: translateX(-50%);
}

.scroll-hint span {
  width: 4px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.65);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%,
  100% {
    transform: translateY(-5px);
    opacity: 0.45;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* Sections */

.section-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.section-heading h2,
.statement h2,
.pricing-copy h2,
.contact-copy h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.pricing-copy > p:last-child,
.contact-copy > p:last-of-type {
  max-width: 700px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 46px rgba(15, 23, 42, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: #d4dbe5;
  box-shadow: var(--shadow);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(33, 207, 112, 0.12), rgba(20, 155, 232, 0.12));
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 76px;
}

.service-number {
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--blue-dark);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.42rem;
  letter-spacing: -0.02em;
}

.service-card p {
  position: relative;
  z-index: 2;
  color: var(--muted);
}

.statement {
  color: var(--white);
  background: var(--navy-900);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 90px;
  align-items: start;
}

.statement-copy > p {
  margin-bottom: 46px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.17rem;
}

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

.stats div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

.stats strong {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 0.82rem;
}

.stats span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.process {
  background: var(--cream);
}

.section-heading-left {
  max-width: 820px;
}

.process-list {
  border-top: 1px solid #d9d5cd;
}

.process-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid #d9d5cd;
}

.process-index {
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-item h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.process-item p {
  max-width: 700px;
  color: var(--muted);
}

.pricing-section {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(20, 155, 232, 0.14), transparent 24%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
  align-items: center;
}

.pricing-copy > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-card {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(18px);
}

.pricing-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.pricing-label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.pricing-badge {
  align-self: flex-start;
  padding: 8px 11px;
  border-radius: 99px;
  color: #bff7d5;
  background: rgba(33, 207, 112, 0.12);
  font-size: 0.76rem;
  font-weight: 900;
}

.feature-list {
  margin-bottom: 32px;
  display: grid;
  gap: 14px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.feature-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.contact-section {
  background: var(--surface-2);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.contact-links {
  margin-top: 36px;
  display: grid;
  gap: 10px;
  font-size: 1.04rem;
  font-weight: 800;
}

.contact-links a {
  text-decoration: none;
}

.contact-links a:hover {
  color: var(--blue-dark);
}

.contact-form {
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 19px;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  color: var(--text);
  background: #fbfcfd;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form input {
  height: 54px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 15px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 155, 232, 0.1);
}

.form-note {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

/* Footer */

footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.58);
  background: var(--navy-950);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  width: 210px;
}

.footer-content p {
  text-align: center;
  font-size: 0.87rem;
}

.back-to-top {
  justify-self: end;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

/* Responsive */

@media (max-width: 1040px) {
  .brand img {
    width: 250px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 56px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    width: min(100%, 660px);
    margin-inline: auto;
  }

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

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

  .service-top {
    margin-bottom: 48px;
  }

  .statement-grid,
  .pricing-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }
}

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

  .section {
    padding: 82px 0;
  }

  .nav {
    min-height: 92px;
  }

  .brand img {
    width: 220px;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 30;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    padding: 120px 32px 40px;
    background: rgba(6, 16, 28, 0.98);
    transform: translateX(100%);
    transition: transform 240ms ease;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links > a {
    font-size: 1.6rem;
  }

  .nav-links .nav-cta {
    min-height: 58px;
    padding: 0 26px;
    font-size: 1.1rem;
  }

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

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

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    padding: 56px 0 110px;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.4rem);
  }

  .hero-visual {
    min-height: 440px;
  }

  .note-one {
    right: 8px;
  }

  .note-two {
    left: 8px;
    bottom: 16px;
  }

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

  .process-item {
    grid-template-columns: 64px 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .back-to-top {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 190px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-proof {
    gap: 12px 18px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .floating-note {
    display: none;
  }

  .browser-card {
    transform: none;
  }

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

  .preview-grid div:nth-child(3) {
    display: none;
  }

  .pricing-card,
  .contact-form {
    padding: 26px 22px;
  }

  .pricing-card-top {
    flex-direction: column;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.instagram-link {
width: fit-content;
display: inline-flex;
align-items: center;
gap: 10px;
color: inherit;
text-decoration: none;
transition: color 160ms ease, transform 160ms ease;
}

.instagram-link:hover {
color: #e1306c;
transform: translateX(3px);
}

.instagram-icon {
width: 24px;
height: 24px;
fill: none;
stroke: currentColor;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}
