:root {
  --bg: #ffffff;
  --green: #3f946f;
  --green-dark: #287452;
  --green-soft: #eaf7f0;
  --orange: #ec7a2e;
  --orange-dark: #d76118;
  --ink: #1d2a27;
  --text: #42534d;
  --muted: #74827d;
  --line: #dbe7e1;
  --paper: #ffffff;
  --wash: #f4fbf7;
  --panel: #f7faf8;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(112px + env(safe-area-inset-bottom));
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

/* Utility */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 80;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(236, 122, 46, 0.7);
  outline-offset: 4px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2,
.intro h2,
.band-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.section-head p:not(.eyebrow) {
  margin: 12px auto 0;
  color: var(--text);
  line-height: 1.9;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 0 max(22px, calc((100vw - 1180px) / 2));
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 231, 225, 0.9);
  backdrop-filter: blur(14px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-mark {
  width: 18px;
  height: 18px;
  background:
    linear-gradient(90deg, transparent 46%, var(--paper) 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, var(--paper) 46% 54%, transparent 54%),
    var(--green);
  border-radius: 4px;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}

.site-header a:not(.logo) {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header a:hover,
.site-header a:focus-visible {
  color: var(--green-dark);
  background: var(--green-soft);
}

.site-header .nav-cta {
  color: var(--paper);
  background: var(--orange);
  border: 1px solid var(--orange);
}

.site-header .nav-cta:hover,
.site-header .nav-cta:focus-visible {
  color: var(--paper);
  background: var(--orange-dark);
}

/* Hero */

.hero {
  background: var(--green);
  color: var(--paper);
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(48px, 7vw, 82px) 0 36px;
}

.hero-copy {
  min-width: 0;
}

.hero-copy .eyebrow {
  color: #ccebdc;
}

.hero-copy h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(36px, 5.3vw, 58px);
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.hero-lead {
  margin: 20px 0 0;
  max-width: 590px;
  color: #edf8f2;
  font-size: 17px;
  line-height: 2;
  font-weight: 700;
}

.hero-actions,
.band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button::after {
  content: "›";
  font-size: 20px;
  line-height: 1;
}

.button.primary {
  color: var(--paper);
  background: var(--orange);
  border: 1px solid var(--orange);
  box-shadow: 0 12px 24px rgba(116, 61, 25, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
}

.button.secondary,
.button.outline {
  color: var(--green-dark);
  background: var(--paper);
  border: 1px solid var(--paper);
}

.button.outline {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.78);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--green-dark);
  box-shadow: 0 12px 24px rgba(27, 91, 63, 0.2);
  transform: translateY(-1px);
}

.button.outline:hover,
.button.outline:focus-visible {
  color: var(--green-dark);
  background: var(--paper);
  transform: translateY(-1px);
}

/* Product visual */

.product-visual {
  position: relative;
  min-height: 390px;
}

.laptop {
  position: relative;
  margin-left: auto;
  width: min(100%, 650px);
  background: #2b3734;
  border: 8px solid #2b3734;
  border-radius: 12px 12px 8px 8px;
  box-shadow: 0 28px 58px rgba(29, 42, 39, 0.25);
}

.laptop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -23px;
  width: 108%;
  height: 18px;
  background: linear-gradient(180deg, #ced9d5, #889691);
  border-radius: 0 0 24px 24px;
  transform: translateX(-50%);
  box-shadow: 0 16px 26px rgba(29, 42, 39, 0.18);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 12px;
  color: #78908a;
  background: #eef4f1;
  border-radius: 5px 5px 0 0;
}

.browser-bar span {
  width: 8px;
  height: 8px;
  background: #bdd0c9;
  border-radius: 50%;
}

.browser-bar strong {
  margin-left: 8px;
  font-size: 11px;
}

.app-screen {
  display: grid;
  grid-template-columns: 142px 1fr;
  min-height: 320px;
  overflow: hidden;
  background: #f8fbf9;
  border-radius: 0 0 4px 4px;
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
  color: #dcebe4;
  background: #2f8d68;
}

.app-sidebar b {
  color: var(--paper);
  font-size: 13px;
}

.app-sidebar small {
  color: #bce4d1;
  font-weight: 700;
}

.app-logo {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
}

.app-sidebar i {
  display: block;
  height: 9px;
  width: 86%;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 999px;
}

.app-sidebar i:nth-of-type(2),
.app-sidebar i:nth-of-type(4) {
  width: 62%;
}

.app-board {
  padding: 18px;
}

.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.board-head b {
  color: var(--ink);
  font-size: 18px;
}

.board-head span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  background: var(--green-soft);
  padding: 5px 9px;
  border-radius: 999px;
}

.task-table {
  display: grid;
  gap: 8px;
}

.task-table div {
  display: grid;
  grid-template-columns: 18px minmax(120px, 1fr) 54px 82px;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 10px;
  color: var(--text);
  background: var(--paper);
  border: 1px solid #e4ece8;
  border-radius: 5px;
}

.task-table b {
  font-size: 13px;
}

.task-table em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.task-table mark {
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  background: #e8f4ee;
  border-radius: 999px;
  padding: 4px 7px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot.green { background: #42aa78; }
.dot.orange { background: #ec9b44; }
.dot.blue { background: #5d94d6; }
.dot.gray { background: #a9b6b1; }

.phone {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 142px;
  min-height: 248px;
  padding: 18px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 7px solid #293632;
  border-radius: 22px;
  box-shadow: 0 22px 42px rgba(29, 42, 39, 0.28);
}

.phone span {
  display: block;
  width: 38px;
  height: 5px;
  margin: -7px auto 16px;
  background: #d8e1dd;
  border-radius: 999px;
}

.phone b {
  display: block;
  color: var(--green-dark);
  font-size: 18px;
}

.phone p {
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.phone i {
  display: block;
  height: 34px;
  margin-top: 9px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.hero-stats {
  width: min(1020px, calc(100% - 40px));
  margin: auto;
  padding: 22px 0 42px;
}

.hero-stats dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
}

.hero-stats div {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
}

.hero-stats div::before,
.hero-stats div::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 22px;
  height: 44px;
  border: 3px solid #e4d26d;
}

.hero-stats div::before {
  left: 12%;
  border-right: 0;
  border-radius: 24px 0 0 24px;
}

.hero-stats div::after {
  right: 12%;
  border-left: 0;
  border-radius: 0 24px 24px 0;
}

.hero-stats dt {
  color: #d2eadf;
  font-size: 12px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: #f2df61;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.hero-stats dd span {
  margin-left: 4px;
  color: #fff5b0;
  font-size: 13px;
}

/* Logos and intro */

.logo-section {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
  padding: 58px 0 62px;
  text-align: center;
}

.logo-section h2 {
  margin: 0 0 30px;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.45;
}

.logo-grid,
.case-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px 28px;
  align-items: center;
}

.logo-grid span,
.case-logos span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  color: #31534a;
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
  filter: saturate(0.9);
}

.logo-grid span:nth-child(3n),
.case-logos span:nth-child(3n) {
  color: #d85336;
}

.logo-grid span:nth-child(4n),
.case-logos span:nth-child(4n) {
  color: #3168a8;
}

.logo-grid span:nth-child(5n),
.case-logos span:nth-child(5n) {
  color: #6c5f9d;
}

.intro {
  padding: clamp(76px, 10vw, 150px) 0;
  background: #f3f0ee;
  text-align: center;
}

.intro > * {
  width: min(780px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.intro h2 {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto clamp(84px, 13vw, 170px);
  text-align: center;
  text-wrap: balance;
}

.intro p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 2;
  text-align: left;
}

/* Band CTA */

.band-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 46px max(22px, calc((100vw - 1080px) / 2));
  color: var(--paper);
  background: #378966;
}

.band-cta.second {
  margin-top: 0;
}

.band-cta h2 {
  color: var(--paper);
  font-size: clamp(22px, 2.8vw, 32px);
}

.band-cta p {
  margin: 10px 0 0;
  color: #dcefe6;
  line-height: 1.8;
}

.band-cta .hero-actions,
.band-cta .band-actions {
  margin-top: 0;
  flex: 0 0 auto;
}

/* Features */

.features {
  width: min(1080px, calc(100% - 40px));
  margin: auto;
  padding: 76px 0 88px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  margin-top: 46px;
}

.feature-row.reverse {
  grid-template-columns: minmax(320px, 1.08fr) minmax(260px, 0.92fr);
}

.feature-row.reverse > div:first-child {
  order: 2;
}

.feature-row h3 {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: clamp(21px, 2.7vw, 30px);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.feature-row p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 2;
}

.timeline-mock,
.member-mock {
  min-height: 300px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(35, 73, 58, 0.1);
}

.timeline-mock {
  position: relative;
  display: grid;
  grid-template-columns: 118px repeat(4, 1fr);
  gap: 10px;
}

.timeline-mock span {
  height: 100%;
  background: linear-gradient(180deg, #eef5f1, #f8fbf9);
  border: 1px solid #e4ece8;
  border-radius: 4px;
}

.timeline-mock span:first-child {
  background: #f4f8f6;
}

.timeline-mock i {
  position: absolute;
  left: 156px;
  right: 26px;
  height: 20px;
  background: rgba(63, 148, 111, 0.18);
  border-radius: 999px;
}

.timeline-mock i:nth-of-type(1) { top: 66px; width: 44%; }
.timeline-mock i:nth-of-type(2) { top: 118px; width: 64%; background: rgba(93, 148, 214, 0.16); }
.timeline-mock i:nth-of-type(3) { top: 170px; width: 38%; background: rgba(236, 122, 46, 0.18); }
.timeline-mock i:nth-of-type(4) { top: 222px; width: 70%; }

.video-mock {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: #111;
  border-radius: 6px;
  box-shadow: 0 18px 38px rgba(29, 42, 39, 0.2);
}

.video-mock img {
  width: 100%;
  height: 300px;
  opacity: 0.88;
}

.video-mock span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.video-mock span::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 17px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--green-dark);
}

.member-mock {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12px;
}

.member-mock span,
.member-mock i {
  display: block;
  background: var(--panel);
  border: 1px solid #e4ece8;
  border-radius: 5px;
}

.member-mock span:first-child {
  grid-row: span 4;
}

.member-mock i {
  min-height: 44px;
  background: var(--paper);
}

/* Functions */

.functions {
  padding: 72px 0 82px;
  background: #f3f5f4;
  text-align: center;
}

.function-grid {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.function-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.function-grid a::after {
  content: "›";
  color: var(--muted);
  font-size: 18px;
}

.function-grid a:hover,
.function-grid a:focus-visible {
  color: var(--green-dark);
  border-color: var(--green);
  background: #fbfdfc;
}

.function-grid span {
  width: 24px;
  color: var(--green);
  font-weight: 900;
}

.small-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid #9caaa4;
  border-radius: 3px;
}

/* Cases */

.cases {
  width: min(1080px, calc(100% - 40px));
  margin: auto;
  padding: 72px 0 82px;
}

.case-logos {
  width: min(880px, 100%);
  margin: 0 auto 34px;
  grid-template-columns: repeat(4, 1fr);
}

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

.case-grid article {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 12px 26px rgba(35, 73, 58, 0.08);
}

.case-grid img {
  width: 100%;
  height: 168px;
}

.case-grid article > *:not(img) {
  margin-left: 18px;
  margin-right: 18px;
}

.case-name {
  margin-top: 16px;
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-grid h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}

.case-grid p:not(.case-name) {
  color: var(--text);
  font-size: 13px;
  line-height: 1.8;
}

.case-grid a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 20px;
  padding: 0 16px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid #aebbb6;
  border-radius: 3px;
  cursor: pointer;
}

/* Pricing */

.pricing {
  padding: 76px 0 90px;
  background: var(--green-soft);
}

.pricing-panel {
  width: min(1060px, calc(100% - 40px));
  margin: auto;
  padding: clamp(22px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid #d7e8df;
  border-radius: 6px;
}

.plan-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.plan-tabs span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.billing-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  min-width: min(360px, 100%);
  margin: 0 auto 28px;
  padding: 4px;
  background: #edf3f0;
  border-radius: 999px;
}

.pricing-panel {
  text-align: center;
}

.billing-switch span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
}

.billing-switch .active {
  color: var(--paper);
  background: var(--green);
}

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: left;
}

