:root { 
    --ink:#241b24; 
    --muted:#796e72; 
    --paper:#fffaf3; 
    --cream:#f8eee1; 
    --peach:#f2b08c; 
    --coral:#e76e55; 
    --plum:#482640; 
    --lime:#d8ed5d; 
    --line:rgba(36,27,36,.14); 
}

* { 
    box-sizing:border-box; 
}

html { 
    scroll-behavior:smooth; 
}

body { 
    margin:0; 
    background:var(--paper); 
    color:var(--ink); 
    font-family:ui-rounded, "Hiragino Maru Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif; 
    line-height:1.65; 
    overflow-x:hidden; 
}

body::selection { 
    background:var(--peach); color:var(--ink); 
}

.page-noise { 
    position:fixed; 
    inset:0; 
    pointer-events:none; 
    opacity:.24; 
    z-index:20; 
    background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E"); 
    mix-blend-mode:multiply; 
}

.section-shell { 
    width:min(1180px, calc(100% - 56px)); 
    margin:0 auto; 
}

.site-header { 
    position:absolute; 
    z-index:4; 
    top:0; 
    left:50%; 
    transform:translateX(-50%); 
    width:min(1250px, calc(100% - 56px)); 
    height:94px; 
    display:flex; 
    align-items:center; 
    justify-content:space-between; 
}

.brand { 
    color:var(--ink); 
    font:800 clamp(1.7rem,2.3vw,2.15rem)/1 Arial, sans-serif; 
    letter-spacing:-.1em; 
    text-decoration:none; 
}

.brand span{
    color:var(--coral);
}

nav { 
    display:flex; 
    gap:30px; 
    margin-left:80px; 
} 

nav a,.header-cta { 
    color:var(--ink); 
    font-size:.78rem; 
    font-weight:700; 
    text-decoration:none;
 }
 
 .header-cta{
    padding:11px 0;
    border-bottom:1px solid var(--ink);
}

.header-cta span{
    margin-left:8px;
    color:var(--coral);
    font-size:1rem;
}

.hero { 
    min-height:760px; 
    padding-top:168px; 
    display:grid; 
    grid-template-columns:.95fr 1.05fr; 
    align-items:center; 
    gap:20px; 
    position:relative; 
}

.eyebrow,.section-label { 
    display:flex; 
    align-items:center; 
    gap:9px; 
    margin:0; 
    font:800 .67rem/1.2 Arial,sans-serif; 
    letter-spacing:.13em; 
}

.eyebrow span { 
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--coral);
    display:inline-block; 
}

h1,h2,h3,p { 
    margin-top:0; 
    line-break:strict; 
    word-break:normal; 
    overflow-wrap:break-word; 
}

h1,h2 { 
    letter-spacing:-.075em; 
    line-height:1.08; 
    text-wrap:auto; 
}

h1 { 
    margin:22px 0 25px; 
    font-size:clamp(4rem,5vw,6.7rem); 
    font-weight:800; 
}

h1 em,h2 em { 
    font-style:normal;
    color:var(--coral); 
}

h1 em { 
    position:relative;
    z-index:0; 
}

h1 em::after{
    content:"";
    position:absolute;
    left:-.05em;
    right:-.06em;
    bottom:.11em;
    height:.16em;
    background:var(--lime);
    z-index:-1;
    transform:rotate(-2deg);
}

.hero-description { 
    color:#544a50;
    font-size:1rem;
    font-weight:600;
    line-height:1.9;
    max-width:30em;
    text-wrap:pretty; 
}

.hero-actions { 
    display:flex;
    align-items:center;
    gap:24px;
    margin-top:31px; 
}

.button { 
    display:inline-flex;
    gap:18px;
    align-items:center;
    justify-content:center;
    padding:15px 20px;
    border-radius:99px;
    text-decoration:none;
    font-size:.78rem;
    font-weight:800;
    transition:transform .25s ease,background .25s ease; 
}

.button:hover{
    transform:translateY(-3px);
}

.button-primary{
    background:var(--ink);
    color:#fff;
}

