:root {
  --green:#66c837;
  --green-hover:#55b827;
  --ink:#20221f;
  --muted:#74766f;
  --paper:#f8f9f5;
  --line:#e1e4dc;
  --radius:20px;
  --max:1280px;
}

* {
  box-sizing:border-box;
}

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

body {
  margin:0;
  font-family:Arial,"Helvetica Neue",sans-serif;
  color:var(--ink);
  background:#fff;
  font-size:16px;
  line-height:1.6;
}

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

button,input {
  font:inherit;
}

button,a {
  touch-action:manipulation;
}

button {
  color:inherit;
}

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

button {
  cursor:pointer;
}

img {
  display:block;
  max-width:100%;
  height:auto;
}

svg {
  display:block;
}

button:focus-visible,a:focus-visible,input:focus-visible,summary:focus-visible {
  outline:3px solid #409d21;
  outline-offset:5px;
}

::selection {
  background:#c7f7ac;
  color:#173015;
}

.container {
  width:min(var(--max),calc(100% - 100px));
  margin-inline:auto;
}

.skip-link {
  position:fixed;
  z-index:100;
  top:-70px;
  left:20px;
  padding:12px;
  background:#fff;
}

.skip-link:focus {
  top:10px;
}

.site-header {
  height:92px;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(15px);
}

.header-inner {
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:27px;
  font-weight:700;
  letter-spacing:-1.3px;
  white-space:nowrap;
}

.brand img {
  height:36px;
  width:36px;
}

.registered {
  font-size:12px;
  vertical-align:top;
  letter-spacing:0;
  padding:3px;
}

.desktop-nav {
  display:flex;
  gap:30px;
  align-items:center;
  font-size:14px;
}

.desktop-nav a {
  position:relative;
  padding:10px 0;
}

.desktop-nav a:after {
  content:"";
  position:absolute;
  bottom:3px;
  left:0;
  width:0;
  height:2px;
  background:var(--green);
  transition:width .25s;
}

.desktop-nav a:hover:after {
  width:100%;
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  border:0;
  border-radius:7px;
  min-height:58px;
  padding:15px 23px;
  font-size:15px;
  font-weight:700;
  transition:background .2s,transform .2s,box-shadow .2s;
}

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

.button-green {
  background:var(--green);
  color:#10260b;
  box-shadow:0 6px 16px #66c83716;
}

.button-green:hover {
  background:var(--green-hover);
  box-shadow:0 10px 24px #66c83735;
}

.button-dark {
  background:var(--ink);
  color:white;
}

.button-dark:hover {
  background:#3a4035;
}

.button-small {
  font-size:13px;
  min-height:43px;
  padding:11px 18px;
}

.button>span:last-child {
  font-size:21px;
  font-weight:400;
  margin-left:9px;
}

.icon {
  width:21px;
  height:21px;
  flex:none;
}

.hero {
  background:var(--paper);
  position:relative;
  overflow:hidden;
}

.hero-grid {
  position:relative;
  display:grid;
  grid-template-columns:1fr 1.03fr;
  align-items:center;
  min-height:685px;
  gap:5px;
}

.hero-copy {
  position:relative;
  z-index:2;
  padding:50px 0 34px;
}

.eyebrow {
  display:flex;
  align-items:center;
  gap:12px;
  font-size: 12px;
  font-weight:600;
  letter-spacing:1.3px;
  margin-bottom:32px;
}

.new-label {
  padding:4px 9px;
  border:1px solid #a1bd8c;
  background:#eef7e7;
  border-radius:3px;
  letter-spacing:.6px;
  color:#416c2f;
  font-size: 12px;
}

.hero h1 {
  font-size:clamp(52px,5.5vw,82px);
  line-height:1.06;
  letter-spacing:-4px;
  font-weight:500;
  margin:0 0 33px;
}

.title-accent {
  position:relative;
  white-space:nowrap;
}

.title-accent>svg {
  position:absolute;
  width:100%;
  left:0;
  bottom:-15px;
  height:23px;
  stroke:var(--green);
  stroke-width:7;
  fill:none;
  stroke-linecap:round;
}

.hero-description {
  font-size:17px;
  line-height:1.8;
  letter-spacing:-.2px;
  color:#62665d;
  margin:0 0 31px;
}

.hero-actions {
  display:flex;
  align-items:center;
  gap:22px;
  white-space:nowrap;
}

.hero-actions .button {
  font-size:14px;
  padding:15px 19px;
}

.watch-button {
  border:0;
  background:none;
  padding:0;
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size:13px;
  font-weight:600;
  white-space:nowrap;
}

.play-circle {
  height:34px;
  width:34px;
  border:1px solid #b6bfb0;
  border-radius:50%;
  display:grid;
  place-items:center;
  transition:background .2s,transform .2s;
}

