:root {
  --accent: #6ba882;
  --ink: #e8e6e3;
  --ink-soft: #c4c2bf;
  --muted: #9a9895;
  --paper: #1a1a1a;
  --surface: #242424;
  --border: #333;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  --radius: 20px;
  --radius-sm: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h120v120H0z' fill='none'/%3E%3Cpath d='M0 12h120M0 60h120M0 108h120' stroke='%236ba882' stroke-opacity='0.12' stroke-width='1'/%3E%3Cpath d='M12 0v120M60 0v120M108 0v120' stroke='%23e8e6e3' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.2px;
}

.brand img {
  width: clamp(220px, 28vw, 320px);
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 500;
  color: var(--ink-soft);
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-links a:hover {
  border-color: var(--accent);
}

/* Dropdown menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle {
  border-bottom-color: var(--accent);
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  padding-top: 16px;
  min-width: 180px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  border-bottom: none;
  color: var(--ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(107, 168, 130, 0.1);
  color: var(--ink);
  border-bottom: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
}

.btn.ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.hero {
  padding: 90px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  margin: 16px 0;
  line-height: 1.1;
}

.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 480px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

.meta-title {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 4px;
  font-weight: 600;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-top: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.capability-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 32px;
  display: grid;
  gap: 12px;
}

.capability-list li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-soft);
}

.capability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--ink);
}

.hero-card-footer a {
  color: var(--accent);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 640px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 12px 0 16px;
}

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

.card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.card ul {
  padding-left: 18px;
  color: var(--muted);
}

.work-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(107, 168, 130, 0.15);
  color: var(--accent);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 20px;
}

.step {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
}

.step-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.pillars {
  display: grid;
  gap: 18px;
}

.pillar {
  padding: 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--paper);
}

.contact {
  padding-bottom: 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(107, 168, 130, 0.35);
  border-color: var(--accent);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer-note {
  margin-top: 16px;
  color: var(--muted);
  max-width: 320px;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }

  .hero-grid,
  .card-grid,
  .work-grid,
  .process-grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 720px) {
  .hamburger {
    display: flex;
  }

  .nav-links,
  .nav > .btn {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    gap: 16px;
  }

  .nav-links.active a {
    padding: 8px 0;
  }

  .nav-links.active .mobile-cta {
    display: block;
    margin-top: 8px;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    min-width: 0;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 6px 0;
  }

  .nav-dropdown-menu a:hover {
    background: transparent;
  }

  .nav-dropdown-toggle {
    padding: 8px 0;
  }

  .brand img {
    width: clamp(180px, 50vw, 220px);
    height: auto;
  }

  .nav {
    justify-content: space-between;
    position: relative;
  }

  .hero {
    padding-top: 60px;
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Page hero for inner pages */
.page-hero {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
  padding: 20px 0 10px;
}

.page-hero h1 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 10px 0;
  line-height: 1.2;
}

.page-hero .lead {
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Smaller hero padding for inner pages */
.hero:has(.page-hero) {
  padding: 50px 0 30px;
}

/* Pillars grid for about page */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.hero-meta-vertical {
  display: grid;
  gap: 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Service detail layout */
.service-detail {
  display: grid;
  gap: 32px;
}

.service-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.service-header h2 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 12px;
}

.service-header .lead {
  margin: 0;
}

.service-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.service-description {
  color: var(--ink-soft);
  line-height: 1.7;
}

.service-description h3 {
  color: var(--ink);
  margin-top: 0;
}

/* Case study layout */
.case-study {
  display: grid;
  gap: 28px;
}

.case-study-header {
  display: grid;
  gap: 12px;
}

.case-study-header h2 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0;
}

.case-study-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}

.case-study-description {
  color: var(--ink-soft);
  line-height: 1.7;
}

.case-study-description h3 {
  color: var(--ink);
  margin-top: 24px;
}

.case-study-description h3:first-child {
  margin-top: 0;
}

.results-list {
  padding-left: 18px;
  margin: 12px 0 0;
}

.results-list li {
  margin-bottom: 8px;
}

.meta-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

/* Featured case study with mockup */
.featured-content {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.case-study-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-study-mockup {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: var(--radius);
}

.case-study-meta-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

.case-study-meta-bar > div {
  color: var(--muted);
}

.app-store-link {
  display: inline-block;
  margin-top: 20px;
}

.app-store-badge {
  height: 40px;
  width: auto;
  transition: transform 0.2s ease;
}

.app-store-badge:hover {
  transform: translateY(-2px);
}

/* Browser frame for website screenshots */
.browser-frame {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #2a2a2a;
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.browser-dots span:first-child {
  background: #ff5f57;
}

.browser-dots span:nth-child(2) {
  background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
  background: #28ca41;
}

.browser-url {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--paper);
  padding: 6px 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
  margin-right: 60px;
}

.browser-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

/* Highlight result for special achievements */
.highlight-result {
  background: rgba(107, 168, 130, 0.12);
  padding: 14px 18px;
  border-radius: 8px;
  margin-top: 16px;
  border-left: 3px solid var(--accent);
  color: var(--ink);
}

/* Featured work cards on homepage */
.featured-work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.featured-work-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.featured-work-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.featured-work-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.featured-work-content {
  padding: 24px;
}

.featured-work-content h3 {
  margin: 0 0 8px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
}

.featured-work-highlight {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 12px;
}

.featured-work-content p {
  color: var(--ink-soft);
  margin: 0 0 16px;
  line-height: 1.6;
}

.read-more {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
}

.featured-work-card:hover .read-more {
  text-decoration: underline;
}

.work-cta {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 980px) {
  .pillars-grid,
  .service-content,
  .case-study-content,
  .featured-content,
  .featured-work-grid {
    grid-template-columns: 1fr;
  }

  .service-header {
    flex-direction: column;
    gap: 12px;
  }

  .case-study-meta-bar {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-study-visual {
    order: -1;
  }
}

/* Offering section layout */
.offering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.offering-grid.reverse .offering-description {
  order: 2;
}

.offering-grid.reverse .offering-visual {
  order: 1;
}

.offering-description h2 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin: 0 0 16px;
}

.offering-description .lead {
  margin-bottom: 20px;
}

.offering-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.offering-features li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-soft);
}

.offering-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.offering-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.offering-mockup {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  border-radius: var(--radius);
}

@media (max-width: 980px) {
  .offering-grid {
    grid-template-columns: 1fr;
  }

  .offering-grid.reverse .offering-description,
  .offering-grid.reverse .offering-visual {
    order: unset;
  }

  .offering-visual {
    order: -1;
  }
}

/* Phone mockup frame */
.phone-frame {
  position: relative;
  width: 280px;
  height: 572px;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), inset 0 0 0 2px #333;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-screen-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
  background: var(--surface);
}

/* Feature showcase layout */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-showcase.reverse .feature-text {
  order: 2;
}

.feature-showcase.reverse .feature-visual {
  order: 1;
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-text h2 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin: 0 0 16px;
}

.feature-text .lead {
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.5;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

@media (max-width: 980px) {
  .feature-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-showcase.reverse .feature-text,
  .feature-showcase.reverse .feature-visual {
    order: unset;
  }

  .feature-visual {
    order: -1;
  }

  .phone-frame {
    width: 240px;
    height: 490px;
    border-radius: 34px;
    padding: 10px;
  }

  .phone-notch {
    top: 10px;
    width: 86px;
    height: 24px;
    border-radius: 0 0 14px 14px;
  }

  .phone-screen {
    border-radius: 24px;
  }
}

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

  .btn {
    transition: none;
  }
}
