:root {
  --ink: #17211f;
  --muted: #66736f;
  --paper: #f4f6f0;
  --white: #fbfcf8;
  --line: #d7dfd9;
  --green: #aecfb9;
  --green-deep: #2c5e4c;
  --orange: #dd7352;
  --dark: #1c2a28;
  --mono: "DM Mono", monospace;
  --sans: "Manrope", "Noto Sans SC", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.page-shell { overflow: hidden; }
.section-wrap, .topbar { width: min(1160px, calc(100% - 72px)); margin: 0 auto; }
.topbar { height: 82px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 11px; font: 500 12px var(--mono); letter-spacing: .1em; }
.brand-mark { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid var(--ink); border-radius: 50%; font-size: 17px; transform: rotate(-45deg); }
.topnav { display: flex; gap: 36px; align-self: stretch; align-items: center; margin-left: 120px; }
.topnav a { position: relative; color: #71807b; font-size: 13px; }
.topnav a.active, .topnav a:hover { color: var(--ink); }
.topnav a.active::after { position: absolute; content: ""; height: 3px; background: var(--orange); left: 0; right: 0; bottom: -31px; }
.top-cta { display: flex; align-items: center; gap: 12px; font: 500 11px var(--mono); letter-spacing: .08em; }
.top-cta span { display: grid; place-items: center; width: 27px; height: 27px; color: var(--white); background: var(--dark); border-radius: 50%; font-size: 15px; }
.hero { min-height: 530px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; position: relative; }
.hero::before { position: absolute; content: ""; width: 520px; height: 520px; border: 1px solid #e4e9e2; border-radius: 50%; right: 10%; top: -155px; z-index: -1; }
.hero-copy { padding: 80px 0 66px; }
.eyebrow { display: flex; align-items: center; gap: 10px; font: 500 10px var(--mono); letter-spacing: .12em; color: #65736d; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-deep); }
.eyebrow-dot.orange { background: var(--orange); }
.eyebrow-line { width: 38px; height: 1px; margin-left: 5px; background: #acb9b3; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 28px 0 26px; font-size: clamp(48px, 7vw, 82px); line-height: .99; letter-spacing: -.075em; font-weight: 800; }
h1 em { color: var(--green-deep); font-style: normal; }
.hero-intro { max-width: 470px; color: var(--muted); font-size: 15px; line-height: 1.9; }
.hero-actions { display: flex; gap: 30px; align-items: center; margin-top: 36px; }
.button { display: inline-flex; align-items: center; gap: 27px; padding: 14px 17px 14px 22px; border-radius: 2px; font: 500 11px var(--mono); letter-spacing: .05em; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 18px; line-height: 10px; }
.button-primary { color: var(--white); background: var(--dark); }
.text-link { color: var(--green-deep); font: 500 11px var(--mono); }
.text-link span { padding-left: 8px; font-size: 18px; }
.hero-aside { align-self: end; padding: 0 0 68px 77px; }
.aside-rule { width: 100%; max-width: 235px; border-top: 1px solid var(--ink); margin-bottom: 22px; }
.aside-label { margin-bottom: 13px; color: #75827d; font: 500 10px var(--mono); letter-spacing: .14em; }
.aside-quote { margin-bottom: 35px; color: var(--green-deep); font-size: 22px; line-height: 1.55; font-weight: 700; letter-spacing: -.04em; }
.aside-meta { display: flex; gap: 10px; align-items: center; color: #89948e; font: 10px var(--mono); }
.aside-meta strong { color: var(--ink); font-weight: 500; }.meta-separator { margin: 0 4px; color: var(--orange); }
.concept-section { padding: 84px 0 104px; border-top: 1px solid var(--line); }
.concept-board { display: grid; grid-template-columns: 1fr 44px 1fr 44px 1fr; gap: 13px; align-items: center; margin-top: 67px; }
.concept-card { min-height: 264px; padding: 20px 22px 22px; border: 1px solid var(--line); background: var(--white); position: relative; overflow: hidden; }.concept-card::after { content: ""; position: absolute; right: -27px; bottom: -37px; width: 115px; height: 115px; border: 1px solid #e1e7e1; border-radius: 50%; }.problem-card { border-top: 3px solid #b5c0ba; padding-top: 18px; }.answer-card { border-top: 3px solid var(--orange); padding-top: 18px; }.team-card { border-color: #376c57; background: var(--green-deep); color: var(--white); }
.concept-card-top { display: flex; justify-content: space-between; color: #8c9892; font: 9px var(--mono); letter-spacing: .08em; }.answer-card .concept-card-top { color: var(--orange); }.team-card .concept-card-top { color: #b5d5c1; }.concept-card-top b { font-weight: 400; }
.concept-card h3 { margin: 29px 0 11px; font-size: 21px; letter-spacing: -.06em; }.concept-card p { max-width: 235px; margin: 0; color: #74817a; font-size: 11px; line-height: 1.8; }.team-card p { color: #c2d2c8; }
.messy-files, .commit-stack, .people-orbit { display: flex; align-items: center; height: 65px; margin-top: 20px; position: relative; }.messy-files i { display: grid; place-items: center; width: 82px; height: 43px; border: 1px solid #cbd3cd; background: #f3f5f1; color: #89958e; font: 9px var(--mono); font-style: normal; }.messy-files i:nth-child(1) { transform: rotate(-8deg) translateX(14px); }.messy-files i:nth-child(2) { transform: rotate(5deg) translateX(-4px); background: #eef1ed; }.messy-files i:nth-child(3) { z-index: 1; transform: rotate(-2deg) translateX(-15px); color: var(--orange); background: #fff9f6; border-color: #e5b4a4; }
.commit-stack i { display: grid; place-items: center; width: 44px; height: 44px; margin-right: -11px; border: 1px solid #d79b87; border-radius: 50%; background: #fff5f1; color: var(--orange); font: 10px var(--mono); font-style: normal; }.commit-stack i:nth-child(2) { transform: translateY(-8px); }.commit-stack i:nth-child(3) { transform: translateY(8px); }.commit-stack i:nth-child(4) { background: var(--orange); color: var(--white); }
.people-orbit::before { content: ""; width: 148px; height: 45px; border: 1px dashed #77a58b; border-radius: 50%; position: absolute; left: 0; }.people-orbit i { display: grid; place-items: center; z-index: 1; width: 38px; height: 38px; margin-right: 11px; border: 1px solid #9ec4aa; border-radius: 50%; color: var(--dark); background: var(--green); font-size: 9px; font-style: normal; }.people-orbit i:nth-child(2) { transform: translateY(-12px); }.people-orbit i:nth-child(3) { transform: translateY(12px); background: var(--white); }
.concept-connector { display: flex; flex-direction: column; align-items: center; gap: 8px; color: #8a9790; font: 9px var(--mono); }.concept-connector i { display: block; width: 28px; height: 1px; background: #aab6ae; position: relative; }.concept-connector i::after { content: ""; position: absolute; top: -3px; right: 0; width: 6px; height: 6px; border-top: 1px solid #71817a; border-right: 1px solid #71817a; transform: rotate(45deg); }
.learning-rail { display: flex; align-items: center; gap: 17px; margin-top: 25px; padding: 15px 20px; border-left: 2px solid var(--orange); background: #eaeee8; color: #738078; font: 10px var(--mono); }.learning-rail .rail-label { margin-right: auto; color: #8b9791; }.learning-rail b { color: var(--ink); font-weight: 500; }.learning-rail i { color: var(--orange); font-style: normal; font-size: 15px; }
.model-section { padding: 94px 0 105px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; }
h2 { margin: 25px 0 0; font-size: clamp(38px, 4.4vw, 59px); line-height: 1.08; letter-spacing: -.07em; font-weight: 800; }
h2 span { color: var(--green-deep); }
.heading-note { margin: 0 15% 7px 0; color: #78837e; font-size: 13px; line-height: 1.8; }
.model-map { display: grid; grid-template-columns: repeat(3, 1fr); gap: 21px; margin-top: 79px; position: relative; }
.map-line { position: absolute; top: 50px; height: 1px; background: #aab7b0; z-index: 1; }
.map-line::after { content: ""; position: absolute; top: -3px; right: -1px; width: 7px; height: 7px; border-top: 1px solid #71817a; border-right: 1px solid #71817a; transform: rotate(45deg); }
.line-one { left: 31.7%; width: 5.3%; }.line-two { left: 65%; width: 5.3%; }
.state-card { min-height: 259px; padding: 20px 22px 18px; border: 1px solid var(--line); background: rgba(251,252,248,.55); position: relative; z-index: 2; }
.state-card:hover { border-color: #9bb5a7; background: var(--white); }
.local-card { border-top: 3px solid var(--orange); padding-top: 18px; }.remote-card { background: var(--green); border-color: var(--green); }
.state-top { display: flex; justify-content: space-between; align-items: center; }.state-index, .state-foot, .state-kicker { font-family: var(--mono); }
.state-index { color: #84918b; font-size: 10px; }.state-icon { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid #bdcbc3; color: var(--green-deep); border-radius: 50%; font-size: 15px; }
.state-kicker { margin: 29px 0 10px; color: #75837d; font-size: 10px; letter-spacing: .03em; }.state-card h3 { margin-bottom: 12px; font-size: 23px; letter-spacing: -.06em; }.state-card h3 span { color: #8a9690; font: 400 11px var(--mono); letter-spacing: 0; }.state-card p:not(.state-kicker) { max-width: 260px; min-height: 45px; color: #6c7873; font-size: 12px; line-height: 1.75; }
.state-foot { display: flex; align-items: center; gap: 12px; padding-top: 15px; border-top: 1px solid var(--line); color: #88958f; font-size: 9px; }.remote-card .state-foot { border-color: rgba(45,94,76,.25); }.state-foot code { color: var(--green-deep); font-size: 10px; }
.principle-strip { display: flex; align-items: center; gap: 17px; margin-top: 25px; padding: 15px 20px; border-left: 2px solid var(--orange); background: #eaeee8; }.principle-mark { display: grid; place-items: center; flex: 0 0 auto; width: 19px; height: 19px; border: 1px solid var(--orange); color: var(--orange); border-radius: 50%; font: 500 12px var(--mono); }.principle-strip p { margin: 0; color: #68766f; font-size: 11px; line-height: 1.7; }.principle-strip strong { color: var(--ink); }
.spaces-section { padding: 96px 0 112px; }
.space-stage { display: grid; grid-template-columns: 1fr 108px 1fr; gap: 18px; align-items: stretch; margin-top: 76px; }
.space-lane { padding: 26px 25px 20px; border: 1px solid var(--line); background: var(--white); }
.local-lane { border-top: 3px solid var(--orange); padding-top: 24px; }
.remote-lane { border-color: #376c57; background: var(--green-deep); color: var(--white); }
.lane-label { display: flex; align-items: center; gap: 8px; color: #8b9791; font: 500 9px var(--mono); letter-spacing: .08em; }
.remote-lane .lane-label { color: #b3d1bf; }.lane-dot { width: 7px; height: 7px; border-radius: 50%; }.local-dot { background: var(--orange); }.remote-dot { background: var(--green); }
.lane-header h3 { margin: 18px 0 10px; font-size: 24px; letter-spacing: -.06em; }.lane-header h3 span { color: #89968f; font: 400 10px var(--mono); letter-spacing: 0; }.remote-lane .lane-header h3 span { color: #b6d6c3; }.lane-header p { min-height: 43px; margin-bottom: 29px; color: #74807a; font-size: 11px; line-height: 1.75; }.remote-lane .lane-header p { color: #bdd0c5; }
.lane-track { display: grid; grid-template-columns: 1fr 34px 1fr 34px 1fr; gap: 7px; align-items: center; min-height: 130px; padding: 17px 10px; background: #eef2ed; border: 1px solid #e0e6e0; }.remote-lane .lane-track { background: rgba(15,39,31,.26); border-color: rgba(192,224,204,.22); }
.flow-node { min-width: 0; text-align: center; }.node-symbol { display: grid; place-items: center; width: 35px; height: 35px; margin: 0 auto 11px; border: 1px solid #b9c6be; background: var(--white); color: var(--green-deep); position: relative; }.node-highlight { color: var(--green-deep); }.node-highlight .node-symbol { border-color: #e2a390; background: #fff8f5; }.remote-node .node-symbol, .review-node .node-symbol, .main-node .node-symbol { border-color: #a8c9b5; background: #e0f1e5; }.remote-lane .main-node .node-symbol { background: var(--green); border-color: var(--green); }.flow-node strong { display: block; margin-bottom: 5px; font-size: 11px; white-space: nowrap; }.flow-node small { display: block; min-height: 25px; color: #88958e; font: 8px var(--mono); line-height: 1.45; }.remote-lane .flow-node small { color: #bdd0c5; }
.laptop-symbol { border-radius: 4px 4px 2px 2px; }.laptop-symbol::after { content: ""; position: absolute; bottom: -5px; left: -4px; width: 41px; height: 3px; background: #81948a; border-radius: 2px; }.laptop-symbol i { width: 21px; height: 12px; border: 1px solid #6d8b7b; }.index-symbol { border-radius: 50%; }.index-symbol i, .repo-symbol i { width: 5px; height: 5px; margin: 1px; background: var(--orange); border-radius: 50%; }.repo-symbol { border-radius: 50%; }.repo-symbol i { background: var(--green-deep); }.server-symbol { border-radius: 4px; }.server-symbol i { width: 21px; height: 3px; margin: 2px 0; background: #70a481; border-radius: 1px; }.review-symbol { border-radius: 50%; }.review-symbol i { width: 12px; height: 6px; margin: 2px; border-bottom: 1px solid var(--green-deep); border-left: 1px solid var(--green-deep); transform: rotate(-45deg); }.main-symbol { border-radius: 50%; }.main-symbol i { width: 13px; height: 13px; border: 2px solid var(--green-deep); border-radius: 50%; }
.flow-arrow { position: relative; align-self: center; height: 27px; color: #9aa79f; font: 8px var(--mono); text-align: center; }.flow-arrow span { position: absolute; top: -18px; left: 50%; width: 62px; transform: translateX(-50%); white-space: nowrap; }.flow-arrow i { display: block; width: 100%; height: 1px; margin-top: 10px; background: #a7b3ac; position: relative; }.flow-arrow i::after { content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid #71817a; border-right: 1px solid #71817a; transform: rotate(45deg); }.remote-arrow { color: #b6d6c3; }.remote-arrow i { background: #69917a; }.remote-arrow i::after { border-color: #b6d6c3; }
.lane-foot { display: flex; align-items: center; gap: 11px; margin-top: 18px; color: #8b9791; font: 9px var(--mono); }.lane-foot code { color: var(--orange); }.lane-foot b { margin-left: auto; color: var(--orange); font-size: 14px; font-weight: 400; }.remote-lane .lane-foot { color: #b5cfc0; }.remote-lane .lane-foot code, .remote-lane .lane-foot b { color: var(--green); }
.space-bridge { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 15px; }.bridge-action { display: grid; grid-template-columns: auto auto; justify-content: center; column-gap: 8px; width: 100%; padding: 10px 3px; border: 1px solid #d0d9d2; background: #eaeee8; color: var(--green-deep); font: 500 9px var(--mono); }.bridge-action small { grid-column: 1 / -1; margin-top: 5px; color: #8a9890; font: 8px var(--mono); }.bridge-action b { color: var(--orange); font-size: 14px; line-height: 8px; }.pull-action b { color: var(--green-deep); }.bridge-line { display: flex; flex-direction: column; align-items: center; gap: 4px; }.bridge-line i { width: 3px; height: 3px; background: #b4c0b9; border-radius: 50%; }.bridge-line i:nth-child(2) { background: var(--orange); }
.roles-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; padding-top: 19px; border-top: 1px solid var(--line); }.role-card { display: flex; gap: 14px; align-items: flex-start; }.role-icon { display: grid; place-items: center; flex: 0 0 auto; width: 27px; height: 27px; border: 1px solid #bdc9c1; color: var(--orange); font: 9px var(--mono); }.role-card strong { display: block; margin-bottom: 5px; font-size: 12px; }.role-card p { margin: 0; color: #7a8780; font-size: 10px; line-height: 1.7; }
.workflow-section { padding: 94px 0 108px; background: var(--dark); color: var(--white); }.workflow-section .eyebrow, .workflow-section .heading-note { color: #a6b5ad; }.workflow-section h2 span { color: var(--green); }.workflow-heading { margin-bottom: 72px; }
.workflow-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 85px; }.timeline { border-top: 1px solid #53655e; }.timeline-step { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; width: 100%; min-height: 64px; padding: 0 5px 0 0; border: 0; border-bottom: 1px solid #53655e; color: #9eada5; background: none; text-align: left; cursor: pointer; transition: color .2s, padding .2s; }.timeline-step:hover, .timeline-step.active { color: var(--white); padding-left: 12px; }.timeline-step.active { border-bottom-color: var(--orange); }.step-number { font: 10px var(--mono); color: #70817a; }.timeline-step.active .step-number { color: var(--orange); }.step-title { font-size: 14px; font-weight: 600; }.step-command { font: 10px var(--mono); color: #81938a; }.timeline-step.active .step-command { color: var(--green); }
.workflow-detail { min-height: 380px; padding: 6px 0 0; }.detail-top { display: flex; justify-content: space-between; align-items: center; color: var(--green); font: 10px var(--mono); letter-spacing: .07em; }.detail-status { color: #98aaa1; }.detail-status i { display: inline-block; width: 6px; height: 6px; margin-right: 7px; background: var(--green); border-radius: 50%; }.workflow-detail h3 { max-width: 490px; margin: 36px 0 15px; font-size: 29px; line-height: 1.25; letter-spacing: -.06em; }.detail-lead { max-width: 495px; color: #aab8b1; font-size: 13px; line-height: 1.85; }.terminal { max-width: 500px; margin-top: 30px; overflow: hidden; background: #121d1b; border: 1px solid #394944; border-radius: 3px; font: 11px var(--mono); }.terminal-bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; border-bottom: 1px solid #394944; color: #71827a; font-size: 9px; }.terminal-bar span { width: 6px; height: 6px; border-radius: 50%; background: #63756d; }.terminal-bar b { margin-left: 8px; font-weight: 400; }.terminal-body { padding: 17px 18px 10px; color: var(--white); }.prompt { margin-right: 10px; color: var(--orange); }.terminal-result { padding: 0 18px 17px; color: #719b83; }.terminal-result span { float: right; color: var(--green); }.detail-callout { display: flex; gap: 13px; max-width: 500px; margin-top: 23px; color: #86978e; font-size: 11px; line-height: 1.7; }.detail-callout > span { color: var(--orange); font-size: 18px; }.detail-callout p { margin: 0; }.detail-callout strong { color: var(--white); font-weight: 500; }
.commands-section { padding: 100px 0 110px; }.command-heading { margin-bottom: 61px; }.command-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 21px; border-top: 1px solid var(--line); }.command-item { min-height: 198px; padding: 22px 18px 20px 0; border-bottom: 1px solid var(--line); }.command-no { display: block; margin-bottom: 27px; color: #9ba6a0; font: 10px var(--mono); }.command-item code { display: block; margin-bottom: 13px; color: var(--green-deep); font: 500 13px var(--mono); }.command-item h3 { margin-bottom: 8px; font-size: 17px; letter-spacing: -.04em; }.command-item p { max-width: 270px; margin: 0; color: #7d8983; font-size: 11px; line-height: 1.7; }
.safety-section { padding: 91px 0 72px; }.safety-header { display: grid; grid-template-columns: 1fr .75fr; align-items: end; margin-bottom: 59px; }.safety-header > p { max-width: 370px; margin: 0 0 5px; color: #74817b; font-size: 13px; line-height: 1.8; }.habits-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }.habit { display: flex; gap: 21px; min-height: 110px; padding: 24px 35px 23px 0; border-bottom: 1px solid var(--line); }.habit:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 47px; }.habit:nth-child(even) { padding-left: 35px; }.habit > span { color: var(--orange); font: 10px var(--mono); }.habit h3 { margin: -4px 0 8px; font-size: 15px; letter-spacing: -.03em; }.habit p { margin: 0; color: #7b8781; font-size: 11px; line-height: 1.7; }.final-card { display: flex; justify-content: space-between; align-items: center; margin-top: 58px; padding: 31px 35px; background: var(--green-deep); color: var(--white); }.final-card .aside-label { margin-bottom: 11px; color: #b4d6c2; }.final-card h3 { margin: 0; font-size: 23px; letter-spacing: -.05em; }.button-light { color: var(--dark); background: var(--white); }.footer { display: flex; justify-content: space-between; padding: 20px 0 25px; border-top: 1px solid var(--line); color: #8b9690; font: 9px var(--mono); letter-spacing: .06em; }
@media (max-width: 850px) { .section-wrap, .topbar { width: min(100% - 36px, 680px); }.topnav { gap: 15px; margin-left: 0; }.topnav a:nth-child(3), .topnav a:nth-child(4), .topnav a:nth-child(5) { display: none; }.hero { grid-template-columns: 1fr; min-height: auto; }.hero::before { right: -190px; top: -90px; }.hero-copy { padding: 80px 0 35px; }.hero-aside { padding: 25px 0 65px; }.concept-board { grid-template-columns: 1fr; gap: 12px; margin-top: 45px; }.concept-connector { flex-direction: row; justify-content: center; }.concept-connector i { transform: rotate(90deg); }.model-map { grid-template-columns: 1fr; gap: 13px; margin-top: 45px; }.map-line { display: none; }.state-card { min-height: 210px; }.state-card p:not(.state-kicker) { min-height: auto; }.space-stage { grid-template-columns: 1fr; gap: 20px; margin-top: 45px; }.space-bridge { flex-direction: row; gap: 15px; }.bridge-action { max-width: 180px; }.bridge-line { flex-direction: row; }.roles-strip { gap: 15px; }.workflow-layout { grid-template-columns: 1fr; gap: 45px; }.workflow-heading { margin-bottom: 45px; }.workflow-detail { min-height: auto; }.command-grid { grid-template-columns: 1fr 1fr; }.safety-header { grid-template-columns: 1fr; gap: 25px; }.footer { gap: 15px; flex-wrap: wrap; } }
@media (max-width: 520px) { .topbar { height: 68px; }.brand { font-size: 10px; }.topnav { display: none; }.top-cta { font-size: 9px; }.hero-copy { padding-top: 68px; } h1 { font-size: 49px; }.section-heading { display: block; }.heading-note { margin: 26px 0 0; }.hero-actions { gap: 17px; flex-wrap: wrap; }.concept-section, .model-section, .spaces-section, .commands-section, .safety-section { padding-top: 74px; padding-bottom: 77px; }.learning-rail { flex-wrap: wrap; gap: 10px 14px; }.learning-rail .rail-label { width: 100%; }.workflow-section { padding-top: 74px; padding-bottom: 77px; }.space-lane { padding: 21px 16px 17px; }.lane-track { grid-template-columns: 1fr 26px 1fr 26px 1fr; gap: 3px; padding: 17px 4px; }.flow-node strong { font-size: 10px; }.flow-node small { font-size: 7px; }.flow-arrow span { font-size: 7px; width: 58px; }.roles-strip { grid-template-columns: 1fr; gap: 17px; }.command-grid, .habits-grid { grid-template-columns: 1fr; }.command-item { min-height: 170px; }.habit, .habit:nth-child(odd), .habit:nth-child(even) { padding: 21px 0; border-right: 0; }.final-card { display: block; padding: 25px 21px; }.final-card h3 { font-size: 18px; line-height: 1.5; margin-bottom: 22px; }.detail-top { gap: 20px; align-items: flex-start; flex-direction: column; }.workflow-detail h3 { font-size: 25px; }.footer { font-size: 8px; } }