.plans article {
  position: relative;
  padding: 22px 18px 20px;
  background: var(--paper);
  border: 1px solid #cad9d3;
  border-radius: 4px;
}

.plans article.featured {
  border-top: 5px solid var(--green);
  box-shadow: 0 16px 32px rgba(63, 148, 111, 0.16);
}

.plans h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  text-align: center;
}

.plans p {
  margin: 6px 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.plans strong {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(23px, 2.4vw, 32px);
  font-weight: 900;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.plans strong span {
  margin-left: 3px;
  color: var(--muted);
  font-size: 12px;
}

.plans a {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 3px;
  cursor: pointer;
}

.plans a:hover,
.plans a:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.plans ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.5;
  list-style: none;
}

.plans li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--green-dark);
  font-weight: 900;
}

.pricing-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  text-align: left;
}

/* Flow */

.flow {
  width: min(1080px, calc(100% - 40px));
  margin: auto;
  padding: 70px 0 92px;
}

.flow ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow li {
  padding: 22px 18px;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.flow span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 0 12px;
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  background: var(--green);
  border-radius: 999px;
}

.flow b {
  display: block;
  margin: 16px 0 8px;
  font-size: 15px;
}

.flow p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.8;
}

/* Footer */

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1080px, calc(100% - 40px));
  margin: auto;
  padding: 28px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer a {
  font-weight: 800;
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  color: var(--green-dark);
}

