@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --ink: #12171c;
  --text: #263039;
  --muted: #6f7780;
  --paper: #f7f3ec;
  --panel: #ffffff;
  --line: #e2d9ce;
  --accent: #d5863f;
  --accent-soft: #f4dfca;
  --deep: #101820;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(16, 24, 32, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  margin: 0;
  color: var(--text);
  background: #101820 url("assets/pointcomm.png") center center / cover fixed no-repeat;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  content: none;
}

body > * {
  position: relative;
  z-index: 1;
}

main {
  flex: 1;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 9px 12px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  background: rgba(10, 15, 21, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.compact {
  position: sticky;
  top: 0;
  z-index: 5;
}

.nav,
.hero,
.section,
.page-hero {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
}

.brand strong {
  color: #f2ad68;
  font-weight: 700;
}

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

.nav-links a {
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-links .nav-cta {
  color: #15120f;
  background: #f2ad68;
}

.menu-toggle {
  display: none;
  padding: 9px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  padding: 92px 0 76px;
}

.hero.home-pricing {
  position: relative;
  width: 100%;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 28px;
  min-height: calc(100vh - 74px);
  padding: 54px max(18px, calc((100% - 1120px) / 2)) 70px;
  overflow: hidden;
  background: transparent;
}

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

.home-pricing .hero-copy {
  max-width: 760px;
  padding: 24px;
  background: rgba(11, 16, 22, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.home-pricing h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.15rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.1;
}

.home-pricing h1,
.home-pricing h2,
.home-pricing h3 {
  color: #fff;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.1rem;
}

.hero p,
.page-hero p,
.intro-grid > p,
.highlight p {
  color: var(--muted);
  font-size: 1.05rem;
}

.home-pricing .hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.button.primary {
  color: #fff;
  background: var(--deep);
}

.home-pricing .button.primary {
  color: #17120e;
  background: #f2ad68;
}

.home-pricing .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.button.secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.button:hover,
.button:focus-visible,
.work-card a:hover,
.work-card a:focus-visible {
  transform: translateY(-1px);
}

.hero-card,
.card,
.note,
.work-card,
.timeline article {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(8, 13, 19, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
}

.hero-card {
  display: grid;
  gap: 1px;
  overflow: hidden;
  padding: 8px;
}

.hero-card div {
  padding: 20px;
  background: #fff;
}

.hero-card span,
.timeline span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 700;
}

.hero-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.1rem;
}

.hero-card p,
.card p,
.work-card p,
.timeline p,
.note p {
  color: rgba(255, 255, 255, 0.7);
}

.home-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 16px;
}

.mini-pack {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 24px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(13, 19, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.mini-pack h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.mini-pack .price {
  margin-bottom: 16px;
}

.mini-pack .button {
  margin-top: auto;
}

.mini-pack .price span,
.mini-pack .check-list li {
  color: rgba(255, 255, 255, 0.72);
}

.mini-pack.featured {
  color: #fff;
  background: linear-gradient(180deg, rgba(213, 134, 63, 0.95), rgba(116, 62, 25, 0.92));
  border-color: rgba(255, 198, 132, 0.52);
}

.mini-pack.featured h2,
.mini-pack.featured .price,
.mini-pack.featured .check-list li::before {
  color: #fff;
}

.mini-pack.featured li,
.mini-pack.featured .price span {
  color: rgba(255, 255, 255, 0.86);
}

.page {
  padding-bottom: 20px;
}

.page-hero {
  padding: 72px 0 34px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 46px 0;
}

.page .section {
  padding-top: 34px;
}

.section-title {
  max-width: 650px;
  margin-bottom: 26px;
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.cards,
.work-grid,
.timeline {
  display: grid;
  gap: 18px;
}

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 24px;
}

.link-card {
  min-height: 190px;
  color: inherit;
  text-decoration: none;
}

.link-card span {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-block: 34px 76px;
  padding: 34px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(8, 13, 19, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
}

.highlight h2 {
  color: #fff;
}

.highlight p {
  color: rgba(255, 255, 255, 0.72);
}

.work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-card {
  overflow: hidden;
}

.work-logo-frame {
  display: grid;
  min-height: 190px;
  place-items: center;
  padding: 28px;
  background: #05070a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.work-logo-frame img {
  width: auto;
  max-width: min(76%, 260px);
  max-height: 126px;
  object-fit: contain;
}

.work-logo-frame img[src$=".jpg"] {
  width: 100%;
  max-width: 100%;
  max-height: 160px;
  border-radius: 6px;
  object-fit: cover;
}

.work-card div {
  padding: 20px;
}

.work-card .work-logo-frame {
  padding: 28px;
}

.work-card h2 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.work-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline article {
  padding: 24px;
}

.timeline h2 {
  color: #fff;
  font-size: 1.12rem;
}

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

.check-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
}

.note {
  padding: 26px;
}

.note h2,
.card h2 {
  color: #fff;
}

.pack {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.pack .button {
  margin-top: auto;
}

.price {
  margin-bottom: 18px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.price span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 600;
}

.pack.featured {
  color: #fff;
  background: rgba(8, 13, 19, 0.78);
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow:
    inset 0 0 0 1px rgba(213, 134, 63, 0.42),
    0 20px 56px rgba(0, 0, 0, 0.28);
}

.pack.featured h2,
.pack.featured .price,
.pack.featured .check-list li::before {
  color: #fff;
}

.pack.featured .check-list li,
.pack.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.tag {
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  padding: 5px 12px;
  color: #17120e;
  background: #f2ad68;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-hero .button {
  margin-top: 12px;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  margin-top: 56px;
  padding: 34px max(18px, calc((100% - 1120px) / 2)) 46px;
  color: rgba(255, 255, 255, 0.82);
  background: #05070a;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer .brand {
  color: #fff;
}

.footer .brand strong {
  color: var(--accent);
}

.footer p {
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-contact {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 700;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer nav a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  text-decoration: none;
}

.footer nav a:hover,
.footer-contact a:hover {
  color: #f2ad68;
}

@media (max-width: 920px) {
  .hero,
  .hero.home-pricing,
  .intro-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .home-pack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards.four,
  .cards.three,
  .work-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 64px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15.5px;
  }

  .nav {
    min-height: 66px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(12, 18, 24, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero,
  .page-hero {
    padding-top: 48px;
  }

  .hero.home-pricing {
    min-height: auto;
    padding-top: 38px;
  }

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

  .cards.four,
  .cards.three,
  .home-pack-grid,
  .work-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .highlight,
  .footer {
    flex-direction: column;
  }

  .footer {
    margin-top: 36px;
  }

  .highlight {
    align-items: flex-start;
    padding: 24px;
  }
}

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