.button-primary span{
    color:var(--lime);
    font-size:1.1rem;
}

.text-link{
    color:var(--ink);
    font-size:.78rem;
    font-weight:800;
    text-decoration:none;
    border-bottom:1px solid var(--ink);
    padding-bottom:4px;
}

.text-link span{
    color:var(--coral);
    margin-left:7px;
}

.hero-note{
    margin-top:42px;
    color:var(--muted);
    font-size:.74rem;
    display:flex;
    align-items:center;
    gap:7px;
}

.registration-dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--coral);
    box-shadow:0 0 0 4px rgba(231,110,85,.13);
}

.hero-visual {
    height:560px; 
    position:relative; 
    display:grid;
    place-items:center; 
}

.sun-shape { 
    position:absolute;
    width:430px;
    aspect-ratio:1;
    border-radius:50%;
    background:var(--peach);
    top:28px;
    left:50%;
    transform:translateX(-50%); 
}

.orbit{
    position:absolute;
    border:1px solid rgba(72,38,64,.26);
    border-radius:50%;
}

.orbit-one{
    width:520px;
    height:210px;
    transform:rotate(-25deg);
}

.orbit-two{
    width:370px;
    height:570px;
    transform:rotate(37deg);
}

.phone-card {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 34px 20px rgba(68,37,33,.22));
}

.phone-card img {
    display: block;
    width: 260px;
    border-radius: 33px;
}

.floating-note {
    position: absolute;
    z-index: 2;
    background: rgba(255,250,243,.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(36,27,36,.08);
    border-radius: 11px;
    box-shadow: 0 12px 28px rgba(68,37,33,.12);
    padding: 10px 13px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 7px;
    line-height: 1.15;
    min-width: 121px;
    transform: rotate(-5deg);
}

.floating-note b {
    font-size: .72rem;
}

.floating-note small {
    grid-column: 2;
    color: var(--muted);
    font-size: .59rem;
    margin-top: 3px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 3px;
}

.orange {
    background: var(--coral);
}

.note-goal {
    top: 112px;
    left: 2%;
}

.note-ai {
    bottom: 73px;
    right: 2%;
    transform: rotate(5deg);
}

.sparkle {
    color: var(--coral);
    font-size: 1.1rem;
    grid-row: span 2;
}

.visual-caption {
    position: absolute;
    bottom: 2px;
    right: 7%;
    font: 800 .63rem Arial;
    letter-spacing: .2em;
    color: var(--plum);
    writing-mode: vertical-rl;
}

.problem {
    padding: 135px 0 150px;
}

.section-label {
    color: var(--coral);
}

.section-label span {
    color: var(--ink);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1.05fr .75fr;
    gap: 80px;
    align-items: end;
    margin: 32px 0 78px;
}

.problem h2,
.flow h2,
.screens h2,
.privacy h2,
.positioning h2,
.plans h2,
.closing h2 {
    font-size: clamp(2.55rem,3vw,5rem);
    margin: 0;
}

.problem-copy p {
    color: #5e5258;
    font-size: .94rem;
}

.problem-copy p+p {
    margin-top: 18px;
}

.issue-list {
    border-top: 1px solid var(--line);
}

.issue-list article {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 15px;
    border-bottom: 1px solid var(--line);
    padding: 23px 0;
}

.issue-list span {
    font: 800 .7rem Arial;
    color: var(--coral);
}

.issue-list p {
    margin: 0;
    font-size: .91rem;
    font-weight: 600;
}

.flow {
    background: var(--plum);
    color: #fff;
    padding: 125px 0 115px;
    position: relative;
    overflow: hidden;
}

.flow::before {
    content: "";
    position: absolute;
    width: 75vw;
    height: 75vw;
    max-width: 900px;
    max-height: 900px;
    border-radius: 50%;
    right: -30vw;
    top: -55vw;
    border: 1px solid rgba(255,255,255,.12);
}

.light {
    color: var(--peach);
}

.light span {
    color: var(--lime);
}

.flow-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin: 31px 0 74px;
}

