* {
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fafafa;
  --text: #111111;
  --muted: #5f6368;
  --line: #e9e9e9;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.06);
  --radius: 24px;
  --radius-sm: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.image-placeholder {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
}

.image-placeholder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* keeps full image visible */
  display: block;
}

/* hover */
.image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.image-link:hover img {
  transform: scale(1.03);
  transition: 0.3s ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233, 233, 233, 0.9);
}

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

.image-placeholder {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
}

.image-placeholder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* keeps full image visible */
  display: block;
}

/* hover */
.image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.footer-logo-img {
  height: 73px;
  width: auto;
  margin-bottom: 12px;
}

.footer-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.image-link:hover img {
  transform: scale(1.03);
  transition: 0.3s ease;
}

.logo img {
  height: 73px;
  width: auto;
}

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

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  padding: 96px 0 56px;
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.045), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b6b;
}

.hero-logo {
  height: 73px;
  width: auto;
  margin-bottom: 18px;
}

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

.hero h1 {
  margin-bottom: 12px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
}

.hero-subtitle {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  color: #262626;
}

.hero-text,
.section-text,
.text-block p,
.point p,
.image-caption,
.footer-text,
.cta-box p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-text {
  max-width: 620px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: #111111;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid var(--line);
  color: #111111;
}

.hero-card,
.info-box,
.image-card,
.cta-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card-inner,
.info-box,
.image-card,
.cta-box {
  padding: 28px;
}

.card-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #777777;
  margin-bottom: 18px;
}

.hero-points {
  display: grid;
  gap: 14px;
}

.point {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
}

.point h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.section {
  padding: 88px 0;
}

.centered {
  text-align: center;
  max-width: 820px;
}

.centered h2,
.text-block h2,
.image-title,
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.alt-section {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-item+.info-item {
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 16px;
}

.info-item span {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #7a7a7a;
  margin-bottom: 8px;
}

.info-item strong {
  font-size: 1.05rem;
  line-height: 1.5;
}

.image-card {
  padding: 22px;
}

.image-placeholder {
  height: 420px;
  border: 1.5px dashed #d7d7d7;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  margin-bottom: 18px;
}

.image-placeholder span {
  color: #7a7a7a;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cta-section {
  padding-top: 30px;
}

.cta-box {
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 24px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.footer-logo img {
  height: 73px;
  width: auto;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 12px;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.floating {
  animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 900px) {

  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
  }

  .footer-links {
    text-align: left;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

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

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

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

  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-card-inner,
  .info-box,
  .image-card,
  .cta-box {
    padding: 22px;
  }

  .image-placeholder {
    height: 280px;
  }

  .hero-logo {
    height: 73px;
  }

  .logo img,
  .footer-logo img {
    height: 73px;
  }
}