.play-circle svg {
  width:14px;
  height:14px;
}

.watch-button:hover .play-circle {
  background:var(--green);
  border-color:var(--green);
  transform:scale(1.08);
}

.trial-note {
  font-size:12px;
  color:#777c73;
  margin-top:16px;
}

.check {
  color:#3e8530;
  font-weight:bold;
  margin-right:4px;
}

.note-divider {
  padding:0 10px;
  color:#bac0b5;
}

.hero-caption {
  display:flex;
  align-items:center;
  gap:12px;
  letter-spacing:1.5px;
  font-size: 12px;
  font-weight:600;
  color:#7c8275;
  margin-top:58px;
}

.tiny-line {
  display:block;
  width:28px;
  height:1px;
  background:#8b9981;
}

.hero-visual {
  height:620px;
  position:relative;
  isolation:isolate;
  align-self:center;
}

.hero-art {
  position:absolute;
  inset:10px -64px 0 -30px;
  margin:0;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-art img {
  height:100%;
  width:100%;
  object-fit:contain;
  mix-blend-mode:multiply;
  animation:art-arrive 1.2s cubic-bezier(.2,.7,.2,1) both;
}

.art-orbit {
  position:absolute;
  border:1px solid #dfe6d6;
  border-radius:50%;
  z-index:0;
}

.orbit-one {
  width:490px;
  height:490px;
  top:62px;
  left:45px;
}

.orbit-two {
  width:360px;
  height:360px;
  top:130px;
  left:110px;
}

.floating-tag {
  position:absolute;
  z-index:3;
  background:rgba(255,255,255,.93);
  backdrop-filter:blur(12px);
  box-shadow:0 12px 38px #3441210d;
  border:1px solid #e8ede3;
  display:flex;
  align-items:center;
  gap:13px;
  border-radius:10px;
  animation:float 6s ease-in-out infinite;
}

.tag-top {
  left:58px;
  top:43px;
  padding:10px 15px;
  font-size:12px;
  transform:rotate(-5deg);
}

.spark {
  color:#56ac31;
  font-size:26px;
  line-height:1;
}

.tag-bottom {
  right:0;
  bottom:67px;
  padding:16px 21px;
  animation-delay:-3s;
}

.tag-bottom strong {
  font-size:12px;
  font-weight:600;
  display:block;
}

.tag-bottom div>span {
  font-size: 12px;
  color:#7e8675;
  display:block;
  margin-top:1px;
}

.pen-icon {
  color:#62b33a;
  width:29px;
  height:29px;
}

.art-credit {
  position:absolute;
  right:4px;
  bottom:22px;
  font-size: 12px;
  color:#848b7e;
  z-index:3;
}

.hero-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top:1px solid #dce2d6;
  padding:22px 0;
}

.hero-bottom>span {
  font-size: 12px;
  letter-spacing:1.5px;
  color:#7a8273;
}

.hero-bottom>a {
  font-size: 12px;
  color:#637257;
  display:flex;
  align-items:center;
  gap:20px;
}

.hero-bottom>a span {
  font-size:20px;
}

.discipline-strip {
  background:#fff;
  border-bottom:1px solid var(--line);
}

.disciplines {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:89px;
  font-size:14px;
  color:#51574c;
}

.disciplines i {
  font-style:normal;
  color:#77b456;
  font-size:26px;
}

.menu-toggle {
  display:none;
}

.mobile-nav[hidden] {
  display:none;
}

@keyframes float {
  0%,100% {
    translate:0 0;
  }
  50% {
    translate:0 -9px;
  }
}

@keyframes art-arrive {
  from {
    opacity:0;
    transform:translateY(25px) scale(.97);
  }
  to {
    opacity:1;
    transform:none;
  }
}

@media(min-width:1500px) {
  .hero-grid {
    min-height:760px;
  }
  .hero-visual {
    height:690px;
  }
}

@media(max-width:1150px) {
  .container {
    width:calc(100% - 64px);
  }
  .desktop-nav {
    gap:20px;
  }
  .hero h1 {
    font-size:68px;
  }
  .hero-actions {
    gap:12px;
    align-items:flex-start;
    flex-direction:column;
  }
  .hero-visual {
    height:580px;
  }
  .hero-grid {
    min-height:640px;
  }
  .hero-caption {
    margin-top:30px;
  }
  .hero-art {
    inset:10px -75px 0 -35px;
  }
  .tag-top {
    left:25px;
  }
  .tag-bottom {
    right:-5px;
    bottom:48px;
  }
  .eyebrow {
    font-size: 12px;
    gap:8px;
  }
  .orbit-one {
    left:-20px;
  }
}