.flow h2 {
    max-width: 580px;
}

.flow h2 em {
    color: var(--lime);
}

.flow-heading>p {
    max-width: 335px;
    color: #d8cad1;
    font-size: .9rem;
    margin: 0;
}

.flow-track {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    position: relative;
}

.flow-track::before {
    content: "";
    height: 1px;
    background: rgba(255,255,255,.35);
    position: absolute;
    left: 0;
    right: 0;
    top: 49px;
}

.flow-step {
    position: relative;
    padding: 0 20px 0 0;
}

.step-number {
    width: 99px;
    height: 99px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--plum);
    border: 1px solid currentColor;
    color: var(--lime);
    font: 800 2.1rem Arial;
    position: relative;
    z-index: 1;
}

.step-do .step-number {
    color: var(--peach);
}

.step-check .step-number {
    color: #ec9395;
}

.step-act .step-number {
    color: #cbc3ff;
}

.step-kicker {
    font: 800 .65rem Arial;
    letter-spacing: .14em;
    color: var(--peach);
    margin: 22px 0 7px;
}

.flow-step h3 {
    font-size: 1.1rem;
    margin-bottom: 9px;
}

.flow-step>p:last-child {
    font-size: .78rem;
    line-height: 1.7;
    color: #d8cad1;
    margin: 0;
    max-width: 210px;
}

.screens {
    padding: 145px 0;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.screens-intro h2 {
    margin: 28px 0;
}

.screens-intro>p {
    font-size: .9rem;
    color: var(--muted);
    max-width: 320px;
}

.screen-gallery {
    position: relative;
    height: 550px;
}

.screen {
    position: absolute;
    margin: 0;
}

.screen-image {
    background: #eae8ee;
    padding: 8px;
    border-radius: 34px;
    box-shadow: 0 25px 40px rgba(61,37,31,.17);
    overflow: hidden;
}

.screen-image img {
    display: block;
    width: 218px;
    border-radius: 28px;
}

.screen-tasks {
    left: 0;
    top: 0;
    transform: rotate(-6deg);
}

.screen-reflection {
    right: 13%;
    top: 119px;
    transform: rotate(7deg);
}

.screen-reflection .screen-image {
    background: #f0ab8d;
}

.screen figcaption {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: .73rem;
}

.screen figcaption span {
    color: var(--coral);
    font: 800 .65rem Arial;
}

.screen figcaption b {
    font-weight: 700;
}

.privacy {
    background: var(--coral);
    color: #fff;
    padding: 126px 0;
    overflow: hidden;
}

.privacy-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 115px;
    align-items: center;
}

.privacy-art {
    height: 380px;
    position: relative;
    display: grid;
    place-items: center;
}

.privacy-disc {
    width: 193px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
    display: grid;
    place-items: center;
    text-align: center;
    font: 800 1.35rem/1.05 Arial;
    letter-spacing: -.06em;
    position: relative;
    z-index: 2;
}

.privacy-ring {
    position: absolute;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 50%;
}

.ring-a {
    width: 360px;
    height: 186px;
    transform: rotate(-33deg);
}

.ring-b {
    width: 218px;
    height: 408px;
    transform: rotate(37deg);
}

.star {
    font-style: normal;
    position: absolute;
    color: var(--lime);
    font-size: 1.6rem;
}

.star-a {
    top: 30px;
    left: 13%;
}

.star-b {
    right: 4%;
    bottom: 53px;
    color: #fff;
}

.privacy-content h2 {
    margin: 28px 0 25px;
}

.privacy-content h2 em {
    color: var(--lime);
}

.privacy-content>p {
    max-width: 530px;
    font-size: .93rem;
    color: #fff1ea;
}

.privacy-content ul {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}

.privacy-content li {
    border-top: 1px solid rgba(255,255,255,.35);
    padding: 13px 0;
    font-size: .82rem;
    font-weight: 700;
}

.privacy-content li span {
    color: var(--lime);
    margin-right: 8px;
}

.positioning {
    padding: 145px 0;
}

