@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #16202f;
  --ink-soft: #4f5d73;
  --paper: #fff9ed;
  --mist: #edf7f4;
  --blue: #4b6cb7;
  --teal: #2ec4b6;
  --coral: #f25f5c;
  --lemon: #f4d35e;
  --lavender: #8b7cf6;
  --line: rgba(22, 32, 47, 0.14);
  --shadow: 0 20px 55px rgba(22, 32, 47, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  background:
    linear-gradient(90deg, rgba(22, 32, 47, 0.045) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(22, 32, 47, 0.035) 1px, transparent 1px) 0 0 / 34px 34px,
    #fffdf7;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

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

p {
  margin: 0;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 247, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(22, 32, 47, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(22, 32, 47, 0.16);
}

.brand span {
  display: block;
  max-width: 188px;
}

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

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.94rem;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  background: rgba(46, 196, 182, 0.14);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(22, 32, 47, 0.16);
}

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

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--line);
  box-shadow: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow i {
  color: var(--coral);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 86px 0 52px;
  background:
    radial-gradient(circle at 80% 18%, rgba(244, 211, 94, 0.25), transparent 32%),
    linear-gradient(110deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.9) 46%, rgba(237, 247, 244, 0.78) 100%);
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--coral) 0 80px, var(--teal) 80px 160px, var(--lemon) 160px 240px, var(--blue) 240px 320px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 54%);
}

.hero h1,
.page-hero h1,
.section-heading h2,
.story-copy h2,
.panel h2,
.cta h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.98;
  font-weight: 700;
}

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

.hero-lede {
  max-width: 590px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

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

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.proof-strip i {
  color: var(--teal);
}

.hero-media {
  position: absolute;
  z-index: 1;
  right: max(20px, calc((100vw - var(--max)) / 2));
  top: 52%;
  width: min(48vw, 570px);
  height: 620px;
  transform: translateY(-50%);
}

.phone-shot {
  position: absolute;
  width: min(220px, 36%);
  border: 6px solid #151b27;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #151b27;
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-shot.primary {
  z-index: 3;
  width: min(265px, 46%);
  right: 25%;
  top: 42px;
}

.phone-shot.left {
  z-index: 2;
  left: 0;
  top: 150px;
  transform: rotate(-7deg);
}

.phone-shot.right {
  z-index: 2;
  right: 0;
  top: 180px;
  transform: rotate(7deg);
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 62px 0;
}

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

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.5rem);
}

.section-heading p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.quick-item {
  min-height: 180px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
}

.quick-item i,
.feature-card i,
.compact-card i,
.contact-method i,
.timeline-dot {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--lemon);
  border-radius: var(--radius);
}

.quick-item:nth-child(2) i,
.feature-card:nth-child(2n) i,
.compact-card:nth-child(2n) i,
.contact-method:nth-child(2n) i {
  background: rgba(46, 196, 182, 0.28);
}

.quick-item:nth-child(3) i,
.feature-card:nth-child(3n) i,
.compact-card:nth-child(3n) i,
.contact-method:nth-child(3n) i {
  color: #fff;
  background: var(--coral);
}

.quick-item:nth-child(4) i,
.feature-card:nth-child(4n) i,
.compact-card:nth-child(4n) i {
  color: #fff;
  background: var(--blue);
}

.quick-item h3,
.feature-card h3,
.compact-card h3,
.contact-method h3,
.archive-row h3 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.quick-item p,
.feature-card p,
.compact-card p,
.contact-method p,
.archive-row p,
.fine-print {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.story-copy h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
}

.story-copy p {
  margin-top: 18px;
  color: var(--ink-soft);
}

.paper-stack {
  position: relative;
  width: min(100%, 620px);
  min-height: 560px;
  margin-inline: auto;
  overflow: hidden;
  isolation: isolate;
}

.paper-stack img {
  position: absolute;
  width: clamp(150px, 34%, 230px);
  max-height: 520px;
  object-fit: contain;
  border: 5px solid #151b27;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.paper-stack img:first-child {
  left: 6%;
  top: 58px;
  transform: rotate(-5deg);
}

.paper-stack img:nth-child(2) {
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  z-index: 2;
}

.paper-stack img:nth-child(3) {
  right: 6%;
  bottom: 34px;
  transform: rotate(4deg);
}

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

.feature-card,
.compact-card,
.contact-method,
.panel,
.archive-row,
.form-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card {
  min-height: 230px;
  padding: 26px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: center;
}

