:root {
    --ink: #211d19;
    --ink-soft: #615a53;
    --orange: #ff7a1a;
    --orange-deep: #d95508;
    --orange-soft: #fff0df;
    --cream: #fffaf3;
    --paper: #ffffff;
    --line: #e9e2d9;
    --line-strong: #d8cec2;
    --aqua: #26b9ae;
    --aqua-soft: #dcf7f4;
    --violet: #7568e8;
    --violet-soft: #eceaff;
    --yellow: #f5b929;
    --yellow-soft: #fff4cc;
    --success: #2e9b63;
    --danger: #d9504f;
    --shadow-sm: 0 1px 2px rgba(44, 31, 20, 0.05), 0 8px 24px rgba(44, 31, 20, 0.05);
    --shadow-md: 0 16px 48px rgba(44, 31, 20, 0.1);
    --shadow-lg: 0 28px 80px rgba(44, 31, 20, 0.14);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-xl: 44px;
    --display: "Bricolage Grotesque", "Arial Rounded MT Bold", sans-serif;
    --body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 108px;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--display);
    letter-spacing: -0.035em;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 10px 16px;
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

.shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 112px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--orange-deep);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    line-height: 0.98;
}

.section-heading p {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.announcement {
    position: relative;
    z-index: 80;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--ink);
    color: #fff;
}

.announcement__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-align: center;
}

.announcement__dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(255, 122, 26, 0.16);
}

.announcement a {
    color: #ffd7b8;
}

.announcement a:hover {
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    border-bottom: 1px solid transparent;
    background: rgba(255, 250, 243, 0.82);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    border-color: rgba(216, 206, 194, 0.8);
    background: rgba(255, 250, 243, 0.94);
    box-shadow: 0 8px 26px rgba(44, 31, 20, 0.05);
}

.nav {
    min-height: 78px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.brand {
    width: fit-content;
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: auto;
    height: 42px;
    object-fit: contain;
}

.brand__fallback {
    display: none;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.brand.image-missing img {
    display: none;
}

.brand.image-missing .brand__fallback {
    display: inline-flex;
}

.brand__mark {
    position: relative;
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 12px 12px 14px 14px;
    background: var(--orange);
    box-shadow: inset 0 -4px 0 rgba(117, 53, 9, 0.16);
}

.brand__mark::before,
.brand__mark::after {
    position: absolute;
    top: 8px;
    width: 8px;
    height: 17px;
    border-radius: 999px;
    background: var(--ink);
    content: "";
    transform: rotate(-18deg);
}

.brand__mark::before {
    left: 9px;
}

.brand__mark::after {
    right: 9px;
    transform: rotate(18deg);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav__links a {
    position: relative;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 800;
}

.nav__links a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--orange);
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.nav__links a:hover,
.nav__links a:focus-visible {
    color: var(--ink);
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
    transform: scaleX(1);
}

.nav__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg {
    width: 19px;
    height: 19px;
}

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

.button:active {
    transform: translateY(0);
}

.button--primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 6px 0 var(--orange-deep), 0 14px 28px rgba(217, 85, 8, 0.18);
}

.button--primary:hover {
    background: #ff6f0a;
    box-shadow: 0 8px 0 var(--orange-deep), 0 18px 34px rgba(217, 85, 8, 0.22);
}

.button--primary:active {
    box-shadow: 0 2px 0 var(--orange-deep);
    transform: translateY(4px);
}

.button--quiet {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    box-shadow: 0 3px 0 var(--line);
}

.button--quiet:hover {
    border-color: var(--line-strong);
    background: #fff;
}

.button--text {
    min-height: 44px;
    padding-inline: 14px;
    color: var(--ink-soft);
}

.button--text:hover {
    background: var(--orange-soft);
    color: var(--orange-deep);
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
}

.menu-toggle svg {
    width: 23px;
    height: 23px;
}

.menu-toggle .icon-close {
    display: none;
}

.menu-toggle[aria-expanded="true"] .icon-menu {
    display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
    display: block;
}

.mobile-panel {
    display: none;
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 82px 0 96px;
    isolation: isolate;
}

.hero::before {
    position: absolute;
    z-index: -3;
    top: -290px;
    right: -250px;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 178, 112, 0.44) 0%, rgba(255, 217, 181, 0.18) 45%, transparent 70%);
    content: "";
}

.hero::after {
    position: absolute;
    z-index: -3;
    bottom: -360px;
    left: -280px;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38, 185, 174, 0.13), transparent 68%);
    content: "";
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    align-items: center;
    gap: clamp(48px, 7vw, 100px);
}

.hero__copy {
    position: relative;
    z-index: 2;
    max-width: 610px;
}

.hero__badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 9px 13px 9px 10px;
    border: 1px solid #f2d2b7;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #7d3b10;
    box-shadow: var(--shadow-sm);
    font-size: 0.79rem;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.hero__badge-icon {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--orange);
    color: #fff;
}

.hero__badge-icon svg {
    width: 14px;
    height: 14px;
}

.hero h1 {
    max-width: 690px;
    margin-bottom: 24px;
    font-size: clamp(3.45rem, 6.4vw, 6.55rem);
    line-height: 0.91;
}

.hero h1 span {
    position: relative;
    display: inline-block;
    color: var(--orange);
}

.hero h1 span::after {
    position: absolute;
    right: 3%;
    bottom: -8px;
    left: 2%;
    height: 10px;
    border-radius: 50%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 20' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath d='M4 12C96 4 286 4 396 10' stroke='%23FFB46E' stroke-width='8' fill='none' stroke-linecap='round' opacity='.8'%2F%3E%3C%2Fsvg%3E") center / 100% 100% no-repeat;
    content: "";
}

.hero__lead {
    max-width: 570px;
    margin-bottom: 30px;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.6vw, 1.26rem);
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__actions .button {
    min-height: 58px;
    padding-inline: 25px;
    border-radius: 17px;
    font-size: 0.98rem;
}

.hero__note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 22px 0 0;
    color: #7a726b;
    font-size: 0.82rem;
    font-weight: 750;
}

.hero__note svg {
    width: 17px;
    height: 17px;
    color: var(--success);
}

.hero-demo {
    position: relative;
    z-index: 1;
    min-height: 610px;
    display: grid;
    place-items: center;
}

.hero-demo::before {
    position: absolute;
    z-index: -2;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 122, 26, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
    box-shadow: inset 0 0 0 42px rgba(255, 255, 255, 0.16);
    content: "";
}

.hero-demo::after {
    position: absolute;
    z-index: -1;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 122, 26, 0.14), rgba(255, 255, 255, 0.7));
    filter: blur(2px);
    content: "";
}

.planner {
    position: relative;
    width: min(470px, 90%);
    overflow: hidden;
    border: 1px solid rgba(216, 206, 194, 0.92);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--shadow-lg);
    transform: rotate(-1.3deg);
}

.planner__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 18px;
    border-bottom: 1px solid var(--line);
}

.planner__hello {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.76rem;
    font-weight: 800;
}

.planner__title {
    margin: 2px 0 0;
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 850;
}

.planner__avatar {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 15px;
    background: var(--orange-soft);
    box-shadow: 0 0 0 1px var(--line);
}

.planner__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.planner__body {
    padding: 24px;
}

.focus-card {
    position: relative;
    overflow: hidden;
    padding: 21px;
    border-radius: 24px;
    background: var(--ink);
    color: #fff;
}

.focus-card::after {
    position: absolute;
    top: -38px;
    right: -32px;
    width: 130px;
    height: 130px;
    border: 26px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.focus-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.focus-card__meta span:last-child {
    color: #ffd8bb;
}

.focus-card h3 {
    max-width: 280px;
    margin-bottom: 8px;
    font-size: 1.6rem;
    line-height: 1.05;
}

.focus-card p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.82rem;
}

.focus-card__progress {
    width: 100%;
    height: 8px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--orange);
    appearance: none;
    -webkit-appearance: none;
}

.focus-card__progress::-webkit-progress-bar {
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.12);
}

.focus-card__progress::-webkit-progress-value {
    border-radius: inherit;
    background: linear-gradient(90deg, var(--orange), #ffb86d);
}

.focus-card__progress::-moz-progress-bar {
    border-radius: inherit;
    background: linear-gradient(90deg, var(--orange), #ffb86d);
}

.planner__steps {
    display: grid;
    gap: 10px;
    margin-top: 15px;
}

.planner-step {
    display: grid;
    grid-template-columns: 43px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
}

.planner-step__icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 14px;
}

.planner-step__icon svg {
    width: 21px;
    height: 21px;
}

.planner-step:nth-child(1) .planner-step__icon {
    background: var(--orange-soft);
    color: var(--orange-deep);
}

.planner-step:nth-child(2) .planner-step__icon {
    background: var(--aqua-soft);
    color: #14847c;
}

.planner-step:nth-child(3) .planner-step__icon {
    background: var(--violet-soft);
    color: var(--violet);
}

.planner-step strong {
    display: block;
    font-size: 0.82rem;
    line-height: 1.25;
}

.planner-step small {
    color: var(--ink-soft);
    font-size: 0.68rem;
    font-weight: 650;
}

.planner-step__state {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f5f1eb;
    color: #938a81;
}

.planner-step__state svg {
    width: 14px;
    height: 14px;
}

.planner-step.is-active {
    border-color: #f5b078;
    box-shadow: 0 8px 22px rgba(217, 85, 8, 0.08);
}

.planner-step.is-active .planner-step__state {
    background: var(--orange);
    color: #fff;
}

.float-chip {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 14px 11px 11px;
    border: 1px solid rgba(216, 206, 194, 0.8);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.91);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.float-chip__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
}

.float-chip__icon svg {
    width: 19px;
    height: 19px;
}

.float-chip strong {
    display: block;
    font-size: 0.8rem;
    line-height: 1.2;
}

.float-chip small {
    display: block;
    color: var(--ink-soft);
    font-size: 0.65rem;
    font-weight: 700;
}

.float-chip--streak {
    top: 48px;
    right: -7px;
    animation: float-one 5.5s ease-in-out infinite;
}

.float-chip--streak .float-chip__icon {
    background: var(--yellow-soft);
    color: #b67a00;
}

.float-chip--ai {
    bottom: 54px;
    left: -14px;
    animation: float-two 6.5s ease-in-out infinite;
}

.float-chip--ai .float-chip__icon {
    background: var(--aqua-soft);
    color: #14847c;
}

.proof-strip {
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.62);
}

.proof-strip__inner {
    min-height: 94px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.proof-item {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-inline: 24px;
    color: var(--ink-soft);
    font-size: 0.83rem;
    font-weight: 800;
    text-align: left;
}

.proof-item + .proof-item {
    border-left: 1px solid var(--line);
}

.proof-item__icon {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--orange-soft);
    color: var(--orange-deep);
}

.proof-item:nth-child(2) .proof-item__icon {
    background: var(--aqua-soft);
    color: #14847c;
}

.proof-item:nth-child(3) .proof-item__icon {
    background: var(--violet-soft);
    color: var(--violet);
}

.proof-item__icon svg {
    width: 18px;
    height: 18px;
}

.method {
    background: #fff;
}

.method__intro {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 58px;
}

.method__intro .section-heading {
    margin-bottom: 0;
}

.method__statement {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--cream);
    color: var(--ink-soft);
    font-size: 1rem;
}

.method__statement strong {
    color: var(--ink);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.method-card {
    position: relative;
    min-height: 310px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--cream);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.method-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.method-card__number {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    margin-bottom: 56px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--orange-deep);
    font-family: var(--display);
    font-weight: 900;
}

.method-card h3 {
    margin-bottom: 11px;
    font-size: 1.7rem;
    line-height: 1.08;
}

.method-card p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.method-card__shape {
    position: absolute;
    top: -58px;
    right: -55px;
    width: 155px;
    height: 155px;
    border: 24px solid rgba(255, 122, 26, 0.08);
    border-radius: 50%;
}

.method-card:nth-child(2) .method-card__shape {
    border-color: rgba(38, 185, 174, 0.09);
}

.method-card:nth-child(3) .method-card__shape {
    border-color: rgba(117, 104, 232, 0.09);
}

.product {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}

.product::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.product__grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    align-items: center;
    gap: 70px;
}

.product .eyebrow {
    color: #ffb67e;
}

.product h2 {
    margin-bottom: 20px;
    font-size: clamp(2.6rem, 5vw, 5.1rem);
    line-height: 0.95;
}

.product__copy > p {
    max-width: 520px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 1.08rem;
}

.product__list {
    display: grid;
    gap: 14px;
}

.product__list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.93rem;
    font-weight: 700;
}

.product__check {
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    margin-top: 1px;
    border-radius: 8px;
    background: rgba(255, 122, 26, 0.16);
    color: #ffb67e;
}

.product__check svg {
    width: 14px;
    height: 14px;
}

.map {
    position: relative;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.map__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.map__header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.map__header h3 {
    margin: 3px 0 0;
    font-size: 1.45rem;
}

.map__score {
    min-width: 90px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    text-align: right;
}

.map__score strong {
    display: block;
    color: #ffd0ad;
    font-family: var(--display);
    font-size: 1.15rem;
    line-height: 1;
}

.map__score small {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.62rem;
    font-weight: 750;
}

.map__path {
    position: relative;
    display: grid;
    gap: 13px;
}

.map__path::before {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 24px;
    width: 2px;
    background: linear-gradient(var(--orange) 0 55%, rgba(255, 255, 255, 0.1) 55%);
    content: "";
}

.map-node {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
}

.map-node__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: #302b27;
    color: rgba(255, 255, 255, 0.48);
}

.map-node__icon svg {
    width: 22px;
    height: 22px;
}

.map-node.is-done .map-node__icon {
    border-color: rgba(255, 122, 26, 0.45);
    background: var(--orange);
    color: #fff;
}

.map-node.is-current {
    border-color: rgba(255, 182, 126, 0.34);
    background: rgba(255, 122, 26, 0.1);
}

.map-node.is-current .map-node__icon {
    border-color: rgba(255, 182, 126, 0.5);
    background: #fff;
    color: var(--orange-deep);
    box-shadow: 0 0 0 6px rgba(255, 122, 26, 0.1);
}

.map-node strong {
    display: block;
    font-size: 0.85rem;
}

.map-node small {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.67rem;
    font-weight: 650;
}

.map-node__tag {
    padding: 5px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.62rem;
    font-weight: 850;
}

.map-node.is-current .map-node__tag {
    background: var(--orange);
    color: #fff;
}

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

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.feature-card {
    position: relative;
    display: block;
    min-height: 330px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
    border-color: rgba(239, 115, 35, 0.42);
    box-shadow: var(--shadow-md);
}

.feature-card:focus-visible {
    outline: 3px solid rgba(239, 115, 35, 0.34);
    outline-offset: 4px;
}

.feature-card--wide {
    grid-column: span 7;
}

.feature-card--narrow {
    grid-column: span 5;
}

.feature-card--half {
    grid-column: span 6;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 48px;
    border-radius: 16px;
    background: var(--orange-soft);
    color: var(--orange-deep);
}

.feature-card__icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    max-width: 430px;
    margin-bottom: 10px;
    font-size: 1.9rem;
    line-height: 1.06;
}

.feature-card p {
    max-width: 460px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--orange-deep);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: -0.01em;
}

.feature-card__link span {
    transition: transform 180ms ease;
}

.feature-card:hover .feature-card__link span {
    transform: translateX(4px);
}

.feature-card__visual {
    position: absolute;
    pointer-events: none;
}

.feature-card--adaptive {
    min-height: 410px;
    background: linear-gradient(145deg, #fff 20%, #fff7ec);
}

.feature-card--adaptive .feature-card__visual {
    top: 28px;
    right: -12px;
    width: 245px;
    display: grid;
    gap: 8px;
    transform: rotate(4deg);
}

.mini-question {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.mini-question span:first-child {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #f4eee6;
    color: var(--ink-soft);
    font-size: 0.65rem;
    font-weight: 900;
}

.mini-question span:last-child {
    height: 7px;
    flex: 1;
    border-radius: 999px;
    background: #eee8e1;
}

.mini-question.is-answer {
    border-color: #f5b078;
}

.mini-question.is-answer span:first-child {
    background: var(--orange);
    color: #fff;
}

.mini-question.is-answer span:last-child {
    background: #ffc99d;
}

.feature-card--essay {
    min-height: 410px;
    background: #27231f;
    color: #fff;
}

.feature-card--essay .feature-card__icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd0ad;
}

.feature-card--essay p {
    color: rgba(255, 255, 255, 0.58);
}

.feature-card--essay .feature-card__link {
    color: #ffd0ad;
}

.feature-card--essay .feature-card__visual {
    top: 26px;
    right: 25px;
    width: 152px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.075);
}

.score-ring {
    position: relative;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    margin: 0 auto 13px;
    border-radius: 50%;
    background: conic-gradient(var(--orange) 0 86%, rgba(255, 255, 255, 0.1) 86%);
}

.score-ring::before {
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: #322d29;
    content: "";
}

.score-ring strong {
    position: relative;
    z-index: 1;
    font-family: var(--display);
    font-size: 1.35rem;
}

.score-label {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.62rem;
    font-weight: 800;
    text-align: center;
}

.feature-card--tutor .feature-card__icon {
    background: var(--aqua-soft);
    color: #14847c;
}

.feature-card--review .feature-card__icon {
    background: var(--violet-soft);
    color: var(--violet);
}

.feature-card--tutor .feature-card__visual,
.feature-card--review .feature-card__visual {
    right: 27px;
    bottom: 27px;
}

.chat-bubble {
    max-width: 230px;
    padding: 14px 16px;
    border-radius: 18px 18px 5px 18px;
    background: var(--aqua-soft);
    color: #176d67;
    font-size: 0.72rem;
    font-weight: 750;
    box-shadow: var(--shadow-sm);
}

.review-stack {
    width: 220px;
    display: flex;
    align-items: flex-end;
    gap: 7px;
}

.review-stack span {
    flex: 1;
    border-radius: 8px 8px 3px 3px;
    background: var(--violet-soft);
}

.review-stack span:nth-child(1) {
    height: 34px;
}

.review-stack span:nth-child(2) {
    height: 64px;
}

.review-stack span:nth-child(3) {
    height: 48px;
}

.review-stack span:nth-child(4) {
    height: 85px;
    background: var(--violet);
}

.tutor {
    background: #fff;
}

.tutor__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.tutor__copy h2 {
    margin-bottom: 22px;
    font-size: clamp(2.5rem, 4.8vw, 4.8rem);
    line-height: 0.96;
}

.tutor__copy > p {
    margin-bottom: 28px;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.tutor__quote {
    padding-left: 17px;
    border-left: 3px solid var(--aqua);
    color: #4e625f;
    font-size: 0.9rem;
    font-weight: 700;
}

.chat {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: #fbfaf8;
    box-shadow: var(--shadow-md);
}

.chat__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 19px;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.chat__avatar {
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 15px;
    background: var(--orange-soft);
}

.chat__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat__header strong {
    display: block;
    font-size: 0.86rem;
}

.chat__online {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--success);
    font-size: 0.67rem;
    font-weight: 800;
}

.chat__online::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.chat__body {
    display: grid;
    gap: 11px;
    padding: 22px;
}

.message {
    max-width: 84%;
    padding: 12px 15px;
    border-radius: 17px;
    font-size: 0.82rem;
    font-weight: 650;
    line-height: 1.5;
}

.message--user {
    justify-self: end;
    border-radius: 17px 17px 5px 17px;
    background: var(--ink);
    color: #fff;
}

.message--tigo {
    justify-self: start;
    border: 1px solid #bfe9e5;
    border-radius: 17px 17px 17px 5px;
    background: var(--aqua-soft);
    color: #225f5a;
}

.message__label {
    display: block;
    margin-bottom: 4px;
    color: #14847c;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.typing {
    width: fit-content;
    display: flex;
    gap: 4px;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 16px 16px 16px 5px;
    background: #fff;
}

.typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a99f95;
    animation: typing 1.2s ease-in-out infinite;
}

.typing span:nth-child(2) {
    animation-delay: 140ms;
}

.typing span:nth-child(3) {
    animation-delay: 280ms;
}

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

.challenge__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 70px;
}

.challenge__copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2.4rem, 4.8vw, 4.7rem);
    line-height: 0.97;
}

.challenge__copy > p {
    color: var(--ink-soft);
    font-size: 1.04rem;
}

.mini-metrics {
    display: flex;
    gap: 10px;
    margin-top: 27px;
    flex-wrap: wrap;
}

.metric-pill {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 850;
}

.metric-pill strong {
    color: var(--ink);
}

.question-card {
    position: relative;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.question-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.question-card__top span:first-child {
    color: var(--orange-deep);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.question-card__progress {
    width: 120px;
    height: 7px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: #eee8e1;
    color: var(--orange);
    appearance: none;
    -webkit-appearance: none;
}

.question-card__progress::-webkit-progress-bar {
    border-radius: inherit;
    background: #eee8e1;
}

.question-card__progress::-webkit-progress-value {
    border-radius: inherit;
    background: var(--orange);
}

.question-card__progress::-moz-progress-bar {
    border-radius: inherit;
    background: var(--orange);
}

.question-card h3 {
    margin-bottom: 20px;
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.answers {
    display: grid;
    gap: 9px;
}

.answer {
    width: 100%;
    display: grid;
    grid-template-columns: 32px 1fr 24px;
    align-items: center;
    gap: 11px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    cursor: pointer;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 750;
    text-align: left;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.answer:hover:not(:disabled) {
    border-color: #f4ae74;
    background: #fffaf5;
    transform: translateX(3px);
}

.answer:disabled {
    cursor: default;
}

.answer__letter {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #f4f0eb;
    color: #7a726b;
    font-weight: 900;
}

.answer__state {
    display: grid;
    place-items: center;
}

.answer__state svg {
    width: 18px;
    height: 18px;
    opacity: 0;
}

.answer.is-correct {
    border-color: #77c49a;
    background: #eef9f3;
    color: #26784e;
}

.answer.is-correct .answer__letter {
    background: var(--success);
    color: #fff;
}

.answer.is-correct .answer-icon-check {
    opacity: 1;
}

.answer.is-wrong {
    border-color: #e3a0a0;
    background: #fff3f3;
    color: #a63f3e;
}

.answer.is-wrong .answer__letter {
    background: var(--danger);
    color: #fff;
}

.answer.is-wrong .answer-icon-x {
    opacity: 1;
}

.question-feedback {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    padding: 13px 15px;
    border-radius: 15px;
    font-size: 0.76rem;
    font-weight: 800;
}

.question-feedback.is-visible {
    display: flex;
}

.question-feedback.is-correct {
    background: #eaf8f0;
    color: #26784e;
}

.question-feedback.is-wrong {
    background: #fff0f0;
    color: #a63f3e;
}

.question-feedback strong {
    font-weight: 900;
}

.question-feedback span:last-child {
    flex: 0 0 auto;
    padding: 5px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.65);
}

.rhythms {
    background: #fff;
}

.rhythm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.rhythm-card {
    min-height: 260px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--cream);
}

.rhythm-card__tag {
    width: fit-content;
    margin-bottom: 50px;
    padding: 6px 9px;
    border-radius: 9px;
    background: var(--orange-soft);
    color: var(--orange-deep);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rhythm-card:nth-child(2) .rhythm-card__tag {
    background: var(--aqua-soft);
    color: #14847c;
}

.rhythm-card:nth-child(3) .rhythm-card__tag {
    background: var(--violet-soft);
    color: var(--violet);
}

.rhythm-card h3 {
    margin-bottom: 10px;
    font-size: 1.55rem;
    line-height: 1.1;
}

.rhythm-card p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

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

.faq__grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
    gap: 70px;
}

.faq__intro {
    position: sticky;
    top: 120px;
}

.faq__intro h2 {
    margin-bottom: 16px;
    font-size: clamp(2.4rem, 4.4vw, 4.3rem);
    line-height: 0.97;
}

.faq__intro p {
    color: var(--ink-soft);
}

.faq__list {
    display: grid;
    gap: 10px;
}

.faq details {
    border: 1px solid var(--line);
    border-radius: 19px;
    background: #fff;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq details[open] {
    border-color: #f0c7a6;
    box-shadow: var(--shadow-sm);
}

.faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 21px;
    cursor: pointer;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq__plus {
    position: relative;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 10px;
    background: var(--orange-soft);
}

.faq__plus::before,
.faq__plus::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 99px;
    background: var(--orange-deep);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.faq__plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] .faq__plus::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq__answer {
    padding: 0 21px 21px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.faq__answer p {
    margin: 0;
}

.final-cta {
    padding: 44px 0 110px;
    background: var(--cream);
}

.final-cta__card {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 70px 30px;
    border-radius: var(--radius-xl);
    background: var(--orange);
    color: #fff;
    text-align: center;
    box-shadow: 0 18px 0 #db5b0b, 0 40px 80px rgba(217, 85, 8, 0.22);
}

.final-cta__card::before,
.final-cta__card::after {
    position: absolute;
    border: 50px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.final-cta__card::before {
    top: -145px;
    left: -100px;
    width: 300px;
    height: 300px;
}

.final-cta__card::after {
    right: -120px;
    bottom: -175px;
    width: 360px;
    height: 360px;
}

.final-cta__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.final-cta__label {
    width: fit-content;
    margin: 0 auto 22px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.final-cta h2 {
    margin-bottom: 18px;
    font-size: clamp(2.7rem, 5.8vw, 5.5rem);
    line-height: 0.91;
}

.final-cta p {
    max-width: 590px;
    margin: 0 auto 29px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
}

.final-cta .button {
    min-height: 58px;
    padding-inline: 27px;
    background: #fff;
    color: var(--orange-deep);
    box-shadow: 0 6px 0 #f3d8c2;
}

.final-cta .button:hover {
    box-shadow: 0 8px 0 #f3d8c2;
}

.final-cta .button:active {
    box-shadow: 0 2px 0 #f3d8c2;
}

.site-footer {
    padding: 70px 0 30px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 0.75fr);
    gap: 50px;
    padding-bottom: 48px;
}

.footer__brand p {
    max-width: 290px;
    margin: 17px 0 0;
    color: var(--ink-soft);
    font-size: 0.86rem;
}

.footer__column h3 {
    margin-bottom: 16px;
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer__column nav {
    display: grid;
    gap: 9px;
}

.footer__column a {
    width: fit-content;
    color: var(--ink-soft);
    font-size: 0.85rem;
    font-weight: 700;
}

.footer__column a:hover {
    color: var(--orange-deep);
}

.footer__social {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 40px !important;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--cream);
}

.social-link:hover {
    border-color: #f2bf96;
    background: var(--orange-soft);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: #91887f;
    font-size: 0.75rem;
    font-weight: 700;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms cubic-bezier(0.16, 1, 0.3, 1), transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
    transition-delay: 90ms;
}

.reveal-delay-2 {
    transition-delay: 180ms;
}

.reveal-delay-3 {
    transition-delay: 270ms;
}

:focus-visible {
    outline: 3px solid rgba(38, 185, 174, 0.7);
    outline-offset: 4px;
}

@keyframes float-one {
    0%,
    100% {
        transform: translateY(0) rotate(1deg);
    }
    50% {
        transform: translateY(-12px) rotate(-1deg);
    }
}

@keyframes float-two {
    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(10px) rotate(1deg);
    }
}

@keyframes typing {
    0%,
    60%,
    100% {
        opacity: 0.35;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

@media (max-width: 1040px) {
    .nav {
        grid-template-columns: 1fr auto;
    }

    .nav__links {
        display: none;
    }

    .hero {
        padding-top: 64px;
    }

    .hero__grid {
        grid-template-columns: 1fr 0.92fr;
        gap: 35px;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 7vw, 5.4rem);
    }

    .float-chip--streak {
        right: -5px;
    }

    .method__intro,
    .product__grid,
    .tutor__grid,
    .challenge__grid,
    .faq__grid {
        gap: 45px;
    }

    .feature-card--adaptive .feature-card__visual {
        width: 205px;
    }
}

@media (max-width: 820px) {
    .shell {
        width: min(100% - 28px, 680px);
    }

    .section {
        padding: 82px 0;
    }

    .announcement__inner {
        min-height: 42px;
    }

    .nav {
        min-height: 70px;
    }

    .brand img {
        height: 36px;
    }

    .nav__actions .button--text,
    .nav__actions .button--primary {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .mobile-panel {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 69;
        height: calc(100vh - 70px);
        display: grid;
        align-content: start;
        gap: 10px;
        padding: 25px 20px 40px;
        background: rgba(255, 250, 243, 0.98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .mobile-panel.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-panel a:not(.button) {
        padding: 15px 4px;
        border-bottom: 1px solid var(--line);
        font-family: var(--display);
        font-size: 1.35rem;
        font-weight: 800;
    }

    .mobile-panel .button {
        margin-top: 8px;
    }

    .hero {
        min-height: 0;
        padding: 62px 0 78px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .hero__copy {
        max-width: 660px;
    }

    .hero h1 {
        max-width: 650px;
        font-size: clamp(3.3rem, 12vw, 5.8rem);
    }

    .hero-demo {
        min-height: 580px;
    }

    .proof-strip__inner {
        min-height: 0;
        grid-template-columns: 1fr;
        padding-block: 12px;
    }

    .proof-item {
        min-height: 58px;
        justify-content: flex-start;
        padding-inline: 10px;
    }

    .proof-item + .proof-item {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .method__intro,
    .product__grid,
    .tutor__grid,
    .challenge__grid,
    .faq__grid {
        grid-template-columns: 1fr;
    }

    .method-grid,
    .rhythm-grid {
        grid-template-columns: 1fr;
    }

    .method-card {
        min-height: 255px;
    }

    .method-card__number {
        margin-bottom: 40px;
    }

    .product__copy {
        max-width: 630px;
    }

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

    .feature-card--wide,
    .feature-card--narrow,
    .feature-card--half {
        grid-column: auto;
    }

    .faq__intro {
        position: static;
    }

    .footer__top {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 68px 0;
    }

    .announcement__inner {
        padding-block: 8px;
        font-size: 0.68rem;
        line-height: 1.3;
    }

    .announcement__inner span:nth-of-type(2) {
        display: none;
    }

    .site-header {
        top: 0;
    }

    .hero {
        padding-top: 46px;
    }

    .hero__badge {
        margin-bottom: 19px;
        font-size: 0.7rem;
    }

    .hero h1 {
        font-size: clamp(3.05rem, 15vw, 4.5rem);
    }

    .hero__lead {
        font-size: 1rem;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero-demo {
        min-height: 510px;
        margin-inline: -8px;
    }

    .hero-demo::before {
        width: 420px;
        height: 420px;
    }

    .hero-demo::after {
        width: 320px;
        height: 320px;
    }

    .planner {
        width: calc(100% - 22px);
        border-radius: 28px;
        transform: rotate(-0.6deg);
    }

    .planner__top,
    .planner__body {
        padding: 18px;
    }

    .focus-card {
        padding: 18px;
    }

    .focus-card h3 {
        font-size: 1.35rem;
    }

    .planner-step {
        grid-template-columns: 39px 1fr auto;
        gap: 9px;
        padding: 9px;
    }

    .planner-step__icon {
        width: 39px;
        height: 39px;
    }

    .float-chip {
        padding: 8px 10px 8px 8px;
    }

    .float-chip__icon {
        width: 31px;
        height: 31px;
    }

    .float-chip--streak {
        top: 12px;
        right: 0;
    }

    .float-chip--ai {
        bottom: 12px;
        left: 0;
    }

    .method__statement,
    .method-card,
    .feature-card,
    .question-card,
    .map {
        padding: 22px;
    }

    .method-card {
        border-radius: 25px;
    }

    .feature-card {
        min-height: 340px;
    }

    .feature-card--adaptive,
    .feature-card--essay {
        min-height: 390px;
    }

    .feature-card--adaptive .feature-card__visual {
        top: 25px;
        right: -65px;
        width: 210px;
    }

    .feature-card--essay .feature-card__visual {
        top: 24px;
        right: 18px;
        width: 128px;
    }

    .feature-card h3 {
        font-size: 1.65rem;
    }

    .chat__body {
        padding: 17px;
    }

    .message {
        max-width: 92%;
    }

    .question-card__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .question-card__progress {
        width: 100%;
    }

    .answer {
        grid-template-columns: 30px 1fr 20px;
        padding: 10px;
    }

    .question-feedback {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-cta {
        padding-bottom: 85px;
    }

    .final-cta__card {
        min-height: 430px;
        padding: 62px 20px;
        border-radius: 32px;
        box-shadow: 0 12px 0 #db5b0b, 0 32px 64px rgba(217, 85, 8, 0.2);
    }

    .final-cta h2 {
        font-size: clamp(2.8rem, 14vw, 4.2rem);
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .footer__column:last-child {
        grid-column: 1 / -1;
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Landing V3 — trilha editorial TigerGo */

.landing-v3 {
    background: var(--cream);
}

.hero-v3 {
    --pointer-x: 0px;
    --pointer-y: 0px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 76% 42%, rgba(255, 159, 77, 0.2), transparent 30%),
        linear-gradient(180deg, #fffaf3 0%, #fff8ee 100%);
}

.hero-v3::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(84, 60, 39, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(84, 60, 39, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 82%);
}

.hero-v3::after {
    position: absolute;
    right: -8vw;
    bottom: 46px;
    z-index: -1;
    width: 52vw;
    height: 52vw;
    border: 2px solid rgba(255, 122, 26, 0.16);
    border-radius: 50%;
    content: "";
}

.hero-v3__wordmark {
    position: absolute;
    top: 8%;
    right: -2vw;
    z-index: -1;
    color: rgba(33, 29, 25, 0.035);
    font-family: var(--display);
    font-size: clamp(7rem, 17vw, 17rem);
    font-weight: 900;
    letter-spacing: -0.09em;
    line-height: 0.8;
    pointer-events: none;
    user-select: none;
}

.hero-v3__grid {
    min-height: 690px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
    align-items: center;
    gap: 28px;
}

.hero-v3__copy {
    position: relative;
    z-index: 4;
    padding: 82px 0 70px;
}

.hero-v3__badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
    padding: 7px 12px 7px 8px;
    border: 1px solid #f2c6a3;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #a74608;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-v3__badge > span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
}

.hero-v3__badge svg {
    width: 14px;
    height: 14px;
}

.hero-v3 h1 {
    max-width: 700px;
    margin-bottom: 25px;
    font-size: clamp(4.3rem, 7vw, 7.4rem);
    font-weight: 800;
    letter-spacing: -0.075em;
    line-height: 0.84;
}

.hero-v3 h1 span {
    display: block;
    color: var(--orange);
}

.hero-v3__lead {
    max-width: 610px;
    margin-bottom: 29px;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    line-height: 1.65;
}

.hero-v3__actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.hero-v3__actions .button {
    min-height: 58px;
    padding-inline: 25px;
}

.hero-v3__link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 900;
}

.hero-v3__link span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    transition: transform 180ms ease, background 180ms ease;
}

.hero-v3__link:hover span {
    background: #fff;
    transform: translateY(3px);
}

.hero-v3__trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    color: #7c736b;
    flex-wrap: wrap;
    font-size: 0.72rem;
    font-weight: 800;
    list-style: none;
    padding: 0;
}

.hero-v3__trust li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hero-v3__trust svg {
    width: 14px;
    height: 14px;
    color: var(--success);
}

.hero-v3__visual {
    position: relative;
    min-height: 680px;
    align-self: end;
}

.hero-v3__halo {
    position: absolute;
    top: 14%;
    right: -4%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 40px 90px rgba(217, 85, 8, 0.25);
    transform: translate(var(--pointer-x), var(--pointer-y));
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-v3__halo::before {
    position: absolute;
    inset: 14px;
    border: 2px solid rgba(255, 255, 255, 0.24);
    border-radius: inherit;
    content: "";
}

.hero-v3__orbit {
    position: absolute;
    border: 1px dashed rgba(217, 85, 8, 0.38);
    border-radius: 50%;
    pointer-events: none;
}

.hero-v3__orbit::before {
    position: absolute;
    width: 11px;
    height: 11px;
    border: 3px solid var(--cream);
    border-radius: 50%;
    background: var(--orange);
    content: "";
}

.hero-v3__orbit--one {
    top: 8%;
    right: -10%;
    width: 620px;
    height: 620px;
    animation: orbit-spin 24s linear infinite;
}

.hero-v3__orbit--one::before {
    top: 28%;
    left: 2.5%;
}

.hero-v3__orbit--two {
    top: 21%;
    right: 3%;
    width: 420px;
    height: 420px;
    animation: orbit-spin 18s linear infinite reverse;
}

.hero-v3__orbit--two::before {
    right: 5%;
    bottom: 20%;
}

.hero-v3__mascot {
    position: absolute;
    right: -1%;
    bottom: -4px;
    z-index: 2;
    width: min(92%, 565px);
    height: auto;
    filter: drop-shadow(0 32px 34px rgba(61, 37, 18, 0.24));
    transform: translate(calc(var(--pointer-x) * -0.45), calc(var(--pointer-y) * -0.45));
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-v3__mission,
.hero-v3__signal {
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(56, 35, 17, 0.15);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.hero-v3__mission {
    position: absolute;
    bottom: 9%;
    left: -6%;
    width: min(310px, 55%);
    padding: 18px;
    border-radius: 22px;
    transform: rotate(-2deg) translate(calc(var(--pointer-x) * 0.3), calc(var(--pointer-y) * 0.3));
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-v3__mission-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--orange-deep);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-v3__mission strong,
.hero-v3__mission small {
    display: block;
}

.hero-v3__mission strong {
    margin-bottom: 3px;
    font-family: var(--display);
    font-size: 1.12rem;
    letter-spacing: -0.03em;
}

.hero-v3__mission small {
    color: var(--ink-soft);
    font-size: 0.68rem;
    font-weight: 700;
}

.hero-v3__progress {
    height: 7px;
    overflow: hidden;
    margin-top: 14px;
    border-radius: 999px;
    background: #eee6de;
}

.hero-v3__progress span {
    width: 68%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: var(--orange);
}

.hero-v3__signal {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px 10px 10px;
    border-radius: 17px;
}

.hero-v3__signal > span {
    width: 36px;
    height: 36px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
}

.hero-v3__signal svg {
    width: 18px;
    height: 18px;
}

.hero-v3__signal strong,
.hero-v3__signal small {
    display: block;
    white-space: nowrap;
}

.hero-v3__signal strong {
    font-size: 0.73rem;
}

.hero-v3__signal small {
    color: var(--ink-soft);
    font-size: 0.59rem;
    font-weight: 700;
}

.hero-v3__signal--focus {
    top: 19%;
    left: -2%;
    transform: rotate(2deg) translate(calc(var(--pointer-x) * 0.55), calc(var(--pointer-y) * 0.55));
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-v3__signal--focus > span {
    background: var(--aqua-soft);
    color: #14847c;
}

.hero-v3__signal--streak {
    top: 9%;
    right: -1%;
    transform: rotate(-2deg) translate(calc(var(--pointer-x) * -0.25), calc(var(--pointer-y) * -0.25));
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-v3__signal--streak > span {
    background: var(--orange-soft);
    color: var(--orange);
}

.hero-v3__route {
    position: relative;
    z-index: 4;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(216, 206, 194, 0.82);
    color: #756b62;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    list-style: none;
    margin-block: 0;
    padding: 0;
}

.hero-v3__route li {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.hero-v3__route li:not(:last-child)::after {
    position: relative;
    height: 1px;
    flex: 1;
    background: var(--line-strong);
    content: "";
}

.hero-v3__route li:not(:last-child)::before {
    position: absolute;
    top: calc(50% - 3px);
    right: -1px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #a99e93;
    border-right: 1px solid #a99e93;
    content: none;
}

.manifesto {
    padding: 135px 0;
    background: #fff;
}

.manifesto__grid {
    display: grid;
    grid-template-columns: 0.64fr 1.36fr;
    align-items: start;
    gap: 72px;
}

.manifesto__aside {
    padding-top: 13px;
}

.manifesto__index,
.tool-system__index {
    display: block;
    margin-bottom: 31px;
    color: var(--orange-deep);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.manifesto__aside p {
    max-width: 270px;
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.manifesto__statement > p {
    max-width: 740px;
    margin-bottom: 29px;
    color: var(--ink-soft);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.manifesto__statement h2 {
    margin: 0;
    font-size: clamp(3.4rem, 6.4vw, 6.8rem);
    letter-spacing: -0.065em;
    line-height: 0.9;
}

.manifesto__statement h2 span {
    color: var(--orange);
}

.journey-lab {
    padding: 128px 0 136px;
    background: #191713;
    color: #fff;
}

.journey-lab__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: 90px;
    margin-bottom: 55px;
}

.journey-lab .eyebrow {
    color: #ff9d52;
}

.journey-lab__heading h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(3rem, 5.6vw, 5.8rem);
    letter-spacing: -0.06em;
    line-height: 0.92;
}

.journey-lab__heading > p {
    margin: 0;
    color: #bdb4aa;
    font-size: 1rem;
}

.journey-lab__experience {
    display: grid;
    grid-template-columns: 335px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 34px;
    background: #211e1a;
    box-shadow: 0 45px 110px rgba(0, 0, 0, 0.32);
}

.journey-tabs {
    display: flex;
    flex-direction: column;
    padding: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.journey-tab {
    width: 100%;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    border: 0;
    border-radius: 18px;
    background: transparent;
    cursor: pointer;
    color: #c4bbb2;
    text-align: left;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.journey-tab:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.journey-tab.is-active {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 7px 0 #ad4408;
    transform: translateY(-3px);
}

.journey-tab__number {
    color: currentColor;
    font-family: var(--display);
    font-size: 0.68rem;
    font-weight: 900;
    opacity: 0.7;
}

.journey-tab strong,
.journey-tab small {
    display: block;
}

.journey-tab strong {
    font-family: var(--display);
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.journey-tab small {
    margin-top: 2px;
    font-size: 0.64rem;
    font-weight: 700;
    opacity: 0.72;
}

.journey-tab__arrow {
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-7px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.journey-tab.is-active .journey-tab__arrow {
    opacity: 1;
    transform: translateX(0);
}

.journey-tabs__link {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding: 21px 15px 10px;
    color: #d5ccc3;
    font-size: 0.73rem;
    font-weight: 850;
}

.journey-tabs__link:hover {
    color: #fff;
}

.journey-screen {
    min-height: 625px;
    overflow: hidden;
    background: #f7f3ed;
    color: var(--ink);
}

.journey-screen__bar {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 18px;
    border-bottom: 1px solid #e4ddd4;
    background: #fff;
}

.journey-screen__bar > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d7d0c7;
}

.journey-screen__bar > span:first-child {
    background: var(--orange);
}

.journey-screen__bar small {
    margin-left: auto;
    color: #8c837b;
    font-size: 0.62rem;
    font-weight: 800;
}

.journey-panel {
    min-height: 577px;
    display: grid;
    grid-template-columns: minmax(250px, 0.78fr) minmax(340px, 1.22fr);
    align-items: center;
    gap: 45px;
    padding: 52px;
}

.journey-panel[hidden] {
    display: none;
}

.journey-panel.is-entering {
    animation: journey-panel-in 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-panel__intro > span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--orange-deep);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.journey-panel__intro h3 {
    margin: 0;
    font-size: clamp(2.15rem, 4vw, 3.9rem);
    letter-spacing: -0.055em;
    line-height: 0.96;
}

.diagnostic-visual,
.training-visual,
.feedback-visual,
.review-visual {
    border: 1px solid #ded6cc;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(52, 38, 25, 0.1);
}

.diagnostic-visual {
    padding: 25px;
}

.diagnostic-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.diagnostic-score strong {
    font-family: var(--display);
    font-size: 1.1rem;
}

.diagnostic-score span {
    padding: 5px 8px;
    border-radius: 8px;
    background: var(--orange-soft);
    color: var(--orange-deep);
    font-size: 0.61rem;
    font-weight: 900;
}

.diagnostic-row {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) 40px;
    align-items: center;
    gap: 11px;
    padding: 10px 0;
    color: #756d65;
    font-size: 0.68rem;
    font-weight: 800;
}

.diagnostic-row > div {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #eee9e3;
}

.diagnostic-row i {
    width: var(--score);
    height: 100%;
    display: block;
    border-radius: inherit;
    background: #b7aea4;
}

.diagnostic-row--58 {
    --score: 58%;
}

.diagnostic-row--76 {
    --score: 76%;
}

.diagnostic-row--69 {
    --score: 69%;
}

.diagnostic-row--44 {
    --score: 44%;
}

.diagnostic-row strong {
    justify-self: end;
    color: var(--ink);
    font-size: 0.66rem;
}

.diagnostic-row.is-focus {
    color: var(--orange-deep);
}

.diagnostic-row.is-focus i {
    background: var(--orange);
}

.diagnostic-row.is-focus strong {
    color: var(--orange-deep);
}

.training-visual {
    padding: 25px;
}

.training-visual__top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #786f67;
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.training-visual__progress {
    height: 7px;
    overflow: hidden;
    margin: 12px 0 26px;
    border-radius: 999px;
    background: #eee9e3;
}

.training-visual__progress span {
    width: 40%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: var(--orange);
}

.training-visual > p {
    margin-bottom: 19px;
    font-family: var(--display);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.35;
}

.training-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.training-options span {
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 800;
    text-align: center;
}

.training-options .is-picked {
    border-color: #6bc290;
    background: #edf9f2;
    color: #26784e;
    box-shadow: inset 0 -3px 0 #b9e4ca;
}

.feedback-visual {
    overflow: hidden;
}

.feedback-visual__answer {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 25px;
    border-bottom: 1px solid #cdebd9;
    background: #edf9f2;
    color: #26784e;
}

.feedback-visual__answer > span {
    width: 36px;
    height: 36px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    background: var(--success);
    color: #fff;
}

.feedback-visual__answer svg {
    width: 19px;
    height: 19px;
}

.feedback-visual__answer strong,
.feedback-visual__answer small {
    display: block;
}

.feedback-visual__answer strong {
    margin-bottom: 4px;
    font-family: var(--display);
    font-size: 1rem;
}

.feedback-visual__answer small {
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.5;
}

.feedback-visual__tigo {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px;
}

.feedback-visual__tigo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.feedback-visual__tigo p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.75rem;
}

.feedback-visual__tigo strong {
    display: block;
    color: var(--ink);
}

.review-visual {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    gap: 24px;
    padding: 25px;
}

.review-visual__ring {
    position: relative;
    width: 138px;
    height: 138px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(var(--orange) 0 64%, #eee7df 64% 100%);
}

.review-visual__ring::before {
    position: absolute;
    inset: 12px;
    border-radius: inherit;
    background: #fff;
    content: "";
}

.review-visual__ring > span {
    position: relative;
    text-align: center;
}

.review-visual__ring strong,
.review-visual__ring small {
    display: block;
}

.review-visual__ring strong {
    font-family: var(--display);
    font-size: 2.2rem;
    line-height: 1;
}

.review-visual__ring small {
    color: var(--ink-soft);
    font-size: 0.58rem;
    font-weight: 800;
}

.review-visual__list {
    display: grid;
    gap: 8px;
}

.review-visual__list > div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
    background: #f8f5f1;
}

.review-visual__list > div > span {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #bbb1a7;
}

.review-visual__list > div > span.is-now {
    background: var(--orange);
    box-shadow: 0 0 0 4px var(--orange-soft);
}

.review-visual__list p,
.review-visual__list strong,
.review-visual__list small {
    display: block;
    margin: 0;
}

.review-visual__list strong {
    font-size: 0.69rem;
}

.review-visual__list small {
    color: var(--ink-soft);
    font-size: 0.58rem;
    font-weight: 700;
}

.tool-system {
    padding: 135px 0 145px;
    background: #fffaf3;
}

.tool-system__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 63px;
}

.tool-system__heading .tool-system__index {
    grid-column: 1 / -1;
    margin-bottom: -35px;
}

.tool-system__heading h2 {
    margin: 0;
    font-size: clamp(3.4rem, 6.2vw, 6.6rem);
    letter-spacing: -0.065em;
    line-height: 0.88;
}

.tool-system__heading h2 span {
    color: var(--orange);
}

.tool-system__heading > p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1rem;
}

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

.tool-row {
    display: grid;
    grid-template-columns: 44px 54px minmax(0, 1fr) auto 42px;
    align-items: center;
    gap: 20px;
    margin-inline: -18px;
    padding: 28px 18px;
    border-bottom: 1px solid var(--line-strong);
    border-radius: 22px;
    transition: color 220ms ease, background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.tool-row:hover,
.tool-row:focus-visible {
    z-index: 2;
    border-color: transparent;
    background: var(--orange);
    color: #fff;
    outline-color: #191713;
    transform: scale(1.012);
}

.tool-row__number {
    color: #978e85;
    font-family: var(--display);
    font-size: 0.68rem;
    font-weight: 900;
}

.tool-row__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    color: var(--orange-deep);
}

.tool-row__icon svg {
    width: 22px;
    height: 22px;
}

.tool-row__copy {
    display: grid;
    grid-template-columns: minmax(190px, 0.72fr) minmax(280px, 1.28fr);
    align-items: center;
    gap: 34px;
}

.tool-row__copy strong,
.tool-row__copy small {
    display: block;
}

.tool-row__copy strong {
    font-family: var(--display);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    letter-spacing: -0.035em;
}

.tool-row__copy small {
    max-width: 480px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.55;
    transition: color 220ms ease;
}

.tool-row__tag {
    padding: 7px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.63rem;
    font-weight: 900;
    white-space: nowrap;
    transition: color 220ms ease, border-color 220ms ease;
}

.tool-row__arrow {
    font-size: 1.5rem;
    transition: transform 220ms ease;
}

.tool-row:hover .tool-row__number,
.tool-row:focus-visible .tool-row__number,
.tool-row:hover .tool-row__copy small,
.tool-row:focus-visible .tool-row__copy small,
.tool-row:hover .tool-row__tag,
.tool-row:focus-visible .tool-row__tag {
    color: rgba(255, 255, 255, 0.82);
}

.tool-row:hover .tool-row__tag,
.tool-row:focus-visible .tool-row__tag {
    border-color: rgba(255, 255, 255, 0.4);
}

.tool-row:hover .tool-row__arrow,
.tool-row:focus-visible .tool-row__arrow {
    transform: translate(3px, -3px);
}

.tigo-tools {
    padding: 0 0 135px;
    background: #fffaf3;
}

.tigo-tools__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: 65px;
    overflow: hidden;
    padding: 74px;
    border-radius: 44px;
    background: var(--orange);
    color: #fff;
    box-shadow: 0 16px 0 #cf5008, 0 44px 90px rgba(207, 80, 8, 0.22);
}

.tigo-tools__card::before {
    position: absolute;
    top: -220px;
    left: -170px;
    width: 500px;
    height: 500px;
    border: 70px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
}

.tigo-tools__copy {
    position: relative;
    z-index: 1;
}

.tigo-tools__label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 23px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tigo-tools__label svg {
    width: 14px;
    height: 14px;
}

.tigo-tools h2 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 5.2vw, 5.5rem);
    letter-spacing: -0.065em;
    line-height: 0.9;
}

.tigo-tools h2 span {
    color: #4b1b00;
}

.tigo-tools__copy > p {
    max-width: 570px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
}

.tigo-tools__actions {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 27px;
    flex-wrap: wrap;
}

.tigo-tools__actions .button {
    background: #fff;
    color: var(--orange-deep);
    box-shadow: 0 6px 0 #e4b590;
}

.tigo-tools__actions > span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.68rem;
    font-weight: 850;
}

.tigo-console {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    background: #1d1a17;
    color: #fff;
    box-shadow: 0 32px 65px rgba(85, 29, 0, 0.26);
    transform: rotate(1.5deg);
}

.tigo-console__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 19px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #24201c;
}

.tigo-console__top > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tigo-console__top img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.tigo-console__top strong,
.tigo-console__top small {
    display: block;
}

.tigo-console__top strong {
    font-size: 0.78rem;
}

.tigo-console__top small {
    color: #9e958d;
    font-size: 0.59rem;
    font-weight: 700;
}

.tigo-console__online {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #78d7a3;
    font-size: 0.59rem;
    font-weight: 900;
    text-transform: uppercase;
}

.tigo-console__online::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.tigo-console__body {
    display: grid;
    gap: 12px;
    padding: 21px;
}

.tigo-console__user {
    justify-self: end;
    max-width: 82%;
    padding: 11px 13px;
    border-radius: 17px 17px 5px 17px;
    background: #37312c;
}

.tigo-console__photo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    padding: 5px 7px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: #d9d1c9;
    font-size: 0.57rem;
    font-weight: 800;
}

.tigo-console__photo svg {
    width: 13px;
    height: 13px;
}

.tigo-console__user p {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 750;
}

.tigo-console__thinking {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #aaa098;
}

.tigo-console__thinking > span {
    width: 14px;
    height: 14px;
    border: 2px solid #5c544d;
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: console-spin 900ms linear infinite;
}

.tigo-console__thinking p {
    margin: 0;
    font-size: 0.61rem;
    font-weight: 750;
}

.tigo-console__tool {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #5f4b3d;
    border-radius: 15px;
    background: #2b241f;
}

.tigo-console__tool > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--orange);
}

.tigo-console__tool svg {
    width: 18px;
    height: 18px;
}

.tigo-console__tool small,
.tigo-console__tool strong {
    display: block;
}

.tigo-console__tool small {
    color: #a89f97;
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tigo-console__tool strong {
    font-size: 0.73rem;
}

.tigo-console__tool i {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #275a3c;
    color: #8ce0b0;
}

.tigo-console__reply {
    max-width: 86%;
    padding: 12px 14px;
    border-radius: 5px 17px 17px 17px;
    background: #fff5eb;
    color: var(--ink);
}

.tigo-console__reply strong,
.tigo-console__reply span {
    display: block;
}

.tigo-console__reply strong {
    margin-bottom: 6px;
    font-size: 0.72rem;
}

.tigo-console__reply span {
    color: var(--orange-deep);
    font-size: 0.61rem;
    font-weight: 900;
}

.live-challenge {
    padding: 135px 0;
    background: #fff;
}

.live-challenge__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1.28fr);
    align-items: center;
    gap: 82px;
}

.live-challenge__copy h2 {
    margin-bottom: 22px;
    font-size: clamp(3.2rem, 5.6vw, 5.9rem);
    letter-spacing: -0.065em;
    line-height: 0.88;
}

.live-challenge__copy h2 span {
    color: var(--orange);
}

.live-challenge__copy > p {
    max-width: 430px;
    color: var(--ink-soft);
}

.live-challenge__tigo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 30px;
}

.live-challenge__tigo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.live-challenge__tigo p {
    max-width: 220px;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 5px 14px 14px 14px;
    background: var(--cream);
    color: var(--ink-soft);
    font-size: 0.67rem;
    font-weight: 750;
}

.live-challenge .question-card {
    border-radius: 34px;
    box-shadow: 0 22px 65px rgba(48, 32, 19, 0.12);
}

.live-challenge .question-card::before {
    position: absolute;
    top: -12px;
    right: 32px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    content: "Interativo";
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.study-rhythm {
    padding: 130px 0;
    background: #f6efe6;
}

.study-rhythm__heading {
    max-width: 980px;
    margin-bottom: 70px;
}

.study-rhythm__heading h2 {
    margin: 0;
    font-size: clamp(3.2rem, 6vw, 6.2rem);
    letter-spacing: -0.065em;
    line-height: 0.9;
}

.study-rhythm__heading h2 span {
    color: var(--orange);
}

.study-rhythm__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    padding-top: 37px;
}

.study-rhythm__line {
    position: absolute;
    top: 7px;
    right: 0;
    left: 0;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: #ded4c8;
}

.study-rhythm__line span {
    width: 68%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: var(--orange);
}

.rhythm-point {
    position: relative;
    padding-right: 30px;
}

.rhythm-point::before {
    position: absolute;
    top: -37px;
    left: 0;
    width: 17px;
    height: 17px;
    border: 4px solid #f6efe6;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 2px var(--orange);
    content: "";
}

.rhythm-point.is-last::before {
    background: #bdb1a5;
    box-shadow: 0 0 0 2px #bdb1a5;
}

.rhythm-point strong,
.rhythm-point span {
    display: block;
}

.rhythm-point strong {
    margin-bottom: 5px;
    font-family: var(--display);
    font-size: 1.55rem;
    letter-spacing: -0.035em;
}

.rhythm-point span {
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.study-rhythm__note {
    max-width: 700px;
    margin: 58px 0 0;
    padding-top: 25px;
    border-top: 1px solid #ded4c8;
    color: var(--ink-soft);
    font-size: 0.96rem;
}

.faq-v3 {
    background: #fff;
}

.faq-v3 details {
    background: var(--cream);
}

.final-cta-v3 {
    padding-top: 30px;
    background: #fff;
}

.final-cta-v3 .final-cta__card {
    min-height: 500px;
    background: #191713;
    box-shadow: 0 18px 0 #0e0d0b, 0 42px 88px rgba(25, 23, 19, 0.22);
}

.final-cta-v3 .final-cta__card::before {
    top: -170px;
    left: -130px;
    border-color: rgba(255, 122, 26, 0.2);
}

.final-cta-v3 .final-cta__card::after {
    right: -150px;
    bottom: -190px;
    border-color: rgba(255, 122, 26, 0.15);
}

.final-cta-v3 .final-cta__content {
    max-width: 840px;
}

.final-cta-v3 .final-cta__label {
    color: #ffb67d;
}

.final-cta-v3 h2 {
    font-size: clamp(3.1rem, 6.5vw, 6.3rem);
}

.final-cta-v3__tigo {
    position: absolute;
    right: -12px;
    bottom: -18px;
    z-index: 2;
    width: 175px;
    opacity: 0.96;
    transform: rotate(-8deg);
}

@keyframes orbit-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes console-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes journey-panel-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .hero-v3__grid {
        grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.04fr);
    }

    .hero-v3__visual {
        min-height: 620px;
    }

    .hero-v3__halo {
        width: 470px;
        height: 470px;
    }

    .hero-v3__orbit--one {
        width: 540px;
        height: 540px;
    }

    .hero-v3__orbit--two {
        width: 380px;
        height: 380px;
    }

    .journey-lab__experience {
        grid-template-columns: 300px minmax(0, 1fr);
    }

    .journey-panel {
        gap: 30px;
        padding: 40px;
    }

    .tool-row__copy {
        grid-template-columns: minmax(170px, 0.8fr) minmax(250px, 1.2fr);
        gap: 22px;
    }

    .tigo-tools__card {
        gap: 45px;
        padding: 60px;
    }
}

@media (max-width: 900px) {
    .hero-v3__grid {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .hero-v3__copy {
        max-width: 720px;
        padding: 70px 0 10px;
    }

    .hero-v3__visual {
        width: min(100%, 680px);
        min-height: 670px;
        justify-self: center;
    }

    .hero-v3__mission {
        left: 2%;
    }

    .hero-v3__signal--focus {
        left: 3%;
    }

    .manifesto__grid,
    .journey-lab__heading,
    .tool-system__heading,
    .tigo-tools__card,
    .live-challenge__grid {
        grid-template-columns: 1fr;
    }

    .manifesto__grid,
    .journey-lab__heading,
    .tool-system__heading,
    .live-challenge__grid {
        gap: 38px;
    }

    .manifesto__aside {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .manifesto__index {
        margin-bottom: 0;
    }

    .journey-lab__experience {
        grid-template-columns: 1fr;
    }

    .journey-tabs {
        display: flex;
        overflow-x: auto;
        flex-direction: row;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        scrollbar-width: thin;
    }

    .journey-tab {
        min-width: 220px;
    }

    .journey-tabs__link {
        min-width: 210px;
        align-items: center;
        margin: 0;
        padding: 18px 14px;
    }

    .journey-screen {
        min-height: 580px;
    }

    .journey-panel {
        min-height: 532px;
    }

    .tool-system__heading .tool-system__index {
        margin-bottom: 0;
    }

    .tool-row {
        grid-template-columns: 36px 50px minmax(0, 1fr) 34px;
    }

    .tool-row__copy {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .tool-row__tag {
        display: none;
    }

    .tigo-tools__card {
        grid-template-columns: 1fr;
    }

    .tigo-console {
        width: min(100%, 620px);
        transform: none;
    }

    .live-challenge__copy > p {
        max-width: 620px;
    }
}

@media (max-width: 620px) {
    .hero-v3__grid {
        gap: 0;
    }

    .hero-v3__copy {
        padding-top: 52px;
    }

    .hero-v3 h1 {
        font-size: clamp(3.55rem, 16vw, 5rem);
        line-height: 0.88;
    }

    .hero-v3__lead {
        font-size: 0.98rem;
    }

    .hero-v3__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-v3__actions .button {
        width: 100%;
    }

    .hero-v3__link {
        justify-content: center;
    }

    .hero-v3__trust {
        gap: 11px;
    }

    .hero-v3__visual {
        min-height: 510px;
        margin-inline: -8px;
    }

    .hero-v3__halo {
        top: 14%;
        right: -8%;
        width: 380px;
        height: 380px;
    }

    .hero-v3__orbit--one {
        top: 7%;
        right: -23%;
        width: 450px;
        height: 450px;
    }

    .hero-v3__orbit--two {
        top: 20%;
        right: -5%;
        width: 310px;
        height: 310px;
    }

    .hero-v3__mascot {
        right: -2%;
        width: min(95%, 410px);
    }

    .hero-v3__mission {
        bottom: 6%;
        left: 0;
        width: 60%;
        padding: 13px;
        border-radius: 17px;
    }

    .hero-v3__mission strong {
        font-size: 0.92rem;
    }

    .hero-v3__signal--focus {
        top: 13%;
        left: 0;
    }

    .hero-v3__signal--streak {
        display: none;
    }

    .hero-v3__route {
        min-height: 64px;
        overflow-x: auto;
        justify-content: flex-start;
        white-space: nowrap;
    }

    .hero-v3__route li {
        min-width: 168px;
        flex: 0 0 auto;
    }

    .hero-v3__route li:not(:last-child)::after {
        width: 42px;
        flex: 0 0 42px;
    }

    .manifesto,
    .journey-lab,
    .tool-system,
    .live-challenge,
    .study-rhythm {
        padding-block: 90px;
    }

    .manifesto__aside {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .manifesto__statement h2,
    .tool-system__heading h2,
    .study-rhythm__heading h2 {
        font-size: clamp(3.05rem, 14vw, 4.5rem);
    }

    .journey-lab__heading h2,
    .tigo-tools h2,
    .live-challenge__copy h2 {
        font-size: clamp(2.9rem, 13vw, 4.2rem);
    }

    .journey-lab__experience {
        margin-inline: -6px;
        border-radius: 25px;
    }

    .journey-tab {
        min-width: 205px;
        padding: 15px 13px;
    }

    .journey-screen {
        min-height: 0;
    }

    .journey-screen__bar small {
        display: none;
    }

    .journey-panel {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 30px 22px;
    }

    .journey-panel__intro h3 {
        font-size: 2.55rem;
    }

    .diagnostic-visual,
    .training-visual,
    .review-visual {
        padding: 18px;
        border-radius: 22px;
    }

    .review-visual {
        grid-template-columns: 1fr;
    }

    .review-visual__ring {
        justify-self: center;
    }

    .tool-row {
        grid-template-columns: 42px minmax(0, 1fr) 28px;
        gap: 14px;
        margin-inline: 0;
        padding: 22px 4px;
        border-radius: 16px;
    }

    .tool-row__number {
        display: none;
    }

    .tool-row__icon {
        width: 42px;
        height: 42px;
    }

    .tool-row__copy strong {
        font-size: 1.18rem;
    }

    .tool-row__copy small {
        font-size: 0.7rem;
    }

    .tigo-tools {
        padding-bottom: 100px;
    }

    .tigo-tools__card {
        gap: 38px;
        padding: 48px 22px;
        border-radius: 31px;
        box-shadow: 0 11px 0 #cf5008, 0 32px 68px rgba(207, 80, 8, 0.2);
    }

    .tigo-console__body {
        padding: 15px;
    }

    .tigo-console__user,
    .tigo-console__reply {
        max-width: 94%;
    }

    .live-challenge__grid {
        grid-template-columns: 1fr;
    }

    .live-challenge .question-card {
        padding: 22px;
    }

    .study-rhythm__heading {
        margin-bottom: 50px;
    }

    .study-rhythm__track {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 0;
        padding-left: 34px;
    }

    .study-rhythm__line {
        top: 0;
        right: auto;
        bottom: 0;
        left: 7px;
        width: 4px;
        height: auto;
    }

    .study-rhythm__line span {
        width: 100%;
        height: 68%;
    }

    .rhythm-point::before {
        top: 4px;
        left: -34px;
    }

    .study-rhythm__note {
        margin-top: 45px;
    }

    .final-cta-v3__tigo {
        right: -25px;
        width: 120px;
        opacity: 0.65;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-v3__orbit,
    .tigo-console__thinking > span,
    .journey-panel.is-entering {
        animation: none !important;
    }

    .hero-v3__halo,
    .hero-v3__mascot,
    .hero-v3__mission,
    .hero-v3__signal {
        transform: none !important;
    }
}