.positioning-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 35px;
    margin: 34px 0 74px;
}

.positioning-head>p {
    max-width: 350px;
    color: var(--muted);
    font-size: .9rem;
    margin: 0;
}

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

.people-grid article {
    padding: 28px 25px 31px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    min-height: 275px;
}

.person-symbol {
    font: 800 1.4rem Arial;
    color: var(--coral);
    border: 1px solid var(--coral);
    width: 37px;
    height: 37px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 39px;
}

.person-type {
    color: var(--muted);
    font: 800 .59rem Arial;
    letter-spacing: .11em;
    margin-bottom: 9px;
}

.people-grid h3 {
    font-size: 1.08rem;
    line-height: 1.55;
    letter-spacing: -.04em;
    margin-bottom: 19px;
}

.people-grid article>p:last-child {
    font-size: .76rem;
    color: var(--muted);
}

.plans {
    padding: 0 0 150px;
}

.plans-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 47px;
}

.plans-top h2 {
    margin-top: 30px;
}

.plans-top>p {
    max-width: 260px;
    margin: 0;
    font-size: .86rem;
    color: var(--muted);
}

.plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.plan-card {
    min-height: 253px;
    border-radius: 18px;
    padding: 29px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.free {
    background: var(--cream);
}

.pro {
    background: var(--ink);
    color: #fff;
}

.plan-label {
    font: 800 .65rem Arial;
    letter-spacing: .13em;
    color: var(--coral);
    margin-bottom: 25px;
}

.pro .plan-label {
    color: var(--lime);
}

.plan-card h3 {
    font-size: 1.65rem;
    letter-spacing: -.06em;
    margin: 0;
}

.plan-card h3 small {
    font-size: .68rem;
    letter-spacing: 0;
    font-weight: 500;
}

.plan-card ul {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    border-top: 1px solid rgba(36,27,36,.15);
}

.pro ul {
    border-color: rgba(255,255,255,.2);
}

.plan-card li {
    font-size: .78rem;
    padding-top: 10px;
}

.plan-card li::before {
    content: "✦";
    color: var(--coral);
    margin-right: 8px;
}

.pro li::before {
    color: var(--lime);
}

.closing {
    background: var(--peach);
    padding: 132px 0 137px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.closing-orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(72,38,64,.2);
}

.orb-left {
    width: 400px;
    height: 400px;
    left: -205px;
    top: -180px;
}

.orb-right {
    width: 520px;
    height: 520px;
    right: -290px;
    bottom: -330px;
}

.closing-content {
    position: relative;
}

.centered {
    justify-content: center;
}

.registration-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 25px 0 18px;
    padding: 7px 11px;
    border: 1px solid rgba(72,38,64,.35);
    border-radius: 99px;
    color: var(--plum);
    font: 800 .68rem/1 Arial;
    letter-spacing: .08em;
}

.registration-label::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
}

.closing h2 {
    margin: 0 0 21px;
}

.closing h2 em {
    color: var(--plum);
}

.closing-content>p:not(.eyebrow):not(.registration-label) {
    font-size: .9rem;
    color: #634651;
}

.button-light {
    margin-top: 22px;
    background: var(--paper);
    color: var(--ink);
}

.button-light span {
    color: var(--coral);
    font-size: 1.1rem;
}

.registration-button {
    cursor: default;
}

.site-footer {
    height: 100px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: .68rem;
    color: var(--muted);
}

.site-footer p {
    margin: 0;
}

.site-footer p:last-child {
    text-align: right;
}

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

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

.flow-step:nth-child(2),
.people-grid article:nth-child(2),
.plan-card:nth-child(2) {
    transition-delay: .1s;
}

.flow-step:nth-child(3),
.people-grid article:nth-child(3) {
    transition-delay: .2s;
}

.flow-step:nth-child(4) {
    transition-delay: .3s;
}

@media (prefers-reduced-motion:reduce) {
    html { scroll-behavior:auto; }
    .reveal { opacity:1; transform:none; transition:none; }
    .button { transition:none; }
}

