:root {
  --ink: #061526;
  --ink-soft: #102439;
  --gold: #d9a441;
  --gold-bright: #f0bc54;
  --cream: #f6f1e7;
  --paper: #fbfaf7;
  --muted: #6e7479;
  --line: rgba(6, 21, 38, 0.15);
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background-color: var(--ink);
  background-image:
    linear-gradient(180deg, rgba(2, 12, 24, 0.76) 0%, rgba(2, 12, 24, 0.16) 42%, rgba(2, 12, 24, 0.86) 100%),
    linear-gradient(90deg, rgba(2, 12, 24, 0.68) 0%, rgba(2, 12, 24, 0.06) 68%),
    url("assets/rohit-enterprises-hero.png");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 25% 100%;
  opacity: 0.3;
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 80px), var(--max-width));
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-style: italic;
}

.brand__name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav__note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav__note i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
}

.hero__content {
  position: absolute;
  top: 49%;
  left: 50%;
  width: min(calc(100% - 40px), 900px);
  text-align: center;
  transform: translate(-50%, -50%);
}

.eyebrow,
.section__number {
  margin: 0 0 26px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.eyebrow span {
  width: 38px;
  height: 1px;
  background: currentColor;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 10vw, 9.5rem);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-shadow: 0 12px 45px rgba(0, 0, 0, 0.3);
}

h1 span {
  color: transparent;
  font-size: 0.62em;
  font-style: italic;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.83);
}

.hero__tagline {
  margin: 34px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.hero__bottom {
  position: absolute;
  bottom: 36px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 80px), var(--max-width));
  transform: translateX(-50%);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  grid-column: 2;
  align-items: center;
  justify-content: space-between;
  width: 248px;
  min-height: 62px;
  padding: 8px 9px 8px 25px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  isolation: isolate;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  top: -40%;
  left: -55%;
  z-index: 0;
  width: 38%;
  height: 180%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: rotate(18deg);
  animation: button-shine 3.2s ease-in-out infinite;
}

.button > span {
  position: relative;
  z-index: 1;
}

.button:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.025);
}

.button:focus-visible,
.text-link:focus-visible,
.brand:focus-visible,
.scroll-hint:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.button--primary {
  color: var(--ink);
  background: var(--gold-bright);
  border-color: rgba(255, 239, 189, 0.9);
  box-shadow:
    0 0 0 5px rgba(240, 188, 84, 0.15),
    0 0 32px rgba(240, 188, 84, 0.48),
    0 18px 45px rgba(0, 0, 0, 0.32);
  animation: button-pulse 2.4s ease-in-out infinite;
}

.button--primary:hover {
  background: #ffd477;
  box-shadow:
    0 0 0 7px rgba(240, 188, 84, 0.2),
    0 0 48px rgba(240, 188, 84, 0.72),
    0 22px 50px rgba(0, 0, 0, 0.36);
}

.button__arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover .button__arrow {
  background: rgba(255, 255, 255, 0.34);
  transform: rotate(45deg);
}

.scroll-hint {
  display: flex;
  grid-column: 3;
  align-items: center;
  justify-self: end;
  gap: 13px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-hint__line {
  position: relative;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.scroll-hint__line::after {
  position: absolute;
  width: 14px;
  height: 1px;
  content: "";
  background: var(--gold-bright);
  animation: slide 2s ease-in-out infinite;
}

@keyframes slide {
  from { transform: translateX(-15px); }
  to { transform: translateX(44px); }
}

@keyframes button-shine {
  0%, 58% { left: -55%; }
  82%, 100% { left: 125%; }
}

@keyframes button-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 5px rgba(240, 188, 84, 0.12),
      0 0 26px rgba(240, 188, 84, 0.38),
      0 18px 45px rgba(0, 0, 0, 0.32);
  }
  50% {
    box-shadow:
      0 0 0 9px rgba(240, 188, 84, 0.2),
      0 0 48px rgba(240, 188, 84, 0.66),
      0 18px 45px rgba(0, 0, 0, 0.32);
  }
}

.section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 9vw, 140px);
  width: min(calc(100% - 80px), var(--max-width));
  margin: 0 auto;
  padding: clamp(100px, 12vw, 180px) 0;
}

.section__intro h2,
.services__heading h2,
.get-started h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.2vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section__intro h2 em {
  color: var(--gold);
  font-weight: 400;
}

.about__copy {
  align-self: end;
  max-width: 510px;
  padding-top: 54px;
}

.about__copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.about__copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  line-height: 1.35;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 25px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  font-size: 17px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

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

.services__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: min(calc(100% - 80px), var(--max-width));
  margin: 0 auto;
  padding: 115px 0 68px;
}