@media(max-width:800px) {
  .container {
    width:calc(100% - 40px);
  }
  .site-header {
    height:74px;
  }
  .desktop-nav {
    display:none;
  }
  .brand {
    font-size:25px;
  }
  .header-download {
    margin-left:auto;
    min-height:38px;
    font-size: 12px;
    padding:9px 12px;
  }
  .header-download>span {
    display:none;
  }
  .menu-toggle {
    display:flex;
    width:28px;
    padding:3px 0;
    background:none;
    border:0;
    flex-direction:column;
    gap:6px;
  }
  .menu-toggle span {
    height:2px;
    background:var(--ink);
    width:24px;
    transition:transform .2s;
  }
  .menu-toggle[aria-expanded=true] span:first-child {
    transform:translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded=true] span:last-child {
    transform:translateY(-4px) rotate(-45deg);
  }
  .header-inner {
    gap:15px;
  }
  .mobile-nav {
    padding:15px 20px 24px;
    background:#fff;
    border-bottom:1px solid var(--line);
    display:grid;
    gap:12px;
  }
  .hero-grid {
    grid-template-columns:1fr;
    gap:0;
    min-height:auto;
  }
  .hero-copy {
    padding:52px 0 0;
  }
  .eyebrow {
    margin-bottom:25px;
    font-size: 12px;
  }
  .hero h1 {
    font-size:clamp(52px,9vw,74px);
    letter-spacing:-3px;
    margin-bottom:29px;
  }
  .hero-description {
    font-size:16px;
  }
  .hero-actions {
    flex-direction:row;
    align-items:center;
    gap:20px;
  }
  .hero-caption {
    display:none;
  }
  .hero-visual {
    height:510px;
    width:100%;
    max-width:560px;
    margin:0 auto;
  }
  .hero-art {
    inset:-10px -20px 0;
  }
  .tag-top {
    left:8px;
    top:30px;
  }
  .tag-bottom {
    bottom:42px;
    right:10px;
  }
  .art-credit {
    bottom:9px;
    right:12px;
  }
  .orbit-one {
    width:400px;
    height:400px;
    top:40px;
    left:50%;
    transform:translateX(-50%);
  }
  .orbit-two {
    width:290px;
    height:290px;
    top:100px;
    left:50%;
    transform:translateX(-50%);
  }
  .hero-bottom>span {
    display:none;
  }
  .hero-bottom {
    justify-content:center;
    padding:14px 0;
  }
  .disciplines {
    flex-wrap:wrap;
    justify-content:center;
    gap:13px 24px;
    padding:22px 0;
    font-size:12px;
  }
  .disciplines i {
    font-size:20px;
  }
  .disciplines i:nth-of-type(2) {
    display:none;
  }
}

@media(max-width:450px) {
  .header-download {
    display:none;
  }
  .menu-toggle {
    margin-left:auto;
  }
  .hero h1 {
    font-size:54px;
  }
  .hero-actions {
    gap:17px;
    flex-wrap:wrap;
  }
  .hero-actions .button {
    min-height:54px;
  }
  .watch-button {
    font-size:12px;
  }
  .hero-description br {
    display:none;
  }
  .hero-visual {
    height:440px;
    margin-top:9px;
  }
  .tag-top {
    font-size: 12px;
    padding:8px 11px;
    top:27px;
  }
  .tag-bottom {
    padding:12px 14px;
    bottom:34px;
  }
  .tag-bottom strong {
    font-size: 12px;
  }
  .tag-bottom div>span {
    font-size: 12px;
  }
  .orbit-one {
    width:330px;
    height:330px;
    top:48px;
  }
  .eyebrow {
    font-size: 12px;
  }
  .disciplines {
    gap:10px 15px;
    font-size: 12px;
  }
  .disciplines i {
    font-size:15px;
  }
}

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

.brand .brand-logo {
  height:auto;
  width:198px;
  max-width:100%;
}

@media(max-width:450px) {
  .brand .brand-logo {
    width:174px;
  }
}


/* Editorial sections */
.section {
  padding: 108px 0;
}

.section-kicker {
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #6d7d60;
}

h2 {
  margin: 0;
  font-weight: 500;
  font-size: clamp(36px, 3.3vw, 48px);
  line-height: 1.13;
  letter-spacing: -1.9px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
  margin-bottom: 47px;
}

.section-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 4px;
}

.centered {
  display: block;
  text-align: center;
}

.centered > p {
  margin-top: 18px;
}

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

.feature-card {
  min-width: 0;
}

.feature-image {
  aspect-ratio: 1.32;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  background: #eef2e9;
}

.feature-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.feature-card:hover .feature-image > img {
  transform: scale(1.045);
}

.image-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 9px;
  background: #ffffffdb;
  backdrop-filter: blur(10px);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.feature-body {
  padding: 24px 3px 0;
}

h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -.6px;
  margin: 0 0 12px;
}

.feature-body p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
  min-height: 76px;
}

.feature-body a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  padding: 19px 0 8px;
}