.shot-tabs {
  display: grid;
  gap: 10px;
}

.shot-tab {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.shot-tab i {
  color: var(--coral);
}

.shot-tab.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.shot-tab.is-active i {
  color: var(--lemon);
}

.screen-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;
  justify-items: center;
}

.screen-wall img {
  width: min(100%, 190px);
  max-height: 430px;
  object-fit: contain;
  border: 5px solid #151b27;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.screen-wall img:nth-child(2) {
  margin-top: 24px;
}

.screen-wall img.is-muted {
  filter: saturate(0.68) opacity(0.72);
  transform: scale(0.95);
}

.band {
  background: var(--ink);
  color: #fff;
}

.band .section-heading p,
.band .feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.band .feature-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

.band .feature-card i {
  color: var(--ink);
}

.cta {
  position: relative;
  padding: 76px 0;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(46, 196, 182, 0.22), rgba(244, 211, 94, 0.24)),
    #fffdf7;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta h2 {
  font-size: clamp(2rem, 4.5vw, 4.6rem);
}

.cta p {
  max-width: 690px;
  margin-top: 14px;
  color: var(--ink-soft);
}

.page-hero {
  padding: 82px 0 60px;
  background:
    linear-gradient(100deg, rgba(255, 253, 247, 0.96), rgba(237, 247, 244, 0.85)),
    #fffdf7;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
}

.page-hero p {
  max-width: 780px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: start;
}

.panel {
  padding: 28px;
}

.panel h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
}

.panel p,
.panel li {
  color: var(--ink-soft);
}

.panel p + p {
  margin-top: 14px;
}

.panel ul {
  padding-left: 20px;
  margin: 18px 0 0;
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.compact-card {
  padding: 24px;
}

.spec-list {
  display: grid;
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.84);
}

.spec-list dt {
  font-weight: 800;
}

.spec-list dd {
  margin: 0;
  color: var(--ink-soft);
}

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

.contact-methods {
  display: grid;
  gap: 14px;
}

.contact-method {
  padding: 22px;
}

.contact-method a {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.form-panel {
  padding: 28px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-weight: 800;
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--ink-soft);
  font-weight: 700;
}

.archive-list {
  display: grid;
  gap: 14px;
}

.archive-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.archive-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
}

.timeline-item h3 {
  margin: 0 0 6px;
}

.timeline-item p {
  color: var(--ink-soft);
}

.legal-copy {
  max-width: 880px;
}

.legal-copy h2 {
  margin: 34px 0 10px;
  font-size: 1.45rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

.legal-copy ul {
  padding-left: 20px;
}

.site-footer {
  color: #fff;
  background: #101722;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 34px;
  padding: 54px 0 34px;
}

.footer-main h2,
.footer-main h3 {
  margin: 0 0 14px;
}

.footer-main p,
.footer-main a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-disclaimer {
  padding: 18px 0 24px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-disclaimer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #fffdf7;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

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

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .hero-copy {
    width: 100%;
    max-width: 720px;
  }

  .hero-media {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 640px);
    height: 560px;
    margin: 34px auto 0;
    transform: none;
  }

  .quick-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story,
  .showcase,
  .page-grid,
  .contact-layout,
  .cta-inner,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: start;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand span {
    max-width: 150px;
    font-size: 0.93rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    inset: 68px 16px auto 16px;
  }

  .hero {
    padding: 44px 0 42px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 16vw, 4.7rem);
  }

  .hero-actions,
  .proof-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    height: 440px;
  }

  .phone-shot {
    border-width: 4px;
    border-radius: 24px;
  }

  .phone-shot.primary {
    width: 52%;
    right: 24%;
  }

  .phone-shot.left,
  .phone-shot.right {
    width: 40%;
  }

  .section {
    padding: 62px 0;
  }

  .quick-grid,
  .feature-grid,
  .compact-grid,
  .screen-wall {
    grid-template-columns: 1fr;
  }

  .quick-item,
  .feature-card,
  .compact-card,
  .panel,
  .form-panel {
    padding: 22px;
  }

  .paper-stack {
    min-height: 390px;
  }

  .paper-stack img {
    width: clamp(120px, 38%, 164px);
    max-height: 360px;
    border-width: 4px;
    border-radius: 24px;
  }

  .screen-wall {
    min-height: auto;
  }

  .screen-wall img {
    width: min(100%, 220px);
    max-height: 480px;
  }

  .screen-wall img:nth-child(2) {
    margin-top: 0;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .archive-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    padding-top: 42px;
  }
}
