:root {
  color-scheme: dark;
  --bg: #191a18;
  --surface: #242522;
  --surface-raised: #2d2e2a;
  --surface-soft: #20211f;
  --text: #f2f1eb;
  --muted: #a7aaa1;
  --faint: #777b72;
  --line: rgba(255, 255, 255, 0.11);
  --blue: #7dd8ff;
  --blue-strong: #1faeff;
  --honey: #f0b64d;
  --max: 1120px;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 4%, rgba(125, 216, 255, 0.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.wrap {
  width: min(var(--max), calc(100% - 56px));
  margin-inline: auto;
}

.announcement {
  display: flex;
  justify-content: center;
  padding: 20px 20px 0;
}

.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 13px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.announcement a:hover {
  border-color: rgba(125, 216, 255, 0.4);
  background: rgba(125, 216, 255, 0.07);
  color: var(--text);
}

.announcement strong {
  color: var(--text);
  font-weight: 650;
}

.announcement-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--honey);
  box-shadow: 0 0 0 5px rgba(240, 182, 77, 0.1);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
}

.brand img {
  width: 146px;
  height: auto;
  filter: grayscale(1) brightness(3.2);
  opacity: 0.9;
}

.site-header nav {
  display: flex;
  gap: 30px;
}

.site-header nav a {
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease;
}

.site-header nav a:hover {
  color: var(--text);
}

.hero {
  display: flex;
  min-height: 670px;
  padding: 80px 0 120px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-mark {
  display: grid;
  width: 96px;
  height: 96px;
  margin-bottom: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 29px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.hero-mark img {
  width: 45px;
  height: 67px;
}

.eyebrow,
.section-number,
.product-title p,
.action-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1020px;
  margin: 20px 0 26px;
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(58px, 7.2vw, 92px);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 span {
  color: var(--faint);
}

.hero-copy {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  border-bottom: 1px solid var(--faint);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 180ms ease, color 180ms ease;
}

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

.work {
  padding: 108px 0 126px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 46px;
  align-items: end;
}

.section-heading h2,
.about-copy h2 {
  margin: 0;
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.product-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.22fr 0.92fr 0.64fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.product-visual {
  overflow: hidden;
  min-height: 590px;
  padding: 32px 0 32px 32px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 20%, rgba(240, 182, 77, 0.16), transparent 21rem),
    #272824;
}

.product-visual > img {
  width: 820px;
  max-width: none;
  height: 526px;
  min-height: 0;
  border-radius: 12px 0 0 12px;
  object-fit: cover;
  object-position: left top;
  box-shadow: -12px 25px 55px rgba(0, 0, 0, 0.4);
}

.product-story {
  padding: 46px 38px;
}

.product-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 38px;
}

.product-title img {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.product-title h3 {
  margin: 1px 0 0;
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.product-lede {
  margin: 0 0 18px;
  color: var(--text);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", sans-serif;
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.product-story > p:not(.product-lede) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.feature-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 12px;
  color: #d5d6d0;
  font-size: 13px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 0 0 12px 22px;
  border-bottom: 1px solid var(--line);
}

.feature-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--honey);
  content: "✓";
  font-weight: 800;
}

.product-actions {
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  border-left: 1px solid var(--line);
  background: var(--surface);
}

.action-card {
  position: relative;
  display: flex;
  min-height: 112px;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface-soft);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.action-card:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 216, 255, 0.45);
  background: #242824;
}

.action-primary {
  border-color: rgba(240, 182, 77, 0.28);
}

.action-card strong {
  margin-top: 4px;
  font-size: 16px;
}

.action-arrow {
  position: absolute;
  top: 17px;
  right: 18px;
  color: var(--muted);
}

.product-actions > p {
  margin: 5px 3px 0;
  color: var(--faint);
  font-size: 11px;
  line-height: 1.45;
}

.principles {
  padding: 40px 0 142px;
}