@media (max-width:800px) {
    .section-shell { width:min(100% - 38px,580px); }
    .site-header { width:calc(100% - 38px); height:78px; }
    .site-header nav { display:none; }
    .header-cta { font-size:.69rem; }
    .hero { min-height:auto; padding-top:131px; display:flex; flex-direction:column; align-items:stretch; gap:22px; }
    .hero-copy { z-index:1; }
    .hero h1 { font-size:clamp(3.35rem,15.5vw,5.3rem); margin:17px 0 20px; }
    .hero-description { font-size:.86rem; }
    .hero-note { margin-top:26px; }
    .hero-visual { height:450px; margin:0 -19px; }
    .sun-shape { width:325px; top:40px; }
    .orbit-one { width:390px; height:150px; }
    .orbit-two { width:290px; height:450px; }
    .phone-card img { width:208px; border-radius:27px; }
    .note-goal { top:81px; left:5%; }
    .note-ai { bottom:59px; right:2%; }
    .problem { padding:95px 0; }
    .problem-grid { display:block; margin:25px 0 48px; }
    .problem h2 { margin-bottom:28px; }
    .issue-list article { grid-template-columns:54px 1fr; padding:19px 0; }
    .issue-list p { font-size:.8rem; }
    .flow { padding:86px 0; }
    .flow-heading { display:block; margin:25px 0 47px; }
    .flow-heading>p { margin-top:23px; font-size:.81rem; }
    .flow-track { display:block; border-left:1px solid rgba(255,255,255,.35); margin-left:18px; padding-left:26px; }
    .flow-track::before { display:none; }
    .flow-step { padding:0 0 31px; }
    .flow-step:last-child { padding-bottom:0; }
    .step-number { width:55px; height:55px; font-size:1.25rem; margin-left:-54px; float:left; background:var(--plum); }
    .step-kicker { padding-top:3px; margin:0 0 5px; }
    .flow-step h3 { font-size:1rem; margin-bottom:6px; }
    .flow-step>p:last-child { font-size:.75rem; }
    .screens { padding:94px 0; display:block; }
    .screens-intro h2 { margin:24px 0; }
    .screen-gallery { height:490px; margin-top:40px; }
    .screen-image { padding:6px; border-radius:27px; }
    .screen-image img { width:177px; border-radius:23px; }
    .screen-reflection { right:0; top:116px; }
    .privacy { padding:88px 0; }
    .privacy-grid { display:flex; flex-direction:column; gap:20px; }
    .privacy-art { height:282px; width:100%; }
    .privacy-disc { width:143px; font-size:1rem; }
    .ring-a { width:285px; height:145px; }
    .ring-b { width:175px; height:315px; }
    .privacy-content h2 { margin:23px 0; }
    .privacy-content>p { font-size:.82rem; }
    .privacy-content li { font-size:.74rem; }
    .positioning { padding:94px 0; }
    .positioning-head { display:block; margin:25px 0 45px; }
    .positioning-head>p { margin-top:24px; font-size:.82rem; }
    .people-grid { display:block; }
    .people-grid article { min-height:auto; padding:24px; }
    .person-symbol { margin-bottom:24px; }
    .plans { padding-bottom:94px; }
    .plans-top { display:block; margin-bottom:32px; }
    .plans-top>p { margin-top:22px; font-size:.8rem; }
    .plan-grid { display:block; }
    .plan-card { min-height:215px; padding:25px; margin-bottom:11px; }
    .plan-card h3 { font-size:1.35rem; }
    .closing { padding:98px 0; }
    .site-footer { height:auto; padding:30px 0; display:flex; flex-wrap:wrap; gap:10px 20px; }
    .site-footer p:nth-child(2) { margin-left:auto; }
    .site-footer p:last-child { width:100%; text-align:left; }
    .visual-caption { right:1%; }
}

@media (max-width:370px) {
    .hero-actions { gap:15px; }
    .floating-note { transform:scale(.88); }
    .screen-image img { width:152px; }
    .screen-gallery { height:440px; }
}