.feature-body a > span {
  font-size: 23px;
  font-weight: 400;
  transition: transform .2s;
}

.feature-body a:hover > span {
  transform: translate(3px,-3px);
}

.workspace-section {
  background: #f2f5ee;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workspace-tabs {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 0 auto 32px;
  width: fit-content;
  border: 1px solid #dce2d5;
  background: #e8ede2;
  border-radius: 8px;
  padding: 5px;
}

.workspace-tabs button {
  font-size: 13px;
  color: #626b5a;
  border: 0;
  background: transparent;
  border-radius: 5px;
  padding: 12px 24px;
  transition: background .2s;
}

.workspace-tabs button[aria-selected=true] {
  background: #fff;
  box-shadow: 0 2px 5px #293a2410;
  color: #283623;
}

.workspace-tabs button:hover {
  color: #14250b;
}

.workspace-frame {
  max-width: 1070px;
  margin: auto;
  padding: 8px;
  border: 1px solid #d7dfce;
  border-radius: 14px;
  background: #ffffffc2;
  box-shadow: 0 18px 65px #243b1c14;
}

.workspace-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px 12px;
  font-size: 12px;
  color: #707969;
}

.window-mark {
  display: flex;
  gap: 7px;
  align-items: center;
}

.window-mark img {
  border-radius: 3px;
}

.chrome-icons {
  font-size: 13px;
  color: #919a88;
}

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

.screenshot-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  background: #e8e8e8;
}

.screenshot-button > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
}

.zoom-hint {
  position: absolute;
  right: 19px;
  bottom: 18px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  color: #35402d;
  font-size: 12px;
  box-shadow: 0 3px 20px #0002;
  transition: transform .2s;
}

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

.zoom-hint .icon {
  width: 16px;
  height: 16px;
}

.workspace-description {
  max-width: 1070px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.workspace-description p {
  color: #66705e;
  font-size: 13px;
  margin: 0;
}

.workspace-description > span {
  font-size: 12px;
  color: #8d9586;
  text-align: right;
  flex-shrink: 0;
}

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

.creative-copy h2 {
  font-size: clamp(38px, 3.6vw, 53px);
}

.creative-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin: 24px 0;
  max-width: 400px;
}

.palette-picker {
  border: 0;
  padding: 0;
  margin: 27px 0;
  display: flex;
  gap: 14px;
}

.palette-picker legend {
  padding: 0;
  font-size: 12px;
  margin-bottom: 15px;
}

.palette-option {
  cursor: pointer;
  position: relative;
}

.palette-option input {
  position: absolute;
  opacity: 0;
  width: 36px;
  height: 36px;
  margin: 0;
}

.palette-dot {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px #e1e5da;
  transition: transform .2s, box-shadow .2s;
}

.palette-green {
  background: #b6f36a;
}

.palette-purple {
  background: #c6b0fd;
}

.palette-orange {
  background: #ff9874;
}

.palette-blue {
  background: #8cbcf9;
}

.palette-option input:checked + .palette-dot {
  box-shadow: 0 0 0 2px var(--ink);
  transform: scale(1.1);
}

.palette-option input:focus-visible + .palette-dot {
  outline: 3px solid #409d21;
  outline-offset: 6px;
}

.creative-copy > .experiment-note {
  margin-bottom: 0;
  font-size: 12px;
  color: #969b90;
}

.design-playground {
  --poster-bg:#b6f36a;
  --poster-ink:#1b3924;
  background:var(--poster-bg);
  color: var(--poster-ink);
  padding: 29px 34px 23px;
  border-radius: 10px;
  box-shadow: 10px 12px 0 #f1f3ed;
  transition: background .5s, color .5s;
  aspect-ratio: 1.03;
  display: flex;
  flex-direction: column;
}

.design-playground[data-palette=purple] {
  --poster-bg:#c6b0fd;
  --poster-ink:#362054;
}

.design-playground[data-palette=orange] {
  --poster-bg:#ff9874;
  --poster-ink:#5b231c;
}

.design-playground[data-palette=blue] {
  --poster-bg:#8cbcf9;
  --poster-ink:#183956;
}

.poster-meta, .poster-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 1px;
}

.poster-meta {
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
}

.poster-type {
  display: flex;
  flex-direction: column;
  font-size: clamp(56px,6.2vw,87px);
  font-weight: 900;
  letter-spacing: -6px;
  line-height: .94;
  padding: 28px 0 33px;
  margin: auto 0;
}

.poster-outline {
  -webkit-text-stroke: 1.7px var(--poster-ink);
  color: transparent;
}

