:root {
  --bg: #05060a;
  --bg-alt: #0b0d14;
  --accent: #ff4b4b;
  --accent-soft: #ff6b6b;
  --text: #f5f5f7;
  --muted: #a0a3b1;
  --border-subtle: #1b1e29;
  --max-width: 1120px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #15182a 0, #05060a 55%, #000 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

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

/* Layout shell */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
}

/* Skip link */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  padding: 0.5rem 1rem;
  background: #fff;
  color: #000;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 10, 0.92),
    rgba(5, 6, 10, 0.75),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 1.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;      /* adjust as needed */
  height: 90px;
}

.brand-logo {
  width: 100%;
  height: auto;
  display: block;
}


.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title {
  font-weight: 650;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-link {
  padding: 0.4rem 0.2rem;
  color: var(--muted);
  position: relative;
  transition: color 0.18s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--primary {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.06), transparent 55%);
  color: var(--text);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link--primary:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.12), transparent 60%);
}

/* Main hero */

main {
  flex: 1;
}

.hero {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 840px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .header-inner {
    flex-wrap: wrap;
  }
  nav {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding-inline: 1.1rem;
  }
  .shell {
    padding-inline: 1.1rem;
  }
  nav {
    gap: 0.9rem;
    font-size: 0.85rem;
  }
  .nav-link--primary {
    display: none;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.7rem 0.2rem 0.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.08), transparent 60%);
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffe9c7, #ff4b4b 60%, #4a148c);
  box-shadow: 0 0 0 4px rgba(255, 75, 75, 0.25);
}

.hero-title {
  font-size: clamp(2.4rem, 3vw + 1.4rem, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.hero-title span {
  background: linear-gradient(120deg, #ffb347, #ff4b4b, #ff6bcb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.btn {
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.3rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  background: none;
  color: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #05060a;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(255, 75, 75, 0.45);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--muted);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.06), transparent 60%);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--text);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  opacity: 0.7;
}

.hero-meta-value {
  font-size: 0.86rem;
  color: var(--text);
}

/* Hero visual */

.hero-visual {
  position: relative;
  min-height: 260px;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 0 0, #1b1e2f, #05060a 55%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(5, 6, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.hero-image-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 50% 0, #ff6b6b, #05060a 55%);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.9;
}

.hero-card-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-card-caption strong {
  color: var(--text);
  font-weight: 500;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 6, 10, 0.7);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.35);
}

.hero-orbit {
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.06);
  opacity: 0.7;
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffe9c7, #ff4b4b 60%, #4a148c);
  box-shadow: 0 0 0 4px rgba(255, 75, 75, 0.25);
}

.hero-orbit::before {
  top: 18%;
  left: 12%;
}

.hero-orbit::after {
  bottom: 12%;
  right: 18%;
}

/* Services */

.section {
  margin-top: 3.5rem;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.section-title {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.section-lede {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 32rem;
}

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

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.service-card {
  border-radius: var(--radius-md);
  background: radial-gradient(circle at 0 0, #181a26, #05060a 60%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.service-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, #ffb347, #ff4b4b 60%, #4a148c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
}

.service-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.service-body {
  font-size: 0.9rem;
  color: var(--muted);
}

.service-footnote {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 32rem;
}

/* CTA */

.cta {
  margin-top: 3.5rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 0 0, #1b1e2f, #05060a 60%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem 1.5rem 1.7rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 1.8rem;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 840px) {
  .cta {
    grid-template-columns: minmax(0, 1fr);
  }
}

.cta-title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.cta-body {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 30rem;
}

.cta-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gapAbsolutely — here is the **rest of your `styles.css`**, starting exactly where the previous message cut off.  
This completes the file cleanly and without duplication.

---

# 🎨 **styles.css (continued + completed)**

```css
.cta-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.cta-logo-wrap {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cta-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffb347, #ff4b4b 55%, #7b1fa2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-logo-inner {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffe9c7, #ff6b6b 55%, #4a148c);
}

/* Footer */

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 3rem;
  padding: 1.4rem 1.5rem 2rem;
  background: radial-gradient(circle at top, #101322 0, #05060a 55%);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-brand-title {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-link {
  color: var(--muted);
  transition: color 0.18s ease;
}

.footer-link:hover {
  color: var(--text);
}

  /* ----------------------------------------------------
   MOBILE RESPONSIVE LAYER
   Enhances layout for iPhone + small screens
----------------------------------------------------- */

/* Global safe-area support (iPhone notch + home bar) */
body {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
}

/* Header improvements */
@media (max-width: 768px) {
  header {
    backdrop-filter: blur(22px);
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
  }

  nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .nav-link {
    font-size: 0.95rem;
  }

  .nav-link--primary {
    width: 100%;
    text-align: center;
    margin-top: 0.4rem;
  }
}

/* Hero layout */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-copy {
    gap: 1.2rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn,
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    margin-top: 0.5rem;
  }
}

/* Services grid */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .service-card {
    padding: 1.2rem;
  }
}

/* CTA section */
@media (max-width: 768px) {
  .cta {
    grid-template-columns: 1fr;
    padding: 1.4rem 1.2rem;
    gap: 1.4rem;
  }

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

  .cta-logo-wrap {
    justify-content: center;
  }
}

/* Footer */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

