:root {
  --ink:#101936;
  --purple:#5c4df2;
  --mint:#40e0bd;
  --yellow:#ffd34f;
  --muted:#536078;
  --paper:#f4f5ff;
  --border:#dcdfea;
  color-scheme:light;
  font-family:"Segoe UI",Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  font-synthesis:none;
}
* {
  box-sizing:border-box;
}
body {
  margin:0;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:24px;
}
button,input,textarea {
  font:inherit;
}
a {
  color:inherit;
  text-underline-offset:4px;
}
button,a {
  -webkit-tap-highlight-color:transparent;
}
button {
  cursor:pointer;
}
img {
  display:block;
  max-width:100%;
  height:auto;
}
[hidden] {
  display:none!important;
}
:focus-visible {
  outline:3px solid #b23686;
  outline-offset:5px;
}
p {
  font-size:18px;
  line-height:1.65;
  margin:0 0 18px;
}
h1,h2,h3 {
  margin:0;
  letter-spacing:-.04em;
  line-height:1.08;
}
h2 {
  font-size:clamp(30px,3.8vw,46px);
}
h3 {
  font-size:24px;
  letter-spacing:-.025em;
}
button:disabled {
  opacity:.55;
  cursor:default;
}
.shell {
  width:min(1160px,calc(100% - 64px));
  margin-inline:auto;
}
.narrow {
  max-width:860px;
}
.visually-hidden {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
}
.skip-link {
  position:absolute;
  top:-100px;
  left:20px;
  padding:12px;
  background:#fff;
  z-index:10;
}
.skip-link:focus {
  top:10px;
}
.site-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-block:28px;
}
.logo {
  width:224px;
  height:auto;
}
.header-link {
  font-weight:650;
  font-size:15px;
  text-decoration:none;
  display:flex;
  gap:20px;
  align-items:center;
}
.header-link span {
  font-size:26px;
}
.hero {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:44px;
  padding-block:42px 40px;
  align-items:center;
}
.eyebrow {
  font-weight:800;
  font-size:12px;
  letter-spacing:.13em;
  line-height:1.4;
  margin-bottom:22px;
}
.status-dot {
  display:inline-block;
  width:9px;
  height:9px;
  background:var(--purple);
  border-radius:50%;
  margin-right:9px;
}
.hero h1 {
  font-weight:900;
  font-size:clamp(55px,6.2vw,78px);
  letter-spacing:-.055em;
}
.hero h1 em {
  font-style:normal;
  color:var(--purple);
  position:relative;
}
.hero-lead {
  font-size:23px;
  font-weight:750;
  margin:26px 0 10px;
  line-height:1.35;
}
.hero-description {
  max-width:440px;
  color:var(--muted);
}
.button {
  min-height:54px;
  padding:14px 22px;
  border:0;
  border-radius:12px;
  text-decoration:none;
  font-weight:750;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  line-height:1.25;
  font-size:17px;
  transition:transform .16s,background .16s;
}
.button:hover {
  transform:translateY(-2px);
}
.button svg {
  width:21px;
  height:21px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
}
.primary {
  background:var(--purple);
  color:white;
  box-shadow:0 6px 18px #5c4df223;
}
.primary:hover {
  background:#4738d0;
}
.secondary {
  color:var(--ink);
  background:var(--paper);
  border:1px solid var(--border);
}
.dark {
  background:var(--ink);
  color:#fff;
}
.yellow {
  background:var(--yellow);
  color:var(--ink);
}
.start-block {
  margin-top:24px;
  scroll-margin-top:20px;
}
.micro {
  font-size:13px;
  line-height:1.6;
  color:var(--muted);
  margin-top:10px;
}
.copy-status {
  font-size:15px;
  font-weight:650;
  color:#215949;
  margin:0;
}
.copy-status:not(:empty) {
  margin-top:14px;
}
.copy-next {
  background:#e6f9f3;
  border:1px solid #bcdfd2;
  border-radius:14px;
  padding:18px;
  margin-top:12px;
}
.copy-next p {
  font-size:16px;
  line-height:1.5;
  margin-bottom:14px;
}
.hero-note {
  font-size:12px;
  line-height:1.6;
  color:var(--muted);
  max-width:350px;
  margin:20px 0 0;
}
.transformation {
  margin:0;
  align-self:center;
}
.image-pair {
  display:grid;
  grid-template-columns:.78fr 1.25fr;
  gap:12px;
  position:relative;
  align-items:center;
}
.before-image,.after-image {
  position:relative;
  overflow:hidden;
  border-radius:20px;
}
.before-image {
  transform:rotate(-3deg);
  box-shadow:0 12px 30px #10193615;
}
.after-image {
  background:#7b83d0;
  box-shadow:0 16px 35px #3739a222;
}
.before-image img {
  aspect-ratio:3/4;
  object-fit:cover;
}
.after-image img {
  aspect-ratio:4/5;
  object-fit:cover;
}
.image-label {
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(transparent,#101936d9);
  color:#fff;
  padding:36px 13px 16px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.06em;
}
.image-label b {
  font-size:9px;
  background:var(--mint);
  color:var(--ink);
  padding:3px 5px;
  border-radius:4px;
  margin-left:3px;
}
.transform-arrow {
  position:absolute;
  z-index:1;
  left:32%;
  top:35%;
  width:48px;
  height:48px;
  border:4px solid #fff;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--yellow);
  font-size:30px;
  font-weight:800;
  box-shadow:0 4px 12px #0002;
}
.transformation figcaption {
  font-size:11px;
  color:var(--muted);
  line-height:1.6;
  text-align:right;
  margin-top:22px;
}
.customize {
  margin-top:30px;
  margin-bottom:76px;
}
.customize>details {
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
}
.customize>details:first-child {
  background:var(--paper);
}
summary {
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  cursor:pointer;
  font-weight:700;
  line-height:1.4;
  font-size:17px;
  padding:23px;
}
summary::-webkit-details-marker {
  display:none;
}
summary .expand,summary>span:last-child:not(:first-child) {
  flex-shrink:0;
}
.small-label {
  display:block;
  font-size:10px;
  font-weight:800;
  letter-spacing:.1em;
  margin-bottom:6px;
  color:#4d40ce;
}
.expand {
  font-size:26px;
  font-weight:400;
}
details[open] .expand {
  transform:rotate(45deg);
}
.details-body {
  padding:0 23px 24px;
}
.details-body p {
  font-size:16px;
}
.field-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
label {
  display:block;
  font-size:14px;
  font-weight:650;
  line-height:1.5;
  margin-bottom:16px;
}
input {
  display:block;
  width:100%;
  padding:14px 12px;
  border:1px solid #b6bdd2;
  border-radius:8px;
  margin-top:6px;
  background:#fff;
  color:var(--ink);
  font-size:16px;
}
input::placeholder {
  color:#687187;
}
#custom-status,#correction-status {
  font-size:15px;
  margin:12px 0 0;
}
#custom-next {
  display:inline-block;
  margin-top:10px;
}
.customize .prompt-details {
  border:0;
  background:transparent;
  margin-top:5px;
}
.prompt-details summary {
  font-size:14px;
  font-weight:550;
  color:var(--muted);
  padding:18px 8px;
}
.prompt-details .details-body {
  padding:8px 0;
}
textarea {
  width:100%;
  font-size:14px;
  line-height:1.5;
  resize:vertical;
  min-height:220px;
  padding:16px;
  border-radius:10px;
  border:1px solid #b6bdd2;
  color:var(--ink);
  background:#fbfbfe;
  margin-bottom:14px;
}
.how-section {
  background:var(--paper);
  padding:72px 0;
}
.section-heading .eyebrow {
  color:#4d40ce;
  margin-bottom:16px;
}
.steps {
  list-style:none;
  counter-reset:step;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  padding:0;
  margin:40px 0 48px;
  gap:34px;
}
.steps li {
  border-top:1px solid #ccd0e7;
  padding-top:20px;
}
.step-number {
  font-size:13px;
  font-weight:800;
  color:#4d40ce;
  display:block;
  margin-bottom:18px;
  letter-spacing:.12em;
}
.steps h3 {
  font-size:23px;
  margin-bottom:14px;
}
.steps p {
  font-size:16px;
  color:var(--muted);
}
.text-link {
  font-size:15px;
  font-weight:750;
  color:#4e3ed5;
  text-decoration:underline;
}
.visual-guide {
  border-radius:18px;
  background:#fff;
  border:1px solid var(--border);
}
.visual-guide summary {
  font-size:17px;
  padding:24px 28px;
}
.visual-guide summary span span {
  font-size:12px;
  margin-right:12px;
  color:var(--purple);
}
.guide-body {
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:32px;
  align-items:center;
  padding:12px 42px 34px;
}
.guide-copy h3 {
  font-size:28px;
  max-width:350px;
}
.guide-copy p {
  font-size:16px;
  margin-top:16px;
  max-width:365px;
}
.demo-controls {
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:25px;
  align-items:center;
}
.demo-step,.demo-play {
  border:1px solid var(--border);
  background:#fff;
  border-radius:8px;
  min-width:44px;
  height:44px;
  font-weight:700;
  color:var(--ink);
}
.demo-step.active {
  background:var(--purple);
  color:#fff;
  border-color:var(--purple);
}
.demo-play {
  padding:0 12px;
  font-size:12px;
}
.demo-phone {
  border:2px solid #e1e3ed;
  border-radius:24px;
  background:#fafafa;
  max-width:300px;
  padding:20px;
  position:relative;
  width:100%;
  margin:0 auto;
}
.demo-phone-label {
  font-size:9px;
  color:var(--muted);
  font-weight:700;
  letter-spacing:.13em;
}
.demo-space {
  min-height:100px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.demo-greeting {
  font-size:18px;
  font-weight:700;
}
.demo-composer {
  border:1px solid #bec4d4;
  border-radius:16px;
  background:white;
  padding:12px;
}
.demo-text {
  font-size:12px;
  line-height:1.5;
  color:#5b6579;
  min-height:42px;
  margin-top:8px;
}
.demo-toolbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.demo-plus,.demo-send {
  display:grid;
  place-items:center;
  border-radius:50%;
  width:30px;
  height:30px;
  font-size:24px;
  font-weight:600;
}
.demo-send {
  background:var(--ink);
  color:#fff;
  font-size:21px;
}
.demo-plus.active,.demo-send.active {
  outline:4px solid var(--mint);
  outline-offset:3px;
}
.demo-thumbnail {
  border-radius:8px;
  width:55px;
  height:65px;
  object-fit:cover;
}
.demo-pointer {
  display:block;
  font-size:11px;
  font-weight:700;
  color:#4d40ce;
  margin:12px 0 0;
  text-align:center;
}
.demo-phone p {
  font-size:10px;
  color:var(--muted);
  line-height:1.5;
  margin:14px 0 0;
  text-align:center;
}
.demo-sent {
  padding:12px;
  background:#e0f5ed;
  border-radius:10px;
  font-size:12px;
  font-weight:650;
}
.connection {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  padding-block:82px;
  align-items:center;
}
.connection h2 {
  font-size:36px;
  margin-bottom:20px;
}
.connection p {
  color:var(--muted);
  font-size:17px;
}
.conversation-card {
  background:#e9fbf5;
  padding:34px;
  border-radius:20px;
  transform:rotate(1deg);
}
.quote-mark {
  font-size:68px;
  line-height:.7;
  color:#117054;
  font-weight:800;
  display:block;
  margin-bottom:12px;
}
.conversation-card h3 {
  font-size:27px;
  line-height:1.2;
  margin-bottom:20px;
}
.conversation-card p {
  font-size:15px;
  margin:0;
  color:#32574d;
}
.share-card {
  background:var(--purple);
  color:white;
  border-radius:26px;
  padding:52px;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:66px;
  align-items:center;
  overflow:hidden;
}
.share-card .eyebrow {
  color:var(--yellow);
}
.share-card h2 {
  margin-bottom:22px;
}
.share-card p {
  font-size:17px;
  color:#f2f0ff;
}
.share-card .share-note {
  font-size:12px;
  line-height:1.6;
  margin:18px 0 0;
  color:#efedff;
}
.story-preview {
  position:relative;
  transform:rotate(4deg);
  border:5px solid #fff;
  border-radius:18px;
  overflow:hidden;
  max-width:285px;
  margin:auto;
  box-shadow:0 15px 28px #1c155333;
}
.story-preview img {
  aspect-ratio:9/16;
  object-fit:contain;
  background:var(--ink);
}
.story-top {
  position:absolute;
  left:14px;
  top:16px;
  background:var(--yellow);
  color:var(--ink);
  padding:7px 10px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.04em;
  transform:rotate(-4deg);
}
.story-bottom {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background:linear-gradient(transparent,#101936ed 50%);
  padding:45px 15px 20px;
  font-size:23px;
  font-weight:800;
  line-height:1.1;
  letter-spacing:-.03em;
}
.story-bottom small {
  display:block;
  font-size:8px;
  font-weight:500;
  letter-spacing:0;
  margin-top:15px;
}
.faq {
  padding-block:85px 65px;
}
.faq h2 {
  margin-bottom:26px;
}
.faq details {
  border-top:1px solid var(--border);
}
.faq details:last-child {
  border-bottom:1px solid var(--border);
}
.faq summary {
  padding:24px 0;
  font-size:17px;
}
.faq .details-body {
  padding:0 0 25px;
}
.faq blockquote {
  margin:0 0 20px;
  border-left:3px solid var(--purple);
  padding:12px 18px;
  background:var(--paper);
  font-size:16px;
  line-height:1.65;
}
.academy-note {
  border-top:1px solid var(--border);
  padding-block:52px;
}
.academy-note>div {
  max-width:730px;
}
.academy-note h2 {
  font-size:30px;
  margin-bottom:18px;
}
.academy-note p {
  font-size:16px;
  color:var(--muted);
}
.site-footer {
  border-top:1px solid var(--border);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  padding-block:30px 44px;
}
.site-footer .logo {
  width:180px;
}
.site-footer p {
  font-size:11px;
  margin:0;
  color:var(--muted);
}
.site-footer nav {
  display:flex;
  gap:18px;
  font-size:12px;
}
@media(min-width:1500px) {
  .hero {
    padding-block:70px;
  }
  .image-pair {
    gap:15px;
  }
}
@media(max-width:850px) {
  .shell {
    width:calc(100% - 40px);
  }
  .hero {
    gap:26px;
    grid-template-columns:1.1fr 1fr;
    padding-top:26px;
  }
  .hero h1 {
    font-size:53px;
  }
  .hero-lead {
    font-size:20px;
  }
  .hero-description {
    font-size:17px;
  }
  .transform-arrow {
    width:38px;
    height:38px;
    font-size:25px;
    border-width:3px;
  }
  .image-label {
    font-size:8px;
    padding-inline:8px;
  }
  .steps {
    gap:23px;
  }
  .steps h3 {
    font-size:21px;
  }
  .connection {
    gap:35px;
  }
  .connection h2 {
    font-size:30px;
  }
  .share-card {
    padding:34px;
    gap:35px;
  }
  .guide-body {
    padding:10px 25px 28px;
    gap:20px;
  }
  .site-footer {
    flex-wrap:wrap;
  }
}
@media(max-width:620px) {
  html {
    scroll-padding-top:16px;
  }
  .shell {
    width:calc(100% - 40px);
  }
  .site-header {
    padding-block:20px;
  }
  .logo {
    width:190px;
  }
  .header-link {
    font-size:12px;
    gap:8px;
  }
  .header-link span {
    font-size:21px;
  }
  .hero {
    display:flex;
    flex-direction:column;
    gap:30px;
    padding-block:18px 0;
    align-items:stretch;
  }
  .hero-copy {
    display:contents;
  }
  .hero .eyebrow {
    order:0;
    margin:0;
    font-size:10px;
  }
  .hero h1 {
    order:1;
    font-size:clamp(48px,13vw,70px);
    margin-top:-14px;
    line-height:1.02;
  }
  .hero-lead {
    order:2;
    font-size:20px;
    margin:-11px 0 0;
  }
  .hero-description {
    order:3;
    font-size:16px;
    line-height:1.55;
    margin:-17px 0 0;
    max-width:none;
  }
  .transformation {
    order:5;
    width:100%;
    margin-top:-8px;
  }
  .image-pair {
    grid-template-columns:.8fr 1.25fr;
    gap:12px;
    max-width:440px;
    margin:auto;
  }
  .before-image,.after-image {
    border-radius:14px;
  }
  .transform-arrow {
    left:33%;
    top:37%;
    width:38px;
    height:38px;
  }
  .image-label {
    font-size:8px;
    padding:26px 9px 12px;
  }
  .image-label b {
    font-size:8px;
  }
  .transformation figcaption {
    font-size:10px;
    margin-top:14px;
    text-align:left;
    line-height:1.5;
  }
  .start-block {
    order:4;
    margin-top:-12px;
  }
  .start-block>.button {
    width:100%;
    min-height:58px;
    font-size:18px;
  }
  .start-block>.micro {
    text-align:center;
    margin-bottom:0;
    font-size:12px;
  }
  .copy-next .button {
    width:100%;
  }
  .hero-note {
    order:6;
    margin:-17px 0 0;
    text-align:center;
    font-size:11px;
    max-width:none;
  }
  .customize {
    margin-top:30px;
    margin-bottom:45px;
  }
  .customize summary {
    padding:19px;
    font-size:15px;
  }
  .customize .prompt-details summary {
    padding:18px 3px;
    font-size:12px;
  }
  .details-body {
    padding:0 18px 20px;
  }
  .details-body p {
    font-size:15px;
  }
  .field-grid {
    grid-template-columns:1fr;
    gap:0;
  }
  .customize .button {
    width:100%;
    font-size:15px;
  }
  .how-section {
    padding:45px 0;
  }
  .eyebrow {
    font-size:10px;
    margin-bottom:16px;
  }
  .section-heading h2 {
    font-size:31px;
  }
  .steps {
    grid-template-columns:1fr;
    gap:26px;
    margin:28px 0 34px;
  }
  .steps li {
    position:relative;
    padding:22px 0 0 47px;
  }
  .step-number {
    position:absolute;
    left:0;
    top:25px;
    font-size:12px;
  }
  .steps h3 {
    font-size:23px;
    margin-bottom:10px;
  }
  .steps p {
    font-size:16px;
    margin-bottom:10px;
  }
  .text-link {
    font-size:14px;
  }
  .visual-guide summary {
    padding:19px 17px;
    font-size:14px;
  }
  .visual-guide summary span span {
    margin-right:6px;
  }
  .guide-body {
    grid-template-columns:1fr;
    padding:4px 18px 24px;
  }
  .guide-copy h3 {
    font-size:25px;
  }
  .guide-copy p {
    font-size:15px;
  }
  .demo-phone {
    max-width:290px;
  }
  .demo-controls {
    margin-top:18px;
    margin-bottom:10px;
  }
  .connection {
    grid-template-columns:1fr;
    padding-block:49px;
    gap:23px;
  }
  .connection h2 {
    font-size:31px;
  }
  .connection p {
    font-size:16px;
    margin-bottom:0;
  }
  .conversation-card {
    padding:27px;
    transform:none;
  }
  .conversation-card h3 {
    font-size:25px;
  }
  .conversation-card p {
    font-size:15px;
  }
  .share-card {
    grid-template-columns:1fr;
    padding:30px 23px;
    border-radius:20px;
    gap:30px;
  }
  .share-card h2 {
    font-size:34px;
  }
  .share-card p {
    font-size:16px;
  }
  .share-card .button {
    width:100%;
    font-size:15px;
    padding-inline:12px;
  }
  .share-card .share-note {
    font-size:11px;
  }
  .story-preview {
    max-width:210px;
    transform:rotate(3deg);
  }
  .story-bottom {
    font-size:21px;
  }
  .faq {
    padding-block:52px 35px;
  }
  .faq h2 {
    font-size:31px;
    margin-bottom:20px;
  }
  .faq summary {
    font-size:16px;
    gap:18px;
    padding-block:22px;
  }
  .faq .details-body p {
    font-size:15px;
  }
  .faq blockquote {
    font-size:15px;
  }
  .academy-note {
    padding-block:35px;
  }
  .academy-note h2 {
    font-size:28px;
  }
  .academy-note p {
    font-size:15px;
  }
  .site-footer {
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    padding-block:28px;
  }
  .site-footer p {
    font-size:11px;
    line-height:1.6;
  }
  .site-footer nav {
    font-size:13px;
  }
  .site-footer .logo {
    width:190px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    transition:none!important;
    animation:none!important;
  }
}