.section__number--light {
  color: var(--gold-bright);
}

.services__heading h2 {
  text-align: right;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 80px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 115px;
}

.service-card {
  position: relative;
  min-height: 400px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 0;
}

.service-card:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.service-card--featured {
  color: var(--ink);
  background: var(--gold-bright);
}

.service-card__index {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.service-card--featured .service-card__index {
  color: rgba(6, 21, 38, 0.55);
}

.service-card__icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 65px 0 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.service-card--featured .service-card__icon {
  border-color: rgba(6, 21, 38, 0.45);
}

.service-card__icon span {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
}

.icon-speed::before,
.icon-speed::after {
  position: absolute;
  left: 0;
  width: 25px;
  height: 1px;
  content: "";
  background: currentColor;
}

.icon-speed::before { top: 8px; box-shadow: -7px 5px 0 currentColor; }
.icon-speed::after { top: 18px; width: 16px; }

.icon-shield {
  border: 1px solid currentColor;
  border-radius: 12px 12px 16px 16px;
}

.icon-shield::after {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 7px;
  height: 4px;
  content: "";
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: rotate(-45deg);
}

.icon-support {
  border: 1px solid currentColor;
  border-radius: 50%;
}

.icon-support::after {
  position: absolute;
  right: -3px;
  bottom: -2px;
  width: 8px;
  height: 8px;
  content: "";
  border-right: 1px solid currentColor;
  transform: rotate(28deg);
}

.service-card h3 {
  margin: 0 0 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.service-card p {
  max-width: 285px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.7;
}

.service-card--featured p {
  color: rgba(6, 21, 38, 0.7);
}

.process__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.process__steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.process__steps > li > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.process__steps h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.process__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.get-started {
  display: flex;
  min-height: 610px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 80px 30px;
  color: #fff;
  text-align: center;
  background-color: #0a2035;
  background-image:
    radial-gradient(circle at 50% 120%, rgba(217, 164, 65, 0.32), transparent 48%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 25% 100%;
}

.get-started h2 {
  margin-bottom: 46px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.button--light {
  color: var(--ink);
  background: var(--cream);
  border-color: rgba(240, 188, 84, 0.7);
  box-shadow: 0 0 0 5px rgba(240, 188, 84, 0.1), 0 0 30px rgba(240, 188, 84, 0.22);
  animation: button-pulse-light 2.4s ease-in-out infinite;
}

.button--light:hover {
  background: var(--gold-bright);
}

@keyframes button-pulse-light {
  0%, 100% {
    box-shadow: 0 0 0 5px rgba(240, 188, 84, 0.1), 0 0 26px rgba(240, 188, 84, 0.2);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(240, 188, 84, 0.18), 0 0 46px rgba(240, 188, 84, 0.4);
  }
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 32px max(40px, calc((100% - var(--max-width)) / 2));
  color: rgba(255, 255, 255, 0.64);
  background: #03101d;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer p:last-child {
  justify-self: end;
}

.brand--footer {
  color: white;
}

@media (max-width: 800px) {
  .nav,
  .hero__bottom,
  .section,
  .services__heading,
  .service-grid {
    width: min(calc(100% - 40px), var(--max-width));
  }

  .nav__note,
  .scroll-hint {
    display: none;
  }

  .hero {
    background-position: 62% center;
  }

  .hero::after {
    background-size: 50% 100%;
  }

  .hero__content {
    top: 46%;
  }

  h1 {
    font-size: clamp(3.9rem, 18vw, 7rem);
    line-height: 0.78;
  }

  .hero__tagline {
    font-size: 9px;
    letter-spacing: 0.3em;
  }

  .hero__bottom {
    display: flex;
    justify-content: center;
  }

  .section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 95px 0;
  }

  .about__copy {
    padding-top: 0;
  }

  .services__heading {
    display: block;
    padding: 90px 0 50px;
  }

  .services__heading h2 {
    text-align: left;
  }

  .service-grid {
    grid-template-columns: 1fr;
    padding-bottom: 90px;
  }

  .service-card,
  .service-card:last-child {
    min-height: 320px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
  }

  .service-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-card__icon {
    margin: 45px 0 35px;
  }

  .get-started {
    min-height: 540px;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 45px 20px;
    text-align: center;
  }

  .footer p:last-child {
    justify-self: center;
  }
}

@media (max-height: 650px) and (min-width: 801px) {
  .hero__content {
    top: 47%;
  }

  h1 {
    font-size: clamp(4rem, 9vw, 7rem);
  }

  .hero__tagline {
    margin-top: 24px;
  }

  .hero__bottom {
    bottom: 20px;
  }
}

@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;
  }
}