/* Fixed CTA */

.contact-fixed {
  position: fixed;
  left: 50%;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  width: min(720px, calc(100% - 28px));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 12px 12px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(63, 148, 111, 0.32);
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(26, 56, 44, 0.18);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.contact-fixed > div > span {
  display: block;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-fixed > div > p {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.contact-fixed > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 4px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-fixed > a:hover,
.contact-fixed > a:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(165, 78, 25, 0.22);
}

/* Reveal */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */

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

  .product-visual {
    min-height: 360px;
  }

  .phone {
    left: 4px;
  }

  .plans,
  .flow ol {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .logo {
    padding-top: 6px;
  }

  .hero-stats dl,
  .feature-row,
  .feature-row.reverse,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse > div:first-child {
    order: 0;
  }

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

  .band-cta .band-actions {
    width: 100%;
  }

  .function-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .case-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: calc(150px + env(safe-area-inset-bottom));
  }

  .site-header {
    position: relative;
    display: block;
  }

  .site-header nav {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .site-header a:not(.logo) {
    min-height: 34px;
    padding: 0 8px;
    font-size: 11px;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding-top: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-actions,
  .band-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .product-visual {
    min-height: auto;
    padding-bottom: 20px;
  }

  .laptop {
    border-width: 6px;
  }

  .app-screen {
    grid-template-columns: 94px 1fr;
    min-height: 250px;
  }

  .app-sidebar {
    padding: 12px;
  }

  .app-board {
    padding: 12px;
  }

  .task-table div {
    grid-template-columns: 14px 1fr;
    min-height: 48px;
  }

  .task-table em,
  .task-table mark {
    display: none;
  }

  .phone {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(210px, 72%);
    min-height: 160px;
    margin: 34px auto 0;
  }

  .phone i {
    height: 20px;
  }

  .hero-stats dl,
  .function-grid,
  .plans,
  .plan-tabs,
  .flow ol {
    grid-template-columns: 1fr;
  }

  .hero-stats div::before {
    left: 20%;
  }

  .hero-stats div::after {
    right: 20%;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .intro h2 {
    margin-bottom: 72px;
  }

  .timeline-mock,
  .member-mock {
    min-height: 240px;
    padding: 18px;
  }

  .timeline-mock {
    grid-template-columns: 78px repeat(3, 1fr);
  }

  .timeline-mock i {
    left: 108px;
    right: 18px;
  }

  .video-mock,
  .video-mock img {
    min-height: 230px;
    height: 230px;
  }

  .contact-fixed {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }

  .contact-fixed > a {
    width: 100%;
  }

  .contact-fixed > div > p {
    font-size: 14px;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .logo-grid,
  .case-logos {
    grid-template-columns: 1fr;
  }

  .hero-stats div::before,
  .hero-stats div::after {
    display: none;
  }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .button:hover,
  .button:focus-visible,
  .contact-fixed > a:hover,
  .contact-fixed > a:focus-visible {
    transform: none;
  }
}
