:root {
  color-scheme:dark;
  --bg:#0B0C0E;
  --cream:#F2EFE8;
  --gold:#D5C395;
  --muted:#aaa8a3;
  --line:rgba(213,195,149,.12);
  font-family:'DM Sans',sans-serif;
  color:var(--cream);
  background:var(--bg);
  font-synthesis:none;
  scroll-behavior:smooth;
  scroll-padding-top:30px;
}
* {
  box-sizing:border-box;
}
body {
  margin:0;
}
button,input {
  font:inherit;
}
a {
  color:inherit;
  text-decoration:none;
}
button,a,input {
  -webkit-tap-highlight-color:transparent;
}
button {
  cursor:pointer;
}
a:focus-visible,button:focus-visible,input:focus-visible {
  outline:2px solid var(--gold);
  outline-offset:5px;
}
button:disabled {
  cursor:wait;
  opacity:.6;
}
img {
  display:block;
  max-width:100%;
}
h1,h2,h3,p,figure {
  margin:0;
}
h1,h2,h3,.wordmark,.hero-promise,.xxx-promise {
  font-family:'Instrument Serif',Georgia,serif;
  font-weight:400;
}
em {
  font-weight:400;
}
p {
  font-size:16px;
  line-height:1.65;
  color:var(--muted);
}
.content {
  width:min(1180px,calc(100% - 112px));
  margin-inline:auto;
}
.eyebrow {
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  line-height:1.6;
}
.skip {
  position:fixed;
  top:-100px;
  left:20px;
  background:var(--bg);
  padding:14px;
  z-index:20;
}
.skip:focus {
  top:10px;
}
.header {
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:24px 56px;
}
.wordmark {
  font-size:32px;
  letter-spacing:-1px;
  white-space:nowrap;
  display:flex;
  align-items:center;
  gap:10px;
}
.wordmark span {
  font:22px Georgia;
  color:var(--gold);
}
nav {
  display:flex;
  gap:34px;
  align-items:center;
  font-size:14px;
}
nav a {
  padding:10px 0;
}
nav a:hover {
  color:var(--gold);
}
.login-link {
  margin-left:22px;
}
.login-link span {
  margin-left:12px;
}
.hero {
  position:relative;
  min-height:740px;
  height:100svh;
  max-height:1040px;
  overflow:hidden;
  display:flex;
  align-items:center;
  background:var(--bg);
}
.hero-image {
  position:absolute;
  inset:0 0 0 auto;
  width:67%;
  height:100%;
  object-fit:cover;
  object-position:50% 35%;
  animation:hero-image-in 1.2s ease-out both;
}
.hero-shade {
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,#0B0C0E 7%,rgba(11,12,14,.96) 24%,rgba(11,12,14,.58) 45%,rgba(11,12,14,0) 68%),linear-gradient(0deg,rgba(11,12,14,.74),transparent 28%,transparent 80%,rgba(11,12,14,.45));
}
.hero-copy {
  position:relative;
  z-index:1;
  padding:116px 0 100px;
  margin-left:9%;
  animation:rise-in .8s .15s both;
}
.hero-copy .eyebrow {
  margin-bottom:18px;
  color:var(--gold);
}
h1 {
  font-size:clamp(72px,8.2vw,124px);
  line-height:.95;
  letter-spacing:-.055em;
}
.period {
  color:var(--gold);
}
.hero-promise {
  color:var(--cream);
  font-size:clamp(38px,4.3vw,64px);
  line-height:1.06;
  letter-spacing:-.02em;
  margin-top:28px;
}
.hero-promise em {
  color:var(--gold);
}
.hero-description {
  margin:24px 0 30px;
  color:#d0cec8;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:26px;
  min-height:50px;
  border-radius:10px;
  padding:13px 23px;
  font-size:14px;
  font-weight:500;
  transition:background .2s,border-color .2s,transform .2s;
}
.button:hover {
  transform:translateY(-2px);
}
.primary {
  background:rgba(11,12,14,.32);
  border:1px solid rgba(213,195,149,.4);
  color:var(--gold);
}
.primary:hover {
  border-color:rgba(213,195,149,.65);
  background:rgba(213,195,149,.05);
}
.neutral {
  background:transparent;
  border:1px solid rgba(242,239,232,.25);
  color:var(--cream);
}
.neutral:hover {
  border-color:rgba(242,239,232,.45);
}
.fine-print {
  font-size:12px;
  margin-top:12px;
}
.hero-scroll,.hero-caption {
  position:absolute;
  bottom:30px;
  font-size:12px;
  z-index:1;
}
.hero-scroll {
  left:56px;
  display:flex;
  align-items:center;
  gap:24px;
}
.hero-scroll .icon {
  font-size:20px;
  transition:transform .2s;
}
.hero-scroll:hover .icon {
  transform:translateY(4px);
}
.hero-caption {
  right:56px;
  color:rgba(242,239,232,.75);
}
.possibilities {
  padding-block:100px 110px;
}
.section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
  margin-bottom:42px;
}
.section-heading h2 {
  font-size:52px;
  line-height:1.1;
  margin-top:12px;
  letter-spacing:-.03em;
}
.section-heading>p {
  max-width:255px;
}
.examples {
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:76px;
  align-items:center;
}
.image-stage {
  height:540px;
  position:relative;
  overflow:hidden;
}
.image-stage>img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 28%;
  transition:opacity .18s;
}
.media-caption {
  position:absolute;
  top:20px;
  left:20px;
  font-size:12px;
  color:var(--cream);
  text-shadow:0 1px 7px #000;
}
.scene-options {
  position:absolute;
  bottom:20px;
  left:20px;
  right:20px;
  display:flex;
  gap:4px;
  width:max-content;
  padding:5px;
  border-radius:24px;
  background:rgba(11,12,14,.8);
  backdrop-filter:blur(12px);
}
.scene-options button {
  border:0;
  border-radius:20px;
  padding:10px 17px;
  background:transparent;
  color:var(--cream);
  font-size:13px;
}
.scene-options button[aria-pressed=true] {
  background:rgba(242,239,232,.13);
}
.scene-options button:hover {
  color:var(--gold);
}
.example-heading {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:22px 0 8px;
}
.example-heading h3 {
  font-size:32px;
}
.example-heading span {
  font-size:12px;
  color:var(--muted);
}
.prompt {
  max-width:350px;
  font-size:14px;
}
.video-stage {
  overflow:hidden;
  background:#121314;
}
.video-stage video {
  width:100%;
  height:auto;
  display:block;
  aspect-ratio:960/542;
  object-fit:cover;
}
.video-example>p {
  max-width:420px;
}
.video-example .example-note {
  margin-top:12px;
  font-size:12px;
}
.workflow {
  display:flex;
  justify-content:space-between;
  border-top:1px solid var(--line);
  margin-top:32px;
  padding:24px 0;
  gap:12px;
}
.workflow span {
  font-size:12px;
  color:var(--cream);
}
.workflow b {
  display:block;
  font-weight:400;
  color:var(--muted);
  font-size:11px;
  margin-bottom:8px;
}
.text-link {
  font-size:14px;
  color:var(--gold);
  display:inline-flex;
  gap:20px;
  padding:8px 0;
}
.text-link:hover .icon {
  transform:translateX(3px);
}
.xxx-section {
  border-block:1px solid var(--line);
  padding:80px 0;
}
.xxx-inner {
  display:grid;
  grid-template-columns:1.25fr 1fr;
  gap:90px;
  align-items:center;
}
.xxx-inner h2 {
  font-size:clamp(72px,8vw,112px);
  line-height:1.1;
  letter-spacing:-.055em;
  margin-top:16px;
}
.xxx-inner h2 em {
  color:var(--gold);
}
.xxx-promise {
  font-size:36px;
  line-height:1.14;
  color:var(--cream);
  margin-top:20px;
}
.xxx-copy>p:first-child {
  max-width:360px;
  margin-bottom:25px;
}
.signup {
  padding-block:110px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:110px;
  align-items:center;
}
.signup-art {
  overflow:hidden;
  height:630px;
}
.signup-art img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s;
}
.signup-art:hover img {
  transform:scale(1.025);
}
.signup-copy h2 {
  font-size:64px;
  line-height:1.05;
  letter-spacing:-.035em;
  margin:16px 0 20px;
}
.signup-copy>p:not(.eyebrow) {
  max-width:360px;
}
form {
  margin-top:26px;
  max-width:380px;
}
.age-confirmation {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  cursor:pointer;
  padding:4px 0 20px;
}
.age-confirmation input {
  width:18px;
  height:18px;
  accent-color:var(--gold);
  margin:0;
}
.provider {
  width:100%;
  gap:12px;
  justify-content:flex-start;
  margin-bottom:12px;
}
.provider>.icon:last-child {
  margin-left:auto;
}
.provider svg {
  width:18px;
  height:18px;
}
.provider-mark {
  font-size:18px;
  font-weight:600;
  width:18px;
  text-align:center;
}
#auth-status {
  font-size:13px;
  min-height:0;
}
#auth-status:not(:empty) {
  padding-bottom:15px;
}
.signup-copy .signup-terms,.signup-copy .signup-price {
  font-size:12px;
  line-height:1.65;
  margin-top:14px;
}
.signup-terms a {
  text-decoration:underline;
  text-underline-offset:3px;
}
.existing-account {
  display:inline-block;
  font-size:13px;
  padding:16px 0;
  color:var(--cream);
}
.existing-account span {
  margin-left:8px;
}
.footer {
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  gap:26px;
  padding:30px 0;
}
.footer p {
  font-size:12px;
  margin-right:auto;
}
.footer>a:not(.wordmark) {
  font-size:12px;
  color:var(--muted);
}
.footer .wordmark {
  font-size:26px;
}
.reveal.is-waiting {
  opacity:0;
  transform:translateY(20px);
}
.reveal {
  transition:opacity .7s,transform .7s;
}
.reveal.is-visible {
  opacity:1;
  transform:none;
}
@keyframes rise-in {
  from {
    opacity:0;
    transform:translateY(18px);
  }
  to {
    opacity:1;
    transform:none;
  }
}
@keyframes hero-image-in {
  from {
    opacity:.6;
    transform:scale(1.035);
  }
  to {
    opacity:1;
    transform:scale(1);
  }
}
@media(min-width:1600px) {
  .hero-copy {
    margin-left:max(9%,calc((100vw - 1300px)/2));
  }
}
@media(max-width:900px) {
  .content {
    width:calc(100% - 56px);
  }
  .header {
    padding:22px 28px;
  }
  .hero-copy {
    margin-left:7%;
  }
  .hero-image {
    width:85%;
    object-position:45% 35%;
  }
  .hero-shade {
    background:linear-gradient(90deg,rgba(11,12,14,.96),rgba(11,12,14,.72) 35%,rgba(11,12,14,.05) 90%),linear-gradient(0deg,rgba(11,12,14,.7),transparent 45%);
  }
  .hero-scroll {
    left:28px;
  }
  .hero-caption {
    right:28px;
  }
  .examples {
    gap:32px;
  }
  .image-stage {
    height:460px;
  }
  .xxx-inner {
    gap:35px;
  }
  .signup {
    gap:40px;
  }
  .signup-art {
    height:570px;
  }
  .signup-copy h2 {
    font-size:54px;
  }
  .section-heading h2 {
    font-size:44px;
  }
}
@media(max-width:600px) {
  .header {
    padding:17px 22px;
  }
  .wordmark {
    font-size:28px;
  }
  nav {
    gap:20px;
    font-size:12px;
  }
  nav>a:first-child {
    display:none;
  }
  .login-link {
    margin-left:0;
  }
  .login-link span {
    margin-left:4px;
  }
  .hero {
    min-height:700px;
    max-height:950px;
    align-items:flex-end;
  }
  .hero-image {
    width:100%;
    object-position:58% 24%;
  }
  .hero-shade {
    background:linear-gradient(0deg,#0B0C0E 1%,rgba(11,12,14,.88) 25%,rgba(11,12,14,.35) 58%,rgba(11,12,14,.05) 76%,rgba(11,12,14,.4));
  }
  .hero-copy {
    padding:240px 22px 65px;
    margin:0;
  }
  .hero-copy .eyebrow {
    font-size:10px;
    margin-bottom:12px;
  }
  h1 {
    font-size:72px;
  }
  .hero-promise {
    font-size:39px;
    margin-top:20px;
    line-height:1.06;
  }
  .hero-description {
    font-size:15px;
    margin:17px 0 23px;
  }
  .hero-caption {
    display:none;
  }
  .hero-scroll {
    left:22px;
    bottom:13px;
    font-size:11px;
    gap:12px;
  }
  .hero-scroll .icon {
    font-size:17px;
  }
  .hero .button {
    min-height:48px;
  }
  .hero .fine-print {
    font-size:11px;
    margin-top:9px;
  }
  .content {
    width:calc(100% - 44px);
  }
  .possibilities {
    padding-block:62px 65px;
  }
  .section-heading {
    display:block;
    margin-bottom:28px;
  }
  .section-heading h2 {
    font-size:42px;
  }
  .section-heading>p {
    margin-top:13px;
    max-width:300px;
    font-size:15px;
  }
  .eyebrow {
    font-size:10px;
  }
  .examples {
    grid-template-columns:1fr;
    gap:42px;
  }
  .image-stage {
    height:470px;
  }
  .example-heading {
    margin-top:18px;
  }
  .example-heading h3 {
    font-size:30px;
  }
  .video-example>p {
    font-size:15px;
  }
  .workflow {
    margin-top:24px;
    padding-block:20px;
  }
  .xxx-section {
    padding-block:58px;
  }
  .xxx-inner {
    grid-template-columns:1fr;
    gap:28px;
  }
  .xxx-inner h2 {
    font-size:82px;
    margin-top:12px;
  }
  .xxx-promise {
    font-size:32px;
  }
  .xxx-copy>p:first-child {
    font-size:15px;
    margin-bottom:22px;
  }
  .signup {
    padding-block:64px;
    grid-template-columns:1fr;
    gap:34px;
  }
  .signup-art {
    height:290px;
  }
  .signup-art img {
    object-position:50% 28%;
  }
  .signup-copy h2 {
    font-size:52px;
    margin-top:13px;
  }
  .signup-copy>p {
    font-size:15px;
  }
  .signup-copy>p:not(.eyebrow),form {
    max-width:none;
  }
  .footer {
    flex-wrap:wrap;
    gap:16px 22px;
    padding-block:25px;
  }
  .footer .wordmark {
    width:100%;
  }
  .footer p {
    width:100%;
    font-size:11px;
  }
  .footer>a:not(.wordmark) {
    font-size:12px;
  }
}
@media(max-width:360px) {
  h1 {
    font-size:62px;
  }
  .hero-copy .eyebrow {
    letter-spacing:.1em;
  }
  .hero-promise {
    font-size:36px;
  }
  .image-stage {
    height:420px;
  }
  .xxx-inner h2 {
    font-size:72px;
  }
  nav {
    gap:14px;
  }
  .wordmark {
    font-size:25px;
  }
  .wordmark span {
    font-size:17px;
  }
}
@media(prefers-reduced-motion:reduce) {
  :root {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    animation:none!important;
    transition:none!important;
  }
  .reveal.is-waiting {
    opacity:1;
    transform:none;
  }
}

/* A single message and clear, consistent controls. */
.icon { width:20px; height:20px; display:inline-block; flex-shrink:0; vertical-align:middle; }
.login-link { min-height:44px; display:inline-flex; align-items:center; gap:12px; padding:0 18px; border:1px solid rgba(242,239,232,.3); border-radius:999px; background:rgba(11,12,14,.38); backdrop-filter:blur(12px); transition:background .2s,border-color .2s; }
.login-link:hover { background:rgba(242,239,232,.09); border-color:rgba(242,239,232,.5); color:var(--cream); }
.hero-promise { font-size:clamp(64px,7vw,104px); margin-top:0; }
.text-link { align-items:center; min-height:44px; }
.scene-options button { min-height:44px; }
@media(max-width:600px) {
  .nav-xxx { display:none; }
  .hero { min-height:660px; }
  .hero-copy { padding:180px 22px 75px; }
  .hero-promise { font-size:clamp(48px,13vw,72px); margin-top:0; }
  .login-link { padding-inline:16px; font-size:13px; }
}
