:root {
  --ink: #0d153f;
  --purple: #6549f5;
  --purple-2: #856fff;
  --pale: #f5f3ff;
  --line: #dedcf3;
  --muted: #5f6685;
  --page-max: 1200px;
  --sans:
    Inter, 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', YuGothic,
    sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
.page-container {
  margin: 0 auto;
  max-width: var(--page-max);
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
}
.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
}
.skip-link {
  background: var(--purple);
  color: #fff;
  left: 10px;
  padding: 12px 16px;
  position: fixed;
  top: -70px;
  z-index: 500;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(36, 32, 88, 0.06);
  height: 76px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
}
.site-header.is-scrolled {
  backdrop-filter: blur(18px);
  box-shadow: 0 9px 28px rgba(27, 23, 66, 0.08);
  position: fixed;
}
.header-inner {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  height: 100%;
  margin: 0 auto;
  max-width: var(--page-max);
  padding: 0 32px;
  width: 100%;
}
.wordmark {
  align-items: center;
  display: flex;
  gap: 10px;
  white-space: nowrap;
}
.wordmark img {
  border-radius: 9px;
  height: 38px;
  width: 38px;
}
.wordmark strong {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.wordmark strong span {
  font-size: 12px;
  letter-spacing: 0.08em;
}
.global-nav {
  align-items: center;
  display: flex;
  gap: clamp(20px, 2vw, 34px);
  justify-content: center;
}
.global-nav a {
  font-size: 12px;
  font-weight: 800;
  padding: 9px 0;
}
.global-nav a:hover {
  color: var(--purple);
}
.nav-cta,
.footer-cta {
  background: linear-gradient(135deg, #7558fa, #5c3fe7);
  border-radius: 9px;
  box-shadow: 0 10px 24px rgba(101, 73, 245, 0.24);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 14px 19px;
}
.nav-cta span,
.footer-cta span {
  margin-left: 18px;
}
.menu-button {
  background: none;
  border: 0;
  display: none;
  height: 42px;
  padding: 9px;
  width: 42px;
}
.menu-button i {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 23px;
}
.hero {
  background: linear-gradient(135deg, #fff 0%, #fbfaff 52%, #f2efff 100%);
  min-height: 650px;
  overflow: hidden;
  padding-top: 76px;
  position: relative;
}
.hero:before {
  background-image:
    linear-gradient(rgba(101, 73, 245, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 73, 245, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  content: '';
  inset: 76px 0 0;
  mask-image: linear-gradient(90deg, #000 28%, transparent 92%);
  position: absolute;
}
.orb {
  background: rgba(127, 101, 255, 0.12);
  border-radius: 45% 55% 60% 40%;
  filter: blur(1px);
  position: absolute;
  transform: rotate(-16deg);
}
.orb-one {
  height: 490px;
  right: -110px;
  top: -120px;
  width: 760px;
}
.orb-two {
  height: 320px;
  right: 280px;
  top: 200px;
  width: 470px;
}
.hero-layout {
  align-content: center;
  column-gap: 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.382fr) minmax(0, 0.618fr);
  min-height: 574px;
  padding-bottom: 80px;
  padding-top: 80px;
  position: relative;
}
.hero-copy {
  align-self: center;
  padding-bottom: 0;
  position: relative;
  z-index: 4;
}
.eyebrow {
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-bottom: 19px;
}
.hero h1 {
  font-size: clamp(30px, 2.75vw, 40px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1.14;
}
.hero h1 b {
  color: var(--purple);
  display: block;
  font-size: clamp(59.4px, 5.4vw, 81px);
  letter-spacing: -0.065em;
  line-height: 1.06;
  margin-top: 5px;
}
.hero-lede {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
  margin-top: 22px;
}
.hero-price {
  align-items: flex-end;
  border-left: 3px solid var(--purple);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 25px;
  padding: 3px 0 3px 15px;
  width: fit-content;
}
.hero-price > span {
  color: var(--purple);
  flex: 0 0 100%;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.hero-price strong {
  font-size: 38px;
  letter-spacing: -0.055em;
  line-height: 1;
}
.hero-price small {
  font-size: 0.42em;
  margin-left: 4px;
}
.hero-price em {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  margin-bottom: 3px;
}
.hero-visual {
  align-self: stretch;
  left: 0;
  margin-bottom: 6px;
  margin-top: 6px;
  min-width: 0;
  position: relative;
  z-index: 3;
}
.screen {
  background: #171a2e;
  border: 0;
  border-radius: 15px;
  box-shadow: 0 24px 50px rgba(32, 26, 82, 0.24);
  cursor: zoom-in;
  overflow: hidden;
  padding: 0;
  position: absolute;
}
.screen img {
  height: auto;
  width: 100%;
}
.screen-back {
  left: 0;
  right: auto;
  top: 0;
  width: 78%;
}
.screen-front {
  bottom: 0;
  right: 0;
  width: 65%;
}
.hero-hand {
  height: auto;
  position: absolute;
  right: 8px;
  top: -58px;
  transform: rotate(-4deg);
  width: 200px;
}
.feature-intro {
  background: #fff;
  padding: 92px 0 86px;
  text-align: center;
}
.feature-intro p {
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
}
.feature-intro h2 {
  font-size: clamp(42px, 4.3vw, 62px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.22;
  margin-top: 18px;
}
.major {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 82px 0;
  position: relative;
}
.major:before {
  background: radial-gradient(
    circle,
    rgba(117, 88, 250, 0.14),
    transparent 67%
  );
  content: '';
  height: 560px;
  position: absolute;
  right: -120px;
  top: -160px;
  width: 700px;
}
.major:nth-of-type(even):before {
  left: -140px;
  right: auto;
}
.major-ai,
.major-license {
  background: #fff;
}
.major-scale,
.major-projects {
  background: linear-gradient(135deg, #faf9ff, #f1efff);
}
.major-grid {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(400px, 0.95fr) minmax(0, 1.05fr);
  position: relative;
}
.major-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
}
.major-reverse .major-copy {
  order: 2;
}
.major-reverse .major-screen {
  order: 1;
}
.section-number {
  align-items: center;
  display: flex;
  gap: 18px;
}
.section-number b {
  color: #d7d0ff;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 1;
}
.section-number span {
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.major-copy h2 {
  font-size: clamp(34px, 3.3vw, 49px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.27;
  margin-top: 20px;
}
.major-copy > p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
  margin-top: 22px;
  max-width: 560px;
  text-wrap: pretty;
}
.major-screen {
  background: #171a2e;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 24px 56px rgba(39, 31, 99, 0.18);
  cursor: zoom-in;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 2;
}
.major-screen:after,
.card-image:after {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: inherit;
  content: '';
  inset: 3px;
  pointer-events: none;
  position: absolute;
}
.major-screen img {
  height: auto;
  width: 100%;
}
.mini-points {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 27px;
}
.mini-points span {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(101, 73, 245, 0.16);
  border-radius: 10px;
  color: #27305e;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  justify-content: center;
  line-height: 1.45;
  min-height: 66px;
  padding: 10px;
  text-align: center;
}
.mini-points.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.license-visual {
  min-width: 0;
  padding-bottom: 24px;
  position: relative;
}
.license-visual > .major-screen {
  width: 88%;
}
.license-clean > .major-screen {
  width: 100%;
}
.license-screen {
  aspect-ratio: 16/10;
}
.license-screen img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top left;
  width: 100%;
}
.license-card {
  background: linear-gradient(155deg, #171a37, #2a225d 70%, #674bf1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  bottom: -10px;
  box-shadow: 0 24px 50px rgba(29, 24, 72, 0.28);
  color: #fff;
  padding: 23px 24px;
  position: absolute;
  right: 0;
  width: 245px;
  z-index: 3;
}
.license-card > span {
  color: #a998ff;
  display: block;
  font-size: 34px;
  font-weight: 500;
  line-height: 0.9;
  text-align: left;
}
.license-card > small {
  color: #bcb2ff;
  display: block;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-top: 8px;
}
.license-card > b {
  display: block;
  font-size: 19px;
  line-height: 1.42;
  margin-top: 8px;
  text-align: left;
}
.license-card ul {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 15px 0 0;
  padding: 14px 0 0;
}
.license-card li {
  font-size: 11px;
  font-weight: 800;
  padding-left: 20px;
  position: relative;
}
.license-card li:before {
  color: #b6a9ff;
  content: '✓';
  left: 0;
  position: absolute;
}
.features {
  background: #fff;
  padding: 82px 0 100px;
}
.features-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
}
.features-heading > div {
  align-items: baseline;
  display: flex;
  gap: 18px;
}
.features-heading p {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.features-heading span {
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.features-heading small {
  color: var(--muted);
  font-size: 11px;
}
.feature-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}
.feature-card {
  background: linear-gradient(145deg, #fff, #faf9ff);
  border: 1px solid rgba(101, 73, 245, 0.15);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 16px;
}
.card-title {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  min-height: 64px;
  padding-top: 2px;
}
.card-title b {
  color: var(--purple);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1;
}
.card-title h3 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.32;
  text-wrap: balance;
}
.card-image,
.card-visual {
  aspect-ratio: 16/9;
  border-radius: 9px;
  min-height: 180px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.card-image {
  background: #171a2e;
  border: 0;
  cursor: zoom-in;
  padding: 0;
}
.card-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.card-image-edit img {
  object-position: 72% center;
  transform: scale(1.16);
}
.card-image-review img {
  object-position: center;
}
.card-image-document img {
  object-position: center 41%;
}
.card-visual {
  background: linear-gradient(145deg, #f5f3ff, #ece9ff);
  border: 1px solid rgba(101, 73, 245, 0.12);
  padding: 16px;
}
.feature-card > p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  margin-top: 13px;
}
.setup-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stage-strip {
  align-items: center;
  display: flex;
  gap: 5px;
  justify-content: center;
}
.stage-strip span {
  background: #fff;
  border: 1px solid rgba(101, 73, 245, 0.18);
  border-radius: 7px;
  color: #222a55;
  font-size: 10px;
  font-weight: 900;
  padding: 9px 7px;
  white-space: nowrap;
}
.stage-strip span:first-child {
  background: #6850ef;
  color: #fff;
}
.stage-strip i {
  color: #8170db;
  font-size: 12px;
  font-style: normal;
}
.setting-list {
  display: grid;
  gap: 6px;
  margin-top: 15px;
}
.setting-list span {
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  padding: 6px 9px;
}
.setting-list i {
  color: #626985;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}
.setting-list b {
  color: #5944d7;
  font-size: 10px;
}
.collab-visual {
  background: linear-gradient(145deg, #161a32, #2a245b);
  color: #fff;
  padding: 13px 15px;
}
.collab-brand {
  align-items: center;
  display: grid;
  gap: 0 8px;
  grid-template-columns: 33px 1fr;
  margin: 0 auto 12px;
  max-width: 170px;
}
.collab-brand > span {
  align-items: center;
  background: linear-gradient(145deg, #856fff, #5b3fe3);
  border-radius: 9px;
  display: flex;
  font-size: 16px;
  font-weight: 900;
  grid-row: 1/3;
  height: 33px;
  justify-content: center;
}
.collab-brand > b {
  font-size: 12px;
  letter-spacing: 0.08em;
}
.collab-brand > small {
  color: #b8b4d5;
  font-size: 9px;
}
.collab-members {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.collab-members:before {
  background: rgba(158, 144, 255, 0.42);
  content: '';
  height: 1px;
  left: 16%;
  position: absolute;
  right: 16%;
  top: -6px;
}
.collab-members span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
  padding: 8px 4px;
  text-align: center;
}
.collab-members i {
  color: #aaa0fb;
  display: block;
  font-size: 8px;
  font-style: normal;
  margin-bottom: 3px;
}
.collab-badges {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 10px;
}
.collab-badges b {
  background: rgba(135, 111, 255, 0.22);
  border: 1px solid rgba(163, 145, 255, 0.34);
  border-radius: 999px;
  color: #ded9ff;
  font-size: 8px;
  padding: 4px 7px;
}
.announce-visual {
  background: linear-gradient(145deg, #fff, #f1efff);
  line-height: 1.3;
  padding: 10px 12px;
}
.channel-tabs {
  display: grid;
  gap: 7px;
  grid-template-columns: 1fr 1fr;
}
.channel-tabs b {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(101, 73, 245, 0.15);
  border-radius: 7px;
  display: flex;
  font-size: 10px;
  gap: 6px;
  justify-content: center;
  padding: 5px;
}
.channel-tabs b:first-child {
  background: #6750e9;
  color: #fff;
}
.channel-tabs i {
  font-style: normal;
}
.channel-tabs b:last-child i {
  background: #08c755;
  border-radius: 4px;
  color: #fff;
  font-size: 7px;
  padding: 3px;
}
.announce-target {
  align-items: center;
  background: #fff;
  border-radius: 7px;
  display: grid;
  gap: 2px 7px;
  grid-template-columns: 1fr auto;
  margin-top: 6px;
  padding: 5px 8px;
}
.announce-target span {
  color: #787d98;
  font-size: 8px;
  grid-column: 1/-1;
}
.announce-target strong {
  font-size: 10px;
}
.announce-target em {
  background: #eeeaff;
  border-radius: 999px;
  color: #5a45d7;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  padding: 3px 6px;
}
.announce-message {
  background: #fff;
  border-radius: 7px;
  margin-top: 5px;
  padding: 5px 8px;
}
.announce-message span {
  font-size: 9px;
  font-weight: 900;
}
.announce-message i {
  background: #e8e7ef;
  border-radius: 2px;
  display: block;
  height: 3px;
  margin-top: 5px;
  width: 88%;
}
.announce-message i:last-child {
  width: 64%;
}
.announce-send {
  background: #6950ed;
  border-radius: 6px;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  margin-top: 5px;
  padding: 5px;
  text-align: center;
}
.pricing-section {
  background: #fff;
  padding: 0 0 94px;
}
.pricing-shell {
  align-items: center;
  background: linear-gradient(118deg, #151936, #282051 57%, #6948f1 100%);
  border-radius: 20px;
  box-shadow: 0 24px 58px rgba(31, 25, 69, 0.18);
  color: #fff;
  display: grid;
  gap: 45px;
  grid-template-columns: 1fr auto auto;
  min-height: 210px;
  padding: 40px 46px;
}
.pricing-copy > p {
  color: #ab99ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
}
.pricing-copy h2 {
  font-size: 34px;
  letter-spacing: -0.05em;
  margin-top: 13px;
}
.pricing-copy > span {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  font-size: 12px;
  margin-top: 10px;
}
.pricing-amount {
  align-items: baseline;
  display: flex;
  white-space: nowrap;
}
.pricing-amount small {
  color: #b9adff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-right: 13px;
}
.pricing-amount strong {
  font-size: 52px;
  letter-spacing: -0.06em;
}
.pricing-amount b {
  font-size: 17px;
  margin-left: 5px;
}
.pricing-amount em {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 9px;
  font-style: normal;
  margin-left: 9px;
  padding: 5px 7px;
}
.pricing-contact {
  background: #fff;
  border-radius: 9px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  padding: 15px 18px;
}
.pricing-contact span {
  margin-left: 25px;
}
.faq-section {
  background: linear-gradient(135deg, #faf9ff, #f2efff);
  padding: 94px 0;
}
.faq-shell {
  align-items: start;
  display: grid;
  gap: 70px;
  grid-template-columns: 0.55fr 1.45fr;
}
.faq-heading > p,
.philosophy-copy > p {
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.faq-heading h2 {
  font-size: 45px;
  letter-spacing: -0.065em;
  margin-top: 18px;
}
.faq-heading > span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.8;
  margin-top: 18px;
}
.faq-list {
  border-top: 1px solid rgba(56, 48, 108, 0.2);
}
.faq-list details {
  border-bottom: 1px solid rgba(56, 48, 108, 0.2);
}
.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  font-size: 15px;
  font-weight: 850;
  gap: 16px;
  grid-template-columns: 38px 1fr 28px;
  list-style: none;
  min-height: 72px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary b {
  color: var(--purple);
  font-size: 10px;
}
.faq-list summary:after {
  align-items: center;
  border: 1px solid rgba(101, 73, 245, 0.3);
  border-radius: 50%;
  color: var(--purple);
  content: '+';
  display: flex;
  font-size: 19px;
  height: 27px;
  justify-content: center;
  width: 27px;
}
.faq-list details[open] summary:after {
  background: var(--purple);
  color: #fff;
  content: '−';
}
.faq-list details > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  margin: -2px 35px 0 54px;
  padding-bottom: 23px;
}
.philosophy {
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.88) 34%,
      rgba(245, 242, 255, 0.18) 69%,
      rgba(237, 232, 255, 0.2) 100%
    ),
    url('assets/studio-philosophy-v2.png');
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: cover, 115% auto;
  min-height: 360px;
}
.philosophy-inner {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  position: relative;
}
.philosophy-copy h2 {
  font-size: clamp(1rem, 3.35vw, 2.5rem);
  letter-spacing: -0.055em;
  line-height: 1.35;
  margin-top: 16px;
  white-space: nowrap;
}
.philosophy-copy > span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.85;
  margin-top: 18px;
}
.philosophy-note {
  height: auto;
  position: absolute;
  right: 32px;
  top: 58px;
  transform: rotate(-3deg);
  width: 250px;
}
.site-footer {
  background: #fff;
}
.footer-inner {
  align-items: center;
  display: grid;
  gap: 16px 30px;
  grid-template-columns: auto 1fr auto;
  padding-bottom: 24px;
  padding-top: 24px;
}
.footer-wordmark img {
  height: 32px;
  width: 32px;
}
.footer-wordmark strong {
  font-size: 16px;
}
.footer-wordmark strong span {
  font-size: 10px;
}
.footer-copyline {
  font-size: 13px;
  justify-self: center;
}
.footer-cta {
  font-size: 11px;
  padding: 13px 17px;
}
.site-footer nav {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  grid-column: 1/-1;
  padding-top: 17px;
}
.site-footer nav a {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.8;
}
.site-footer small {
  color: #9699ad;
  font-size: 10px;
  grid-column: 1/-1;
  justify-self: end;
}
.lightbox {
  background: rgba(12, 13, 34, 0.96);
  border: 0;
  color: #fff;
  height: 100%;
  max-height: none;
  max-width: none;
  padding: 56px;
  width: 100%;
}
.lightbox::backdrop {
  background: rgba(8, 8, 20, 0.82);
}
.lightbox > img {
  border-radius: 11px;
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.dialog-close {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 27px;
  height: 43px;
  line-height: 1;
  position: fixed;
  right: 17px;
  top: 17px;
  width: 43px;
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal[data-delay='1'] {
  transition-delay: 0.09s;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .global-nav {
    gap: 16px;
  }
  .hero-hand {
    display: none;
  }
  .major-grid,
  .major-reverse {
    gap: 38px;
    grid-template-columns: 1fr 1fr;
  }
  .major-copy h2 {
    font-size: 37px;
  }
  .pricing-shell {
    grid-template-columns: 1fr auto;
  }
  .pricing-contact {
    grid-column: 1/-1;
    justify-self: end;
  }
}
@media (max-width: 900px) {
  .global-nav,
  .header-contact {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .global-nav {
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 15px 22px 22px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 76px;
    transform: translateY(-8px);
  }
  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .global-nav a {
    border-bottom: 1px solid var(--line);
    padding: 13px 2px;
  }
  .hero {
    min-height: 0;
  }
  .hero-layout {
    align-content: normal;
    gap: 24px;
    grid-template-columns: 1fr;
    min-height: 0;
    padding-bottom: 56px;
    padding-top: 0;
  }
  .hero-copy {
    align-self: start;
    padding-top: 62px;
  }
  .hero-visual {
    aspect-ratio: 1.5;
    height: auto;
    justify-self: center;
    left: 0;
    margin-bottom: 0;
    margin-top: 0;
    max-width: 680px;
    position: relative;
    width: 100%;
  }
  .screen-back {
    left: 0;
    right: auto;
    top: 0;
    width: 88%;
  }
  .screen-front {
    bottom: 0;
    width: 70%;
  }
  .major-grid,
  .major-reverse {
    grid-template-columns: 1fr;
  }
  .major-reverse .major-copy,
  .major-reverse .major-screen {
    order: initial;
  }
  .major-screen {
    margin-top: 3px;
  }
  .license-visual {
    margin-bottom: 30px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-shell {
    grid-template-columns: 1fr;
  }
  .faq-heading > span {
    max-width: none;
  }
  .philosophy-inner {
    grid-template-columns: 1fr;
  }
  .philosophy-note {
    margin-top: 25px;
    position: static;
    width: 300px;
  }
}
@media (max-width: 767px) {
  .page-container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .header-inner {
    padding: 0 18px;
  }
  .wordmark strong {
    font-size: 16px;
  }
  .wordmark strong span {
    font-size: 9px;
  }
  .hero {
    min-height: 0;
  }
  .hero-layout {
    padding-bottom: 44px;
  }
  .hero-copy {
    padding-top: 43px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero h1 b {
    font-size: 52.65px;
  }
  .hero-lede {
    font-size: 13px;
  }
  .hero-price strong {
    font-size: 34px;
  }
  .hero-visual {
    aspect-ratio: 1.35;
  }
  .screen-back {
    width: 94%;
  }
  .screen-front {
    bottom: 0;
    width: 78%;
  }
  .feature-intro {
    padding: 66px 0 62px;
  }
  .feature-intro h2 {
    font-size: 36px;
  }
  .major {
    padding: 62px 0;
  }
  .major-grid {
    gap: 30px;
  }
  .section-number b {
    font-size: 42px;
  }
  .major-copy h2 {
    font-size: 31px;
  }
  .major-copy > p {
    font-size: 13px;
  }
  .mini-points {
    grid-template-columns: repeat(2, 1fr);
  }
  .mini-points.compact {
    grid-template-columns: repeat(3, 1fr);
  }
  .mini-points span {
    font-size: 9px;
    min-height: 55px;
  }
  .license-visual > .major-screen {
    width: 92%;
  }
  .license-card {
    bottom: -24px;
    padding: 17px;
    width: 190px;
  }
  .license-card > b {
    font-size: 15px;
  }
  .license-card li {
    font-size: 9px;
  }
  .features {
    padding: 64px 0 76px;
  }
  .features-heading {
    align-items: start;
    flex-direction: column;
    gap: 9px;
  }
  .features-heading small {
    font-size: 10px;
  }
  .feature-grid {
    gap: 15px;
    grid-template-columns: 1fr;
    margin-top: 23px;
  }
  .feature-card {
    min-height: 0;
  }
  .pricing-section {
    padding-bottom: 70px;
  }
  .pricing-shell {
    gap: 24px;
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
  .pricing-amount {
    flex-wrap: wrap;
  }
  .pricing-amount small {
    flex-basis: 100%;
    margin-bottom: 7px;
  }
  .pricing-amount strong {
    font-size: 45px;
  }
  .pricing-contact {
    grid-column: auto;
    justify-self: stretch;
  }
  .faq-section {
    padding: 70px 0;
  }
  .faq-shell {
    gap: 35px;
  }
  .faq-heading h2 {
    font-size: 35px;
  }
  .faq-list summary {
    font-size: 14px;
    gap: 10px;
    grid-template-columns: 28px 1fr 27px;
  }
  .faq-list details > p {
    font-size: 12px;
    margin-left: 38px;
  }
  .philosophy-inner {
    min-height: 470px;
    padding-bottom: 55px;
    padding-top: 55px;
  }
  .philosophy {
    background-image:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.99) 0%,
        rgba(255, 255, 255, 0.95) 49%,
        rgba(247, 244, 255, 0.54) 72%,
        rgba(239, 234, 255, 0.18) 100%
      ),
      url('assets/studio-philosophy-v2.png');
    background-position: center, 54% bottom;
    background-size: cover, auto 60%;
  }
  .philosophy-copy h2 {
    font-size: clamp(1rem, 5.6vw, 2rem);
  }
  .philosophy-note {
    bottom: 25px;
    left: 18px;
    margin: 0;
    position: absolute;
    right: auto;
    top: auto;
    width: 180px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-copyline {
    justify-self: start;
  }
  .footer-cta {
    justify-self: start;
  }
  .site-footer nav {
    gap: 13px;
  }
  .site-footer small {
    justify-self: start;
  }
  .lightbox {
    padding: 54px 4px 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