.section-heading.compact {
  margin-bottom: 36px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid article {
  min-height: 270px;
  padding: 32px 30px 34px;
}

.principle-grid article + article {
  border-left: 1px solid var(--line);
}

.principle-grid span {
  color: var(--faint);
  font-size: 11px;
}

.principle-grid h3 {
  margin: 72px 0 12px;
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", sans-serif;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.principle-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about {
  padding: 126px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 18%, rgba(125, 216, 255, 0.08), transparent 26rem),
    var(--surface-soft);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(420px, 1.22fr);
  gap: 94px;
  align-items: center;
}

.founder-photo {
  margin: 0;
}

.founder-photo > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02);
  box-shadow: var(--shadow);
}

.founder-photo figcaption {
  display: flex;
  margin-top: 15px;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-size: 11px;
}

.founder-photo figcaption span:first-child {
  color: var(--text);
  font-weight: 650;
}

.about-copy h2 {
  margin: 24px 0 14px;
}

.about-lede {
  margin: 0 0 27px;
  color: var(--text) !important;
  font-size: 21px !important;
  font-weight: 600;
}

.about-copy > p {
  max-width: 630px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.about-links {
  display: flex;
  margin-top: 38px;
  flex-wrap: wrap;
  gap: 10px;
}

.about-links a {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d8dad3;
  font-size: 13px;
  transition: border-color 180ms ease, background 180ms ease;
}

.about-links a:hover {
  border-color: rgba(125, 216, 255, 0.4);
  background: rgba(125, 216, 255, 0.06);
}

.site-footer {
  padding: 90px 0 28px;
}

.footer-grid {
  display: grid;
  padding-bottom: 80px;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-brand img {
  width: 155px;
  filter: grayscale(1) brightness(3.2);
  opacity: 0.88;
}

.footer-brand p {
  margin: 22px 0 0;
  color: var(--muted);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", sans-serif;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-links p {
  margin: 0 0 9px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  padding-top: 24px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 11px;
}

@media (max-width: 1040px) {
  .product-card {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .product-visual {
    min-height: 520px;
  }

  .product-visual > img {
    width: 720px;
    height: 456px;
  }

  .product-actions {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-actions > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 36px, var(--max));
  }

  .announcement {
    padding-top: 14px;
  }

  .announcement a {
    padding: 9px 13px;
    font-size: 11px;
  }

  .site-header {
    min-height: 88px;
  }

  .brand img {
    width: 124px;
  }

  .site-header nav {
    gap: 16px;
  }

  .site-header nav a:not(:last-child) {
    display: none;
  }

  .hero {
    min-height: 600px;
    padding: 65px 0 100px;
  }

  .hero-mark {
    width: 82px;
    height: 82px;
    margin-bottom: 32px;
    border-radius: 25px;
  }

  .hero-mark img {
    width: 38px;
    height: 57px;
  }

  .hero h1 {
    margin-top: 17px;
    font-size: clamp(48px, 15vw, 70px);
  }

  .work {
    padding: 84px 0 96px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 16px;
  }

  .product-card {
    display: block;
    border-radius: 22px;
  }

  .product-visual {
    min-height: auto;
    padding: 18px 0 18px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-visual > img {
    width: 560px;
    height: 390px;
  }

  .product-story {
    padding: 36px 26px;
  }

  .product-actions {
    display: flex;
    padding: 26px;
  }

  .principles {
    padding-bottom: 96px;
  }

  .principle-grid {
    display: block;
  }

  .principle-grid article {
    min-height: auto;
    padding: 28px 6px;
  }

  .principle-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principle-grid h3 {
    margin-top: 38px;
  }

  .about {
    padding: 86px 0;
  }

  .about-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 54px;
    align-items: stretch;
  }

  .about-copy h2 {
    font-size: 52px;
  }

  .founder-photo {
    max-width: 440px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 28px;
  }
}

@media (max-width: 480px) {
  .eyebrow {
    letter-spacing: 0.09em;
  }

  .hero-copy {
    font-size: 16px;
  }

  .product-visual > img {
    width: 520px;
    height: 345px;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
