:root {
  --primary: #17171c;
  --ink: #212121;
  --deep-green: #003c33;
  --canvas: #ffffff;
  --soft-stone: #eeece7;
  --hairline: #d9d9dd;
  --border-light: #e5e7eb;
  --muted: #93939f;
  --slate: #616161;
  --coral: #ff7759;
  --focus-blue: #4c6ee6;
  --form-focus: #9b60aa;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --radius-pill: 32px;
  --container: 1180px;
  --hero-phone-width: min(100%, 430px);
  --hero-phone-tablet-width: min(100%, 410px);
  --hero-phone-ratio: 9 / 18.3;
  --hero-phone-rotation: 4deg;
  --hero-phone-scale: 0.78;
  --hero-phone-offset-y: 0;
  --hero-phone-screen-top: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(23, 23, 28, 0.42) var(--soft-stone);
  scrollbar-width: thin;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: var(--soft-stone);
}

html::-webkit-scrollbar-thumb {
  border: 3px solid var(--soft-stone);
  border-radius: var(--radius-pill);
  background: rgba(23, 23, 28, 0.42);
}

html::-webkit-scrollbar-thumb:hover {
  background: rgba(23, 23, 28, 0.62);
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Unica77 Cohere Web", Inter, Arial, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

section {
  scroll-margin-top: 76px;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section--open {
  padding-top: 96px;
}

.section--stone {
  background: var(--soft-stone);
}

.section--dark {
  background: var(--deep-green);
  color: #ffffff;
}

.section--offer {
  background: #f1f5ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  min-height: 60px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex: 0 0 auto;
  border-radius: 30px;
  color: var(--ink);
  padding: 7px 12px;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.site-nav a:hover {
  background: var(--soft-stone);
}

.site-nav a.is-active {
  background: rgba(23, 23, 28, 0.1);
  color: var(--primary);
}

.language-toggle {
  display: inline-flex;
  min-width: 50px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  border-radius: 30px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
}

.language-toggle:hover {
  background: var(--soft-stone);
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-start;
  padding: 0 0 56px;
}

.hero__grid,
.demo-grid,
.builder-grid,
.offer-grid,
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.hero__grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.82fr);
  gap: 56px;
}

.hero__copy {
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-family: CohereMono, Arial, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: CohereText, "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 28px;
  font-size: clamp(42px, 5.7vw, 76px);
  line-height: 1;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

p {
  color: var(--slate);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.lead {
  font-size: 18px;
  line-height: 1.4;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}

.actions--center {
  justify-content: center;
}

.author-actions {
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.button--primary {
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #ffffff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
}

.section--dark .button--primary {
  background: #ffffff;
  color: var(--primary);
}

.section--dark .contact-form .button--primary {
  background: var(--primary);
  color: #ffffff;
}

.button--secondary,
.text-link {
  min-height: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  padding: 6px 0;
  font-size: 16px;
}

.section--dark .button--secondary,
.section--dark .text-link {
  color: #ffffff;
}

.author-link {
  min-height: 44px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
}

.author-link:hover {
  background: var(--canvas);
}

.demo-card,
.price-card,
.contact-form {
  border-radius: var(--radius-lg);
  background: #ffffff;
  color: var(--ink);
}

.hero-mockup {
  min-height: 0;
  overflow: visible;
  transform: translateY(var(--hero-phone-offset-y)) rotate(var(--hero-phone-rotation)) scale(var(--hero-phone-scale));
  transform-origin: 50% 50%;
}

.iphone-mockup {
  /* Locked hero phone composition. Keep the internal viewport stable; the wrapper handles presentation scale/rotation. */
  position: relative;
  width: var(--hero-phone-width);
  aspect-ratio: var(--hero-phone-ratio);
  margin: 0 auto;
  border-radius: 54px;
  background: #111116;
  padding: 12px;
}

.iphone-mockup::before {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50px;
  content: "";
  pointer-events: none;
}

.iphone-mockup__bezel {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 43px;
  background: #ffffff;
  padding-top: var(--hero-phone-screen-top);
}

.iphone-mockup__island {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 98px;
  height: 29px;
  border-radius: 999px;
  background: #0b0b0d;
  transform: translateX(-50%);
  pointer-events: none;
}

.iphone-mockup__status {
  position: absolute;
  top: 16px;
  right: 0;
  left: 0;
  z-index: 3;
  color: #111116;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.iphone-mockup__time {
  position: absolute;
  left: 38px;
  font-size: 15px;
  font-weight: 700;
  line-height: 12px;
}

.iphone-mockup__icons {
  position: absolute;
  right: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}

.iphone-mockup__signal {
  display: inline-flex;
  align-items: end;
  gap: 2px;
  height: 12px;
}

.iphone-mockup__signal i {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: currentColor;
}

.iphone-mockup__signal i:nth-child(1) {
  height: 4px;
}

.iphone-mockup__signal i:nth-child(2) {
  height: 6px;
}

.iphone-mockup__signal i:nth-child(3) {
  height: 9px;
}

.iphone-mockup__signal i:nth-child(4) {
  height: 12px;
}

.iphone-mockup__wifi {
  position: relative;
  width: 22px;
  height: 12px;
}

.iphone-mockup__wifi,
.iphone-mockup__wifi::before,
.iphone-mockup__wifi::after {
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50% 50% 0 0;
}

.iphone-mockup__wifi::before,
.iphone-mockup__wifi::after {
  position: absolute;
  left: 50%;
  content: "";
  transform: translateX(-50%);
}

.iphone-mockup__wifi::before {
  top: 3px;
  width: 12px;
  height: 7px;
}

.iphone-mockup__wifi::after {
  top: 8px;
  width: 4px;
  height: 3px;
  border-width: 0;
  border-radius: 999px;
  background: currentColor;
}

.iphone-mockup__battery {
  position: relative;
  display: inline-flex;
  width: 23px;
  height: 12px;
  align-items: center;
  border: 1.6px solid currentColor;
  border-radius: 4px;
  padding: 2px;
}

.iphone-mockup__battery::after {
  position: absolute;
  top: 3px;
  right: -4px;
  width: 2px;
  height: 5px;
  border-radius: 0 999px 999px 0;
  background: currentColor;
  content: "";
}

.iphone-mockup__battery i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: 2px;
  background: currentColor;
}

.iphone-mockup__home {
  position: absolute;
  right: 50%;
  bottom: 10px;
  z-index: 3;
  width: 118px;
  height: 5px;
  border-radius: 999px;
  background: rgba(17, 17, 22, 0.82);
  transform: translateX(50%);
  pointer-events: none;
}

.iphone-mockup__side {
  position: absolute;
  width: 3px;
  border-radius: 999px;
  background: #0b0b0d;
}

.iphone-mockup__side--left {
  top: 132px;
  left: -3px;
  height: 76px;
}

.iphone-mockup__side--right {
  top: 188px;
  right: -3px;
  height: 104px;
}

.hero-demo-scene {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  color: #1f1f1f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  pointer-events: none;
}

.hero-demo-scene * {
  box-sizing: border-box;
  font-family: inherit;
  letter-spacing: 0;
}

.hero-demo-scene__topbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 16px;
  border-bottom: 1px solid #ededed;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.hero-demo-scene__back {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #c7c7c7;
  border-radius: 8px;
  background: #ffffff;
  color: #1f1f1f;
}

.hero-demo-scene__back svg {
  width: 20px;
  height: 20px;
}

.hero-demo-scene__brand {
  min-width: 0;
}

.hero-demo-scene__kicker {
  display: block;
  color: #fa520f;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-demo-scene__brand strong {
  display: block;
  overflow: hidden;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-demo-scene__logo {
  justify-self: end;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  color: #6a6a6a;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
}

.hero-demo-scene__main {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 24px 16px 32px;
}

.hero-demo-scene__intro {
  display: grid;
  gap: 12px;
}

.hero-demo-scene__intro h2 {
  margin: 0;
  color: #1f1f1f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.05;
}

.hero-demo-scene__summary {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid #e6d5a8;
  border-radius: 12px;
  background: #fff8e0;
}

.hero-demo-scene__summary div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.hero-demo-scene__summary > div > span {
  color: #6a6a6a;
  font-size: 13px;
  line-height: 1.4;
}

.hero-demo-scene__summary strong {
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: right;
}

.hero-demo-scene__summary-specialist {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.hero-demo-scene__summary-avatar {
  display: block;
  width: 28px;
  height: 28px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 9999px;
  background: #fff0c2;
}

.hero-demo-scene__summary-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-demo-scene__step {
  display: grid;
  gap: 16px;
}

.hero-demo-scene__step-header {
  display: grid;
  gap: 4px;
}

.hero-demo-scene__step h3 {
  margin: 0;
  color: #1f1f1f;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

.hero-demo-scene__month {
  margin: 0;
  color: #6a6a6a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-demo-scene__date-strip {
  display: grid;
  grid-auto-columns: 74px;
  grid-auto-flow: column;
  gap: 8px;
  margin: 0 -16px;
  padding: 0 16px 4px;
  overflow: hidden;
}

.hero-demo-scene__date-strip span {
  min-height: 84px;
  padding: 10px;
  border: 1px solid #ededed;
  border-radius: 12px;
  background: #ffffff;
  color: #1f1f1f;
  text-align: left;
}

.hero-demo-scene__date-strip .is-selected,
.hero-demo-scene__time-grid .is-selected {
  border-color: #1f1f1f;
  background: #1f1f1f;
  color: #ffffff;
}

.hero-demo-scene__date-strip small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-demo-scene__date-strip b {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
}

.hero-demo-scene__date-strip small:last-child {
  margin-top: 2px;
  font-weight: 400;
}

.hero-demo-scene__time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-demo-scene__time-grid span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid #ededed;
  border-radius: 8px;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 500;
}

.hero-demo-scene__selection {
  margin: 0;
  color: #6a6a6a;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.hero-demo-scene__primary {
  display: grid;
  width: 100%;
  min-height: 48px;
  place-items: center;
  margin-top: 4px;
  padding: 10px 20px;
  border: 0;
  border-radius: 8px;
  background: #fa520f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.photo-placeholder {
  border: 1px dashed var(--hairline);
  border-radius: var(--radius-sm);
  background: #f7f7f5;
  color: var(--muted);
}

.text-block {
  max-width: 820px;
}

.text-block p {
  font-size: 18px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 48px;
}

.demo-card,
.price-card,
.contact-form {
  padding: 32px;
}

.demo-copy {
  position: relative;
  align-self: start;
  padding-top: 94px;
}

.demo-arrow {
  position: absolute;
  right: 10px;
  bottom: -250px;
  width: min(420px, 56vw);
  height: auto;
  overflow: visible;
  pointer-events: none;
  transform: rotate(4deg);
  transform-origin: 42% 50%;
}

.demo-arrow path {
  fill: none;
  stroke: rgba(23, 23, 28, 0.42);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demo-arrow__head {
  stroke-width: 2.2;
}

.demo-card {
  background: transparent;
  padding: 0;
}

.form-success {
  margin: 20px 0 0;
  color: var(--ink);
  padding: 0;
  text-align: center;
}

.form-error {
  margin: 0;
  color: #b30000;
}

.section--dark .form-success {
  color: var(--ink);
}

.contact-form.is-submitted > :not(.form-success) {
  display: none;
}

.contact-form.is-submitted {
  align-content: center;
}

.contact-form.is-submitted .form-success {
  margin: 0;
}

.demo-frame {
  width: min(100%, 430px);
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: transparent;
}

.demo-frame iframe {
  display: block;
  width: 100%;
  height: min(1480px, 110vh);
  margin: 0;
  border: 0;
  border-radius: 0;
}

.admin-preview-grid,
.feature-grid,
.included-list,
.review-grid {
  display: grid;
  gap: 24px;
}

.admin-preview-grid {
  margin-bottom: 48px;
}

.admin-preview-grid,
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-showcase-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
}

.admin-showcase-card h3 {
  width: min(100%, 340px);
  min-height: 64px;
  margin-bottom: 16px;
  text-align: center;
}

.admin-showcase-media {
  display: grid;
  place-items: center;
  min-width: 0;
  overflow: visible;
  border: 0;
  border-radius: 18px;
  background: transparent;
}

.admin-preview {
  width: min(100%, 340px);
  min-width: 0;
  aspect-ratio: 9 / 17.2;
  overflow: hidden;
  border: 1px solid #ededed;
  border-radius: var(--radius-lg);
  background: #ffffff;
  color: #1f1f1f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

.admin-preview * {
  font-family: inherit;
  letter-spacing: 0;
}

.admin-preview__topbar {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 16px;
  border-bottom: 1px solid #ededed;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  min-width: 0;
}

.admin-preview__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #c7c7c7;
  border-radius: 8px;
  background: #ffffff;
}

.admin-preview__icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.admin-preview__brand {
  min-width: 0;
}

.admin-preview__kicker {
  display: block;
  color: #fa520f;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.admin-preview__brand strong {
  display: block;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-preview__action {
  display: inline-block;
  min-height: 40px;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  background: #fa520f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.admin-preview__content {
  display: grid;
  min-width: 0;
  gap: 20px;
  padding: 24px 16px 32px;
  background: #ffffff;
}

.admin-preview__dates {
  display: grid;
  min-width: 0;
  max-width: 100%;
  grid-auto-columns: 104px;
  grid-auto-flow: column;
  gap: 8px;
  margin: 0 -16px;
  padding: 0 16px 18px;
  overflow: hidden;
}

.admin-preview__dates span {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid #ededed;
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
}

.admin-preview__dates .is-selected {
  border-color: #1f1f1f;
  background: #1f1f1f;
  color: #ffffff;
}

.admin-preview__dates small {
  display: block;
  font-size: 11px;
  line-height: 1.4;
}

.admin-preview__dates b {
  display: block;
  margin-top: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.05;
}

.admin-preview__list {
  display: grid;
  min-width: 0;
  gap: 12px;
  padding-inline: 4px;
}

.admin-preview__card {
  justify-self: center;
  width: calc(100% - 8px);
  min-width: 0;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid #ededed;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.04) 0 1px 2px;
}

.admin-preview__card--cream {
  border-color: #e6d5a8;
  background: #fff8e0;
}

.admin-preview__card-head,
.admin-preview__media-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
}

.admin-preview__card-head > div,
.admin-preview__media-head > div {
  min-width: 0;
}

.admin-preview__media-head {
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
}

.admin-preview h4,
.admin-preview p,
.admin-preview dl,
.admin-preview dd {
  margin: 0;
}

.admin-preview h4 {
  overflow-wrap: anywhere;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.admin-preview p {
  color: #6a6a6a;
  font-size: 13px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.admin-preview__card-head > span {
  display: inline-block;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid #e6d5a8;
  border-radius: 8px;
  color: #cc3a05;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.admin-preview dl {
  display: grid;
  gap: 8px;
}

.admin-preview dl div {
  display: grid;
  grid-template-columns: minmax(80px, 0.7fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 12px;
}

.admin-preview dt {
  color: #6a6a6a;
  font-size: 13px;
  line-height: 1.4;
}

.admin-preview dd {
  min-width: 0;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: right;
  overflow-wrap: anywhere;
}

.admin-preview__thumb,
.admin-preview__avatar {
  display: block;
  overflow: hidden;
  background: #fff0c2;
}

.admin-preview__thumb img,
.admin-preview__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-preview__thumb {
  width: 76px;
  height: 76px;
  border-radius: 12px;
}

.admin-preview__avatar {
  width: 60px;
  height: 60px;
  border-radius: 999px;
}

.admin-preview__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.admin-preview__buttons span {
  display: inline-block;
  min-width: 0;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid #c7c7c7;
  border-radius: 8px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.admin-preview__buttons span:last-child {
  border-color: #e6d5a8;
  color: #cc3a05;
}

.admin-preview__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.admin-preview__chips span {
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff0c2;
  color: #1f1f1f;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.feature-grid article {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 24px;
}

.feature-grid h3 {
  color: #ffffff;
}

.included-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.included-list article {
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
}

.builder-grid {
  display: block;
  max-width: 860px;
  margin: 0 auto;
}

.author-photo {
  float: left;
  width: 142px;
  height: 142px;
  margin: 8px 28px 18px 0;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
}

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

.author-content {
  max-width: none;
  padding-top: 0;
}

.author-content::after {
  display: block;
  clear: both;
  content: "";
}

.photo-placeholder {
  display: grid;
  min-height: 520px;
  place-items: center;
  border-radius: var(--radius-lg);
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
  margin: 44px 0 10px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: var(--canvas);
  box-shadow: rgba(0, 0, 0, 0.04) 0 1px 2px;
  transform-origin: 50% 50%;
}

.review-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
}

.review-stars {
  justify-self: end;
  color: var(--coral);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.review-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.review-meta {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.review-card--one {
  margin-top: 10px;
  transform: rotate(-2.4deg);
}

.review-card--two {
  margin-top: 42px;
  transform: rotate(1.7deg);
}

.review-card--three {
  margin-top: 4px;
  transform: rotate(-0.9deg);
}

.price {
  color: var(--ink);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
}

.faq {
  max-width: 920px;
}

details {
  border-top: 1px solid var(--hairline);
  padding: 24px 0;
}

details:last-child {
  border-bottom: 1px solid var(--hairline);
}

summary {
  cursor: pointer;
  font-size: 24px;
  line-height: 1.3;
}

details p {
  max-width: 760px;
  margin-top: 18px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--ink);
  padding: 13px 14px;
}

textarea {
  min-height: 48px;
  overflow: hidden;
  resize: none;
}

:focus-visible {
  outline: 3px solid var(--focus-blue);
  outline-offset: 3px;
}

input:focus,
textarea:focus {
  border-color: var(--form-focus);
  outline: none;
}

@media (min-width: 961px) {
  :root {
    --hero-phone-offset-y: -44px;
  }

  .hero__grid {
    margin-bottom: -96px;
  }

  .hero__copy {
    transform: translateY(-44px);
  }

  .section--open {
    padding-top: 48px;
  }
}

@media (max-width: 960px) {
  .hero {
    padding-top: 32px;
  }

  .hero__grid,
  .demo-grid,
  .builder-grid,
  .offer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .builder-grid {
    display: block;
  }

  .author-content {
    max-width: none;
    padding-top: 0;
  }

  .demo-arrow {
    display: none;
  }

  .admin-preview-grid,
  .feature-grid,
  .included-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-placeholder {
    min-height: 420px;
  }

  .iphone-mockup {
    width: var(--hero-phone-tablet-width);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 56px 0;
  }

  .site-header__inner {
    gap: 10px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 56px;
  }

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

  .hero .actions {
    align-items: center;
  }

  .author-photo {
    float: none;
    width: 124px;
    height: 124px;
    margin: 0 auto 24px;
  }

  .button {
    width: 100%;
  }

  .button--secondary,
  .text-link {
    width: auto;
  }

  .admin-preview-grid,
  .feature-grid,
  .included-list,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-grid {
    gap: 16px;
    margin-top: 32px;
  }

  .review-card,
  .review-card--one,
  .review-card--two,
  .review-card--three {
    margin-top: 0;
    transform: none;
  }

  .demo-card,
  .price-card,
  .contact-form {
    padding: 24px;
  }

  .demo-card {
    padding: 0;
  }
}
