:root {
  --primary: #652dd9;
  --primary-dark: #4d20a8;
  --primary-light: #8b5ff0;
  --bg: #ffffff;
  --bg-muted: #f9fafb;
  --text: #1f2937;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius-btn: 10px;
  --radius-card: 18px;
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.15);
  --transition: 0.3s ease;
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
}

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

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

main {
  padding-top: 80px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #c4b5fd 15%, var(--primary) 60%, #1f2937 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-size: 12px;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

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

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

.nav-cta {
  padding: 8px 18px;
  border-radius: var(--radius-btn);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(101, 45, 217, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(101, 45, 217, 0.4);
}

/* Mobile nav */

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-toggle span::before {
  transform: translateY(-5px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-toggle.open span {
  background: transparent;
}

.nav-toggle.open span::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle.open span::after {
  transform: translateY(0) rotate(-45deg);
}

.nav-links-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 0 16px;
  gap: 8px;
}

.nav-links-mobile a {
  padding: 6px 0;
  color: var(--text-muted);
}

/* Hero (index) */

.hero {
  padding: 72px 0 96px;
  background: radial-gradient(circle at top left, #ede9fe 0, #f9fafb 40%, #ffffff 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  background: rgba(101, 45, 217, 0.06);
  border-radius: 999px;
  border: 1px solid rgba(101, 45, 217, 0.15);
  margin-bottom: 16px;
}

.hero-badge-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge-text {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-title {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-metas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-meta-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #ede9fe;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn-primary {
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 16px 35px rgba(101, 45, 217, 0.35);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(101, 45, 217, 0.45);
}

.btn-secondary {
  padding: 11px 20px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #ffffff;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-secondary:hover {
  background: #f3f4f6;
  border-color: #94a3b8;
  transform: translateY(-1px);
}

.hero-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* Hero visual */

.hero-visual {
  position: relative;
}

.hero-device {
  border-radius: 28px;
  background: #0b1020;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e5e7eb;
  font-size: 11px;
  margin-bottom: 12px;
}

.hero-timer-card {
  background: radial-gradient(circle at top, #4c1d95 0, #020617 50%, #020617 100%);
  border-radius: 22px;
  padding: 22px 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.hero-timer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 12px;
}

.hero-timer-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 11px;
}

.hero-timer-count {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.hero-timer-label {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 16px;
}

.hero-timer-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
  margin-bottom: 16px;
}

.hero-timer-progress-inner {
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, #a855f7, #f97316, #22c55e);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 10px;
}

.hero-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-floating-card {
  position: absolute;
  right: -10px;
  bottom: -14px;
  width: 180px;
  border-radius: 18px;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 10px 12px;
  color: #e5e7eb;
  font-size: 11px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
}

.hero-floating-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-floating-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}

.hero-floating-row span:last-child {
  color: #a5b4fc;
}

/* Floating images */

.hero-image-strip {
  position: absolute;
  inset: auto auto -26px -32px;
  display: flex;
  gap: 10px;
}

.hero-image-strip img {
  width: 92px;
  height: 68px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(15, 23, 42, 0.9);
}

/* Section generic */

.section {
  padding: 80px 0;
}

.section-muted {
  background: var(--bg-muted);
}

.section-header {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  margin: 0 0 10px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
}

/* Features */

.features-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

.features-flow {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.feature-step-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.feature-step-body h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.feature-step-body p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.feature-step-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.features-image-card {
  border-radius: var(--radius-card);
  background: #ffffff;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.features-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.features-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: var(--text-muted);
}

/* How it works */

.steps-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.steps-list {
  position: relative;
  padding-left: 20px;
}

.steps-list::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(101, 45, 217, 0.6), rgba(129, 140, 248, 0.2));
}

.step-item {
  position: relative;
  padding-left: 14px;
  margin-bottom: 20px;
}

.step-index {
  position: absolute;
  left: -20px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ede9fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--primary-dark);
  font-weight: 600;
}

.step-item h3 {
  font-size: 16px;
  margin: 0 0 4px;
}

.step-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Scenes */

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

.scene-card {
  border-radius: 18px;
  background: #ffffff;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scene-image {
  border-radius: 12px;
  overflow: hidden;
}

.scene-label {
  font-size: 13px;
  font-weight: 600;
}

.scene-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Testimonials */

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

.testimonial-card {
  border-radius: 18px;
  background: #ffffff;
  padding: 18px;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.testimonial-quote {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
}

.testimonial-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonial-mark {
  position: absolute;
  right: 16px;
  top: 10px;
  font-size: 40px;
  color: rgba(148, 163, 184, 0.2);
}

/* Download strip (home) */

.download-strip {
  margin-top: 40px;
  border-radius: 20px;
  padding: 18px 20px;
  background: radial-gradient(circle at left, rgba(101, 45, 217, 0.15) 0, #111827 50%);
  color: #e5e7eb;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.download-strip h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.download-strip p {
  margin: 0;
  font-size: 13px;
  color: #cbd5f5;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.store-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.store-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.store-btn span {
  display: block;
}

/* About page */

.about-hero {
  padding: 72px 0 40px;
  background: linear-gradient(135deg, #f5f3ff, #eef2ff);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-hero-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-section-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

.timeline {
  border-left: 2px solid rgba(148, 163, 184, 0.7);
  padding-left: 16px;
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
}

.timeline-dot {
  position: absolute;
  left: -19px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #eef2ff;
  border: 2px solid var(--primary);
}

.timeline-year {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.timeline-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Terms & Privacy */

.legal-hero {
  padding: 60px 0 32px;
  background: #f9fafb;
}

.legal-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 14px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}

.legal-badge {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
}

.legal-summary-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.legal-summary-text {
  font-size: 14px;
  color: var(--text-muted);
}

.legal-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 14px;
}

.legal-section-title {
  font-size: 18px;
  margin: 20px 0 6px;
}

.legal-list {
  padding-left: 18px;
}

/* Contact */

.contact-hero {
  padding: 70px 0 40px;
  background: linear-gradient(120deg, #f5f3ff, #f9fafb);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: flex-start;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.form-input,
.form-textarea,
.form-file {
  width: 100%;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(101, 45, 217, 0.2);
}

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

.form-helper {
  font-size: 12px;
  color: var(--text-muted);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 12px;
}

.checkbox-row input {
  margin-top: 2px;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.form-status {
  font-size: 12px;
}

.form-status.success {
  color: #16a34a;
}

.form-status.error {
  color: #dc2626;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.info-row-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-row-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Download */

.download-hero {
  padding: 70px 0 40px;
  background: radial-gradient(circle at top, #ede9fe 0, #f9fafb 35%, #ffffff 100%);
}

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

.device-showcase {
  border-radius: 22px;
  padding: 18px;
  background: #020617;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}

.device-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.qr-and-labels {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.qr-block img {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  background: #111827;
}

.qr-caption {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
}

.requirements-card {
  border-radius: 18px;
  background: #ffffff;
  padding: 16px 18px;
  border: 1px solid var(--border);
  margin-top: 16px;
}

.requirements-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.requirements-card ul {
  padding-left: 18px;
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.download-steps {
  margin-top: 16px;
}

.download-step {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
}

.download-step-index {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #c7d2fe;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.download-meta-link {
  font-size: 13px;
  margin-top: 10px;
}

/* Footer */

footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 20px;
  background: #ffffff;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.footer-logo-name {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 14px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-meta {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* Utilities */

.text-accent {
  color: var(--primary-dark);
}

.text-accent:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 1024px) {
  .hero-grid,
  .features-layout,
  .steps-layout,
  .about-grid,
  .about-section-grid,
  .contact-layout,
  .download-grid,
  .download-strip {
    grid-template-columns: 1fr;
  }

  .download-strip {
    text-align: left;
  }

  .store-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 60px;
  }

  main {
    padding-top: 68px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links-mobile.show {
    display: flex;
  }

  .hero {
    padding: 46px 0 64px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .section {
    padding: 56px 0;
  }

  .scene-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .download-strip {
    padding: 16px;
  }
}