.poster-type > span:last-child {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.poster-star {
  font-size: .65em;
  font-weight: 400;
  margin-left: 10px;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.design-playground:hover .poster-star {
  transform: rotate(70deg);
}

.poster-footer {
  border-top: 1px solid currentColor;
  padding-top: 15px;
  letter-spacing: 0;
  font-size: 12px;
}

.video-section {
  padding: 86px 0;
  background: #20291e;
  color: #fff;
  overflow: hidden;
}

.video-grid {
  display: grid;
  grid-template-columns: .85fr 1.25fr;
  gap: 65px;
  align-items: center;
}

.video-copy .section-kicker {
  color: #a9c399;
}

.video-copy h2 {
  font-size: clamp(42px,4.5vw,62px);
}

.video-copy > p {
  color: #b1bbab;
  font-size: 15px;
  margin: 23px 0 27px;
  line-height: 1.8;
}

.video-copy .button {
  font-size: 13px;
  min-height: 51px;
  padding: 13px 20px;
}

.video-play {
  font-size: 12px;
}

.video-footnote {
  display: block;
  margin-top: 16px;
  color: #93a289;
  font-size: 12px;
}

.video-poster {
  width: 100%;
  position: relative;
  border: 1px solid #ffffff25;
  background: #111;
  border-radius: 13px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 30px 55px #0002;
}

.video-poster > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: .82;
  transition: opacity .3s, transform .6s;
}

.video-poster:hover > img {
  opacity: 1;
  transform: scale(1.025);
}

.large-play {
  position: absolute;
  display: grid;
  place-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 74px;
  width: 74px;
  border-radius: 50%;
  color: #152312;
  background: #d1f8b8e6;
  backdrop-filter: blur(8px);
  border: 1px solid #ffffffb0;
  transition: scale .25s;
}

.large-play svg {
  width: 30px;
  height: 30px;
  margin-left: -3px;
}

.video-poster:hover .large-play {
  scale: 1.08;
}

.poster-video-label {
  color: #fff;
  background: linear-gradient(transparent,#000b);
  padding: 45px 23px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 1.5px;
}

.poster-video-label > span {
  font-size: 22px;
}

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

.quote-card {
  margin: 0;
  background: #f7f8f4;
  border: 1px solid #e6e9e0;
  border-radius: 10px;
  padding: 25px 27px;
  display: flex;
  flex-direction: column;
}

.quote-mark {
  color: #6aad43;
  font-family: Georgia,serif;
  font-size: 63px;
  line-height: .9;
  margin: 2px 0 12px;
}

.quote-card blockquote {
  margin: 0 0 35px;
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: -.4px;
  min-height: 120px;
}

.quote-card figcaption {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.avatar {
  width: 39px;
  height: 39px;
  flex: none;
  border-radius: 50%;
  background: #e2edd5;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #507234;
}

.avatar-two {
  background: #e9e2d4;
  color: #92744a;
}

.avatar-three {
  background: #e4ddee;
  color: #7a648f;
}

.quote-card figcaption strong {
  font-weight: 600;
  font-size: 12px;
  display: block;
}

.quote-card figcaption div > span {
  display: block;
  font-size: 12px;
  color: #919889;
}

.quote-card > a {
  border-top: 1px solid #e3e8dc;
  margin-top: 25px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #69775d;
}

.quote-card > a:hover {
  color: #348416;
}

.source-note {
  margin: 23px 0 0;
  font-size: 12px;
  color: #909588;
}

.faq-section {
  padding-top: 10px;
}

.faq-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 75px;
  border-top: 1px solid var(--line);
  padding-top: 75px;
}

.faq-grid h2 {
  font-size: 40px;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: #67765b;
  margin-top: 25px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
  font-size: 14px;
  padding: 21px 0;
  list-style: none;
}

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

.faq-list summary > span {
  font-size: 23px;
  font-weight: 300;
  color: #75856a;
  transition: transform .2s;
}

.faq-list details[open] summary > span {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px 21px 0;
  font-size: 13px;
  color: #747e6b;
  line-height: 1.85;
}

.faq-answer p {
  margin: 0;
}

.faq-answer a {
  display: block;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #488531;
  margin-top: 12px;
}

.download-section {
  background: #b8ed8f;
  text-align: center;
  overflow: hidden;
}

.download-content {
  padding-block: 85px;
  position: relative;
}

.download-content .section-kicker {
  color: #416b2b;
  position: relative;
  z-index: 1;
}

.download-content h2 {
  font-size: clamp(50px,7vw,90px);
  letter-spacing: -4px;
  position: relative;
  z-index: 1;
}

.download-content > p {
  color: #426333;
  font-size: 16px;
  margin: 24px 0 28px;
  position: relative;
  z-index: 1;
}

.download-content .button {
  position: relative;
  z-index: 1;
}

.download-note {
  position: relative;
  display: block;
  font-size: 12px;
  color: #577b47;
  margin-top: 17px;
  z-index: 1;
}

.download-asterisk {
  font-size: 450px;
  color: #a5df78;
  position: absolute;
  right: -100px;
  top: -85px;
  line-height: 1.3;
  user-select: none;
}

.site-footer {
  padding: 47px 0 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
}

.footer-top .brand-logo {
  width: 172px;
}

.footer-top > span {
  color: #8b9283;
  font-size: 12px;
}

.footer-top > a:last-child {
  font-size: 12px;
  display: flex;
  gap: 17px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  padding-top: 25px;
  font-size: 12px;
  color: #9a9f93;
  line-height: 1.8;
}

.footer-bottom p {
  margin: 0;
  max-width: 810px;
}

.footer-bottom > span {
  text-align: right;
  flex-shrink: 0;
}


/* Native dialogs provide focus management and keyboard dismissal. */
.media-dialog {
  width: min(1050px,calc(100% - 40px));
  max-height: 90vh;
  padding: 0;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #172014;
  overflow: auto;
  box-shadow: 0 40px 160px #0006;
}

.media-dialog::backdrop {
  background: #10150fca;
  backdrop-filter: blur(9px);
}

.dialog-bar {
  padding: 13px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.dialog-bar h2 {
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 400;
}

.dialog-close {
  background: #ffffff12;
  border: 1px solid #ffffff25;
  color: white;
  border-radius: 50%;
  height: 34px;
  width: 34px;
  line-height: 1;
  font-size: 26px;
}

.dialog-close:hover {
  background: #ffffff30;
}

.media-dialog video, .media-dialog > img {
  display: block;
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  background: #0d120b;
}

.video-description {
  padding: 0 20px;
  color: #b4c1ac;
  font-size: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.js-motion .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s, transform .65s;
}

.js-motion .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.feature-card:nth-child(2),.quote-card:nth-child(2) {
  transition-delay: .08s;
}

.feature-card:nth-child(3),.quote-card:nth-child(3) {
  transition-delay: .16s;
}

@media(max-width:1150px) {
  .section {
    padding:85px 0;
  }
  .creative-grid {
    gap:55px;
  }
  .section-heading {
    gap:30px;
  }
  .section-heading>p {
    font-size:14px;
  }
  .feature-grid {
    gap:22px;
  }
  .feature-body p {
    min-height:100px;
  }
  .quote-card {
    padding:22px;
  }
  .quote-card blockquote {
    font-size:18px;
    min-height:145px;
  }
  .video-grid {
    gap:40px;
  }
  .faq-grid {
    gap:45px;
  }
  .faq-grid h2 {
    font-size:34px;
  }
  .poster-type {
    font-size:6.7vw;
  }
  .poster-meta {
    font-size: 12px;
  }
  .poster-footer {
    font-size: 12px;
  }
}

@media(max-width:800px) {
  .section {
    padding:68px 0;
  }
  .section-heading {
    display:block;
    margin-bottom:32px;
  }
  .section-heading>p {
    margin-top:22px;
    font-size:14px;
  }
  .section-kicker {
    font-size: 12px;
    margin-bottom:16px;
  }
  .feature-grid {
    gap:16px;
  }
  .feature-image {
    aspect-ratio:1;
  }
  .feature-body {
    padding-top:19px;
  }
  h3 {
    font-size:18px;
  }
  .feature-body p {
    font-size:13px;
    min-height:140px;
  }
  .feature-body a {
    font-size: 12px;
    gap:10px;
  }
  .image-label {
    font-size: 12px;
    top:10px;
    left:10px;
  }
  .workspace-tabs button {
    padding:11px 17px;
    font-size:12px;
  }
  .workspace-description {
    gap:15px;
  }
  .workspace-description p {
    font-size:12px;
  }
  .workspace-description>span {
    font-size: 12px;
  }
  .creative-grid {
    gap:35px;
  }
  .creative-copy h2 {
    font-size:34px;
  }
  .creative-copy>p {
    font-size:14px;
  }
  .design-playground {
    padding:22px;
    aspect-ratio:.8;
  }
  .poster-type {
    font-size:7.5vw;
    letter-spacing:-4px;
  }
  .poster-meta {
    font-size: 12px;
    letter-spacing:0;
  }
  .poster-footer {
    font-size: 12px;
  }
  .video-section {
    padding:60px 0;
  }
  .video-grid {
    gap:32px;
    grid-template-columns:1fr 1fr;
  }
  .video-copy h2 {
    font-size:41px;
  }
  .video-copy>p {
    font-size:13px;
  }
  .video-copy .button {
    font-size:12px;
    padding:11px 16px;
  }
  .video-poster>img {
    aspect-ratio:1;
  }
  .stories-grid {
    gap:13px;
  }
  .quote-card {
    padding:20px 16px;
  }
  .quote-card blockquote {
    font-size:17px;
    min-height:165px;
  }
  .quote-card figcaption {
    gap:8px;
    align-items:flex-start;
  }
  .quote-card figcaption div>span {
    font-size: 12px;
  }
  .avatar {
    width:28px;
    height:28px;
    font-size: 12px;
  }
  .quote-card>a {
    font-size: 12px;
  }
  .faq-grid {
    grid-template-columns:1fr;
    gap:35px;
    padding-top:0;
    border-top:0;
  }
  .faq-section {
    padding-top:0;
  }
  .faq-grid h2 {
    font-size:36px;
  }
  .download-content {
    padding-block:65px;
  }
  .download-content>p {
    font-size:14px;
  }
  .download-asterisk {
    right:-120px;
    opacity:.6;
  }
  .footer-top>span {
    display:none;
  }
  .footer-bottom {
    gap:35px;
  }
  .hero-art img {
    mix-blend-mode:normal;
  }
}

@media(max-width:580px) {
  .section {
    padding:57px 0;
  }
  h2 {
    font-size:36px;
    letter-spacing:-1.5px;
  }
  .feature-grid {
    grid-template-columns:1fr;
    gap:35px;
  }
  .feature-image {
    aspect-ratio:1.42;
  }
  .feature-body {
    padding-top:18px;
  }
  .feature-body p {
    min-height:0;
    font-size:14px;
  }
  .feature-body a {
    padding-top:12px;
    font-size:12px;
  }
  .feature-body h3 {
    font-size:22px;
  }
  .section-heading>p br {
    display:none;
  }
  .workspace-tabs {
    width:100%;
    gap:2px;
    padding:4px;
    margin-bottom:22px;
  }
  .workspace-tabs button {
    flex:1;
    font-size: 12px;
    padding:10px 6px;
    line-height:1.4;
  }
  .workspace-frame {
    padding:5px;
    border-radius:9px;
  }
  .workspace-chrome {
    font-size: 12px;
    padding:2px 3px 7px;
  }
  .window-mark img {
    width:13px;
    height:13px;
  }
  .chrome-icons {
    font-size: 12px;
  }
  .zoom-hint {
    font-size: 12px;
    padding:7px;
    bottom:9px;
    right:9px;
  }
  .zoom-hint .icon {
    width:12px;
    height:12px;
  }
  .workspace-description {
    display:block;
    margin-top:16px;
  }
  .workspace-description>span {
    display:block;
    text-align:left;
    margin-top:9px;
  }
  .creative-grid {
    grid-template-columns:1fr;
    gap:32px;
  }
  .creative-copy h2 {
    font-size:40px;
  }
  .creative-copy>p {
    font-size:15px;
  }
  .creative-copy>.experiment-note {
    font-size: 12px;
  }
  .design-playground {
    aspect-ratio:1.08;
    padding:26px;
    max-width:450px;
    width:100%;
  }
  .poster-type {
    font-size:20vw;
    letter-spacing:-5px;
    padding:25px 0 29px;
  }
  .poster-meta,.poster-footer {
    font-size: 12px;
  }
  .video-grid {
    grid-template-columns:1fr;
    gap:30px;
  }
  .video-copy h2 {
    font-size:49px;
  }
  .video-copy>p {
    font-size:15px;
  }
  .video-poster>img {
    aspect-ratio:16/10;
  }
  .stories-grid {
    grid-template-columns:1fr;
    gap:16px;
  }
  .quote-card {
    padding:28px;
  }
  .quote-card blockquote {
    min-height:0;
    font-size:21px;
    margin-bottom:30px;
  }
  .quote-card figcaption {
    align-items:center;
    gap:12px;
  }
  .quote-card figcaption strong {
    font-size:13px;
  }
  .quote-card figcaption div>span {
    font-size: 12px;
  }
  .avatar {
    width:38px;
    height:38px;
    font-size: 12px;
  }
  .quote-card>a {
    font-size: 12px;
  }
  .source-note {
    font-size: 12px;
    line-height:1.8;
  }
  .faq-section {
    padding-top:3px;
  }
  .faq-list summary {
    font-size:14px;
  }
  .download-content h2 {
    font-size:55px;
    letter-spacing:-2.5px;
  }
  .download-content>p {
    max-width:270px;
    margin-inline:auto;
    font-size:15px;
  }
  .download-note {
    font-size: 12px;
    max-width:240px;
    margin:17px auto 0;
  }
  .download-content .section-kicker {
    font-size: 12px;
    letter-spacing:1px;
  }
  .footer-top .brand-logo {
    width:150px;
  }
  .footer-top>a:last-child {
    font-size: 12px;
    gap:7px;
  }
  .footer-bottom {
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }
  .footer-bottom>span {
    text-align:left;
  }
  .footer-bottom>span br {
    display:none;
  }
  .media-dialog {
    width:calc(100% - 20px);
  }
  .dialog-bar {
    padding:11px 14px;
  }
  .dialog-bar h2 {
    font-size:14px;
  }
  .video-description {
    font-size: 12px;
    padding:0 14px;
  }
}

@media(prefers-reduced-motion:reduce) {
  .js-motion .reveal {
    opacity:1;
    transform:none;
  }
}

.feature-image > img {
  object-fit: contain;
  padding: 15px;
}

.image-vector {
  background: #e8e3f4;
}

.image-photo {
  background: #e2efea;
}

.image-layout {
  background: #f4e7d9;
}


/* Comfortable reading sizes; small type is reserved for metadata. */
.section-heading > p, .feature-body p, .creative-copy > p, .video-copy > p, .faq-answer {
  font-size: 16px;
}

.desktop-nav, .feature-body a, .workspace-tabs button, .watch-button, .faq-list summary {
  font-size: 14px;
}

.eyebrow {
  flex-wrap: wrap;
}

.creative-copy > .experiment-note {
  font-size: 12px;
}

.feature-body p {
  min-height: 88px;
}

@media(max-width:1150px) {
  .feature-body p {
    min-height: 116px;
  }
}

@media(max-width:800px) {
  .feature-grid, .stories-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-image {
    aspect-ratio: 1.6;
  }
  .feature-body p, .quote-card blockquote {
    min-height: 0;
  }
  .quote-card blockquote {
    font-size: 21px;
  }
  .quote-card {
    padding: 28px;
  }
  .creative-grid {
    grid-template-columns: 1fr;
  }
  .design-playground {
    aspect-ratio: 1.08;
    max-width: 520px;
    width: 100%;
  }
  .poster-type {
    font-size: clamp(70px, 14vw, 98px);
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-poster > img {
    aspect-ratio: 16/10;
  }
}

@media(max-width:580px) {
  .workspace-tabs button {
    font-size: 12px;
  }
  .hero h1 {
    font-size: clamp(45px, 12vw, 60px);
  }
  .poster-type {
    font-size: 20vw;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: .7px;
  }
  .new-label {
    font-size: 10px;
  }
  .workspace-description > span {
    font-size: 12px;
  }
}


/* Download actions: one clear primary action, accessible across screen sizes. */
.cta-button {
  min-height: 52px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.header-download.cta-button {
  min-height: 48px;
  padding: 12px 18px;
  font-size: 14px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 16px 22px;
}

.hero-actions .download-cta {
  min-height: 66px;
  min-width: 300px;
  padding: 19px 25px;
  font-size: 17px;
  box-shadow: 0 7px 22px #4d992329;
}

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

.hero-actions .watch-button {
  min-height: 44px;
  color: #59634f;
  font-size: 13px;
  font-weight: 400;
}

.trial-note {
  color: #626d59;
  line-height: 1.6;
}

.workspace-download {
  max-width: 1070px;
  margin: 34px auto 0;
  padding-top: 27px;
  border-top: 1px solid #d8e1d0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.workspace-download p {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -.4px;
  color: #34432b;
}

.download-content .cta-button {
  min-height: 64px;
  padding: 18px 29px;
  font-size: 17px;
}

.mobile-download,
.mobile-download[hidden] {
  display: none;
}

@media (max-width: 800px) {
  .header-download.cta-button {
    min-height: 44px;
    font-size: 13px;
    padding: 11px 13px;
  }

  .workspace-download {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .mobile-download:not([hidden]) {
    display: block;
    position: fixed;
    inset: auto 0 0;
    z-index: 25;
    background: #fffffff5;
    backdrop-filter: blur(16px);
    border-top: 1px solid #dce5d5;
    box-shadow: 0 -6px 25px #24301a0c;
    padding: 12px 20px max(12px, env(safe-area-inset-bottom));
  }

  .mobile-download-inner {
    max-width: 540px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  .mobile-download p {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    margin: 0;
  }

  .mobile-download strong {
    font-size: 15px;
  }

  .mobile-download p > span {
    font-size: 12px;
    color: #738168;
  }

  .mobile-download .cta-button {
    min-height: 52px;
    font-size: 14px;
    padding: 13px 17px;
    gap: 5px;
  }

  .mobile-download .cta-button > span {
    margin-left: 7px;
  }

  body.download-dock-visible {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  html {
    scroll-padding-bottom: 95px;
  }
}

@media (max-width: 580px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }

  .hero-actions .download-cta {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    font-size: 16px;
    padding: 18px 16px;
  }

  .hero-actions .watch-button {
    align-self: flex-start;
  }

  .workspace-download p {
    font-size: 19px;
  }

  .workspace-download .cta-button,
  .download-content .cta-button {
    width: 100%;
    min-width: 0;
    font-size: 16px;
    padding-inline: 16px;
  }
}

@media (max-width: 380px) {
  .mobile-download p {
    display: none;
  }

  .mobile-download .cta-button {
    width: 100%;
  }
}
