:root {
  color-scheme: light;
  --bg: #f7f3ee;
  --surface: #fffaf3;
  --ink: #252321;
  --muted: #6b625a;
  --line: #e6ded4;
  --coral: #ee6f5f;
  --mint: #91d7c3;
  --charcoal: #171717;
  --gold: #f2bc5d;
  --shadow: 0 22px 60px rgba(37, 35, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

.topbar {
  align-items: center;
  background: rgba(247, 243, 238, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 222, 212, 0.8);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 5;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  border-radius: 50%;
  display: block;
  flex: 0 0 34px;
  height: 34px;
  overflow: hidden;
  width: 34px;
}

.brand-logo {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  height: 40px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate(-3px, -3px);
  width: 40px;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(30px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  margin-left: auto;
  margin-right: auto;
  max-width: 1680px;
  padding: clamp(34px, 6vw, 86px) clamp(18px, 5vw, 72px);
  width: 100%;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.94;
  margin-bottom: 22px;
  max-width: 760px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  line-height: 1.6;
}

.lead {
  font-size: clamp(18px, 2vw, 22px);
  max-width: 640px;
}

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

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

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

.button.secondary {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-media {
  align-items: center;
  display: flex;
  justify-content: center;
}

.product-frame {
  background: transparent;
  min-width: 0;
}

.hero-media img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: auto;
  max-height: 68vh;
  object-fit: contain;
  width: min(100%, 640px);
}

.section {
  margin-left: auto;
  margin-right: auto;
  max-width: 1680px;
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
  width: 100%;
}

.section-head {
  margin-bottom: 28px;
  max-width: 700px;
}

.design-grid,
.package-grid {
  display: grid;
  gap: 18px;
}

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

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

.design-card,
.package-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.sticker-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.design-image {
  aspect-ratio: auto;
  background: #f2ede6;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(37, 35, 33, 0.1);
  height: auto;
  margin-bottom: 8px;
  object-fit: contain;
  width: 100%;
}

.sticker-image {
  aspect-ratio: auto;
  max-height: none;
}

.sticker-card h3,
.sticker-card p {
  margin-bottom: 0;
}

.sticker-card p {
  color: var(--muted);
  font-weight: 800;
}

.split {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.flow-visual img {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(37, 35, 33, 0.1);
  display: block;
  height: auto;
  width: 100%;
}

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

.guide-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-rows: auto 1fr;
  padding: 20px;
}

.guide-step span {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.guide-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.guide-step p {
  margin-bottom: 0;
}

.package-card h3 {
  font-size: 42px;
}

.package-label {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.package-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
  transform: translateY(-10px);
}

.package-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.package-card.featured .package-label {
  color: var(--gold);
}

.order-section {
  align-items: center;
  background: var(--surface);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  margin-top: 30px;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.order-section h2 {
  max-width: 660px;
}

.order-section p {
  max-width: 660px;
}

.tap-page {
  background:
    linear-gradient(135deg, rgba(145, 215, 195, 0.3), transparent 38%),
    linear-gradient(315deg, rgba(238, 111, 95, 0.24), transparent 42%),
    var(--bg);
}

.tap-shell {
  align-items: center;
  display: flex;
  min-height: 100vh;
  padding: clamp(22px, 5vw, 56px);
}

.tap-profile {
  margin: 0 auto;
  max-width: 560px;
  text-align: center;
  width: 100%;
}

.tap-avatar {
  align-items: center;
  background: var(--ink);
  border: 6px solid var(--surface);
  border-radius: 50%;
  box-shadow: var(--shadow);
  color: white;
  display: inline-flex;
  font-size: 30px;
  font-weight: 900;
  height: 108px;
  justify-content: center;
  margin-bottom: 22px;
  width: 108px;
}

.tap-avatar.has-photo {
  overflow: hidden;
  padding: 0;
}

.tap-avatar.has-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.photo-preview {
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(37, 35, 33, 0.12);
  height: 108px;
  object-fit: cover;
  width: 108px;
}

.tap-profile h1 {
  font-size: clamp(38px, 9vw, 64px);
  line-height: 0.98;
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}

.tap-profile .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}

.tap-links {
  display: grid;
  gap: 12px;
  margin: 30px auto 22px;
  max-width: 460px;
}

.tap-link {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(37, 35, 33, 0.08);
  display: flex;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 18px;
  text-align: left;
}

.tap-link span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.tap-link strong {
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  padding: 8px 12px;
}

.tap-link.whatsapp strong {
  background: rgba(145, 215, 195, 0.46);
}

.tap-link.instagram strong {
  background: rgba(238, 111, 95, 0.24);
}

.tap-link.tiktok strong {
  background: rgba(37, 35, 33, 0.1);
}

.tap-link.facebook strong {
  background: rgba(66, 103, 178, 0.16);
}

.tap-link.linkedin strong {
  background: rgba(10, 102, 194, 0.16);
}

.tap-link.website strong {
  background: rgba(242, 188, 93, 0.32);
}

.tap-link.google-review strong {
  background: rgba(242, 188, 93, 0.48);
}

.tap-link.form strong {
  background: rgba(242, 188, 93, 0.42);
}

.tap-link.contact strong {
  background: rgba(145, 215, 195, 0.28);
}

.tap-home {
  color: var(--muted);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  margin-top: 10px;
}

.tap-message {
  font-size: 14px;
  margin: 10px auto 0;
  max-width: 460px;
}

.edit-shell {
  align-items: center;
  display: flex;
  min-height: 100vh;
  padding: clamp(22px, 5vw, 56px);
}

.edit-panel {
  margin: 0 auto;
  max-width: 680px;
  width: 100%;
}

.edit-panel h1 {
  font-size: clamp(38px, 8vw, 64px);
  line-height: 0.98;
  max-width: 620px;
}

.profile-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding: clamp(20px, 4vw, 30px);
}

.profile-type-picker {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-type-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 6px;
  padding: 14px;
}

.profile-type-card input {
  height: 18px;
  min-height: 18px;
  padding: 0;
  width: 18px;
}

.profile-type-card span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.profile-type-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.profile-type-card:has(input:checked) {
  border-color: var(--ink);
  box-shadow: 0 10px 26px rgba(37, 35, 33, 0.08);
}

.profile-form label {
  color: var(--ink);
  display: grid;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
}

.profile-form .personal-field[hidden],
.profile-form .business-field[hidden] {
  display: none !important;
}

.profile-form input,
.profile-form textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.profile-form textarea {
  min-height: 92px;
  resize: vertical;
}

.profile-form button {
  border: 0;
  cursor: pointer;
  margin-top: 4px;
}

.profile-form button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.form-status {
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.form-status[data-type="success"] {
  color: #2f8c6f;
}

.form-status[data-type="error"] {
  color: var(--coral);
}

.edit-links {
  margin-top: 18px;
}

.share-panel {
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: white;
  margin-top: 18px;
  padding: clamp(18px, 4vw, 24px);
}

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

.share-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.share-label-spaced {
  margin-top: 22px;
}

.share-url {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: white;
  overflow-wrap: anywhere;
  padding: 12px 14px;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.share-actions .button.primary {
  background: white;
  border: 0;
  color: var(--ink);
}

.share-actions .button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    gap: 14px;
  }

  .hero,
  .split,
  .order-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: 0;
  }

  .hero-media img {
    max-height: 70vh;
    width: 100%;
  }

  .design-grid,
  .guide-list,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: none;
  }

  .order-actions {
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .topbar {
    position: static;
  }

  .nav {
    font-size: 13px;
  }

  h1 {
    font-size: 42px;
  }

  .button {
    width: 100%;
  }

  .tap-shell {
    align-items: flex-start;
  }

  .tap-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    padding: 14px 16px;
  }

  .profile-type-picker {
    grid-template-columns: 1fr;
  }
}

