ADUApp Design Updates

Unified Digital Health Passport for EU Citizens: Verifiable Credentials, GDPR-Compliant Data Sharing, and Cross-Border Interoperability

A mobile-first digital health passport that aggregates medical records, vaccination certificates, and prescriptions with tamper-proof verifiable credentials.

A

AIVO Strategic Engine

Strategic Analyst

May 29, 20268 MIN READ

Analysis Contents

Brief Summary

A mobile-first digital health passport that aggregates medical records, vaccination certificates, and prescriptions with tamper-proof verifiable credentials.

The Next Step

Build Something Great Today

Visit our store to request easy-to-use tools and ready-made templates and Saas Solutions designed to help you bring your ideas to life quickly and professionally.

Explore Intelligent PS SaaS Solutions

Want to track how AI systems and large language models are mentioning or perceiving your brand, products, or domain?

Try AI Mention Pulse – Free AI Visibility & Mention Detection Tool

See where your domain appears in AI responses and get actionable strategies to improve AI discoverability.

Static Analysis

Architecture Blueprint & Data Orchestration for a Unified Digital Health Passport

The foundational architecture for a Unified Digital Health Passport (UDHP) across EU member states rests upon three immutable pillars: decentralized identity management, verifiable credentials (VCs), and a consent-driven data exchange layer. This technical deep dive examines the core engineering decisions that ensure interoperability, security, and GDPR compliance at scale.

Core System Engineering & API Specifications

The UDHP architecture employs a hub-and-spoke model with edge computing capabilities at the national health authority level. Each member state maintains an independent Health Data Vault (HDV) that stores patient records locally, while the central EU Interoperability Gateway (EIG) manages credential issuance and verification without storing health data. This design ensures compliance with the GDPR principle of data minimization (Article 5(1)(c)) and avoids creating a centralized honeypot of sensitive health information.

System Component Architecture Table:

| Component | Primary Function | Data Retention Policy | Encryption Standard | Latency Requirement | |-----------|-----------------|----------------------|---------------------|---------------------| | National Health Data Vault (HDV) | Store patient health records | Retention per national law | AES-256-GCM at rest | < 50ms local access | | EU Interoperability Gateway (EIG) | Credential issuance/verification | Zero data storage | TLS 1.3 + Perfect Forward Secrecy | < 200ms cross-border | | Identity Wallet (Mobile/Web) | User authentication & consent | User-controlled | ECDSA with secp256k1 | < 100ms user interaction | | Verifiable Data Registry (Blockchain) | Revocation registry & schema storage | Immutable ledger | BLS12-381 signatures | < 2s confirmation |

The API specification for cross-border data requests follows HL7 FHIR R4 standards, extended with W3C Verifiable Credential Data Model v2.0. The mandatory Authorization header carries a signed JWT containing the patient’s DID (Decentralized Identifier) and a proof of consent, enabling the receiving HDV to validate the request without exposing the patient’s identity to the EIG.

FHIR Resource Mapping for Health Passport Data:

| FHIR Resource | Mandatory Fields | Optional Fields | Cardinality | |---------------|------------------|-----------------|-------------| | Patient | identifier, name, birthDate | telecom, address, generalPractitioner | 1..1 | | Immunization | vaccineCode, occurrenceDateTime, status | lotNumber, manufacturer, location | 0..* | | DiagnosticReport | status, code, effectiveDateTime | result, performer, specimen | 0..* | | Consent | status, scope, category, policyRule | period, actor, data | 1..1 per share action |

Verifiable Credentials Lifecycle & Governance

The UDHP implements three credential types, each with distinct validity periods and cryptographic protections:

  1. Identity Credential: Issued by national identity authorities (eIDAS-compliant), valid 5 years, secured with the user’s biometric binding.
  2. Health Data Credential: Issued by HDVs, valid 90 days for dynamic data (test results, vaccination status), 1 year for static data (blood type, chronic conditions).
  3. Consent Credential: Issued per data sharing request, valid 24 hours, with granular data field scoping (e.g., “COVID-19 vaccination status only”).

Credential Revocation Strategies:

| Strategy | Implementing Entity | Response Time | Use Case | |----------|-------------------|---------------|----------| | Cryptographic Accumulators | EIG | Real-time | Bulk revocation of expired credentials | | Status List 2021 | National HDV | < 1 hour | Individual credential suspension | | Zero-Knowledge Revocation | Blockchain Registry | < 10 minutes | Privacy-preserving revocation checks |

The revocation system uses a hybrid approach: cryptographic accumulators for high-frequency checks (such as airport border crossings) and Status List 2021 for administrative actions. The blockchain registry serves as an immutable audit log, recording only revocation hashes without exposing the credential contents.

GDPR-Compliant Data Sharing Framework

The consent management layer implements the legal basis of processing per GDPR Article 6(1)(a) for explicit consent and Article 9(2)(h) for health data processing in the public interest. The system uses a four-tier consent granularity:

Consent Levels and Technical Implementation:

| Level | Data Scope | Consent Type | Technical Enforcement | |-------|-----------|--------------|----------------------| | L1 | Specific disease/condition | Explicit, opt-in | Selective disclosure ZKP proofs | | L2 | All health data in category | Broad, opt-in | Homomorphic encryption queries | | L3 | Emergency access | Implied consent | Backup decryption key with 3-of-5 MPC | | L4 | De-identified research data | Opt-out available | k-anonymity (k=20) + differential privacy |

The system enforces data minimization through selective disclosure mechanisms. When a German hospital requests vaccination records for a French patient, the French HDV generates a zero-knowledge proof that confirms the patient is vaccinated against measles without revealing the vaccine brand, batch number, or administration date unless explicitly authorized by the patient’s consent credential.

Consent Credential JSON Schema (W3C Verifiable Credential):

{
  "@context": ["https://www.w3.org/2018/credentials/v1", "https://healthpassport.eu/2024/consent/v1"],
  "type": ["VerifiableCredential", "HealthDataConsent"],
  "issuer": "did:elsi:FR:health-passport-issuer",
  "issuanceDate": "2024-03-15T10:00:00Z",
  "expirationDate": "2024-03-16T10:00:00Z",
  "credentialSubject": {
    "id": "did:elsi:FR:patient-alice-123",
    "consentGivenTo": "did:elsi:DE:charite-berlin-provider",
    "dataFields": ["Immunization.vaccineCode", "Immunization.occurrenceDateTime"],
    "purpose": "COVID-19 vaccination verification for employment",
    "timeBound": "P7D",
    "granularity": "selective-disclosure"
  },
  "proof": {
    "type": "Ed25519Signature2020",
    "created": "2024-03-15T10:00:00Z",
    "verificationMethod": "did:elsi:FR:health-passport-issuer#keys-1",
    "proofPurpose": "assertionMethod",
    "proofValue": "z2Bgyo5h5...mocked-proof-value"
  }
}

Cross-Border Interoperability Protocols

The interoperability layer implements the European Electronic Health Record Exchange (EEHRx) format, extended with the International Patient Summary (IPS) profile. Each HDV maintains an OpenEHR-based architecture with FHIR R4 API endpoints for query and response.

Cross-Border Data Flow Sequence Diagram (Textual Representation):

  1. Patient Alice presents her Identity Vault to a German hospital’s admission terminal
  2. Hospital generates a consent request specifying required data fields (e.g., allergies, current medications, vaccination history)
  3. Alice approves the consent request via biometric authentication on her mobile wallet
  4. Consent credential is signed and transmitted to the German HDV
  5. German HDV forwards the signed consent to the EIG, which routes to the French HDV based on Alice’s eIDAS identifier
  6. French HDV validates the consent credential against the blockchain revocation registry
  7. French HDV generates a selective disclosure response containing only the approved fields
  8. Response is encrypted with the German hospital’s public key and transmitted via EIG
  9. German hospital decrypts and processes the health data
  10. Audit trail is recorded on both national HDVs and the EIG’s immutable audit log

The entire flow completes within 3-5 seconds under normal network conditions, with automated fallback to asynchronous response if the French HDV is temporarily unavailable. The asynchronous path stores the encrypted response in the EIG’s dead-letter queue, with automatic delivery retry every 15 minutes for up to 48 hours.

Cryptographic Key Management & Identity Binding

The identity binding mechanism uses a three-factor authentication scheme:

| Factor | Implementation | Failure Mode | Recovery Protocol | |--------|---------------|--------------|-------------------| | Possession | Hardware secure element in mobile device | Device loss | Remote key revocation + 14-day recovery period | | Inherence | Biometric template (fingerprint/FaceID) | Biometric template update | Multi-party computation (MPC) for key regeneration | | Knowledge | PIN + backup passphrase | Forgotten credentials | Social recovery with 3-of-5 trusted guardians |

Each patient’s master key is derived from these three factors using the OPRF (Oblivious Pseudorandom Function) protocol. The HDV never stores the full key material; instead, it holds key shares that combine only during authorized data access, ensuring that even a compromised HDV cannot decrypt patient data without the patient’s active participation.

Key Derivation Configuration:

key_derivation:
  algorithm: OPRF-BLS12-381
  factors:
    possession: { hardware_bound: true, attestation_level: "hardware-backed" }
    inherence: { biometric_template_hash: "SHA3-256", liveness_check: "passive" }
    knowledge: { pin_length: 6, backup_passphrase: "bip39-24-words" }
  threshold_scheme: "2-of-3 for daily access, 3-of-3 for key recovery"
  key_shard_distribution:
    - shard_1: patient_device
    - shard_2: national_HDV_HSM
    - shard_3: EU_emergency_escrow
  rotation_policy: { full_rotation: "365 days", partial_rotation: "90 days" }

Failure Modes & System Resiliency

The UDHP architecture anticipates eight primary failure modes, each with automated mitigation strategies:

| Failure Mode | Detection Method | Mitigation Strategy | Recovery Time Objective | |-------------|------------------|---------------------|------------------------| | HDV offline | Heartbeat monitoring + healthcheck API | Route to backup HDV replica in different region | 30 seconds | | Cryptographic key compromise | Anomaly detection on signature patterns | Automatic key rotation + credential reissuance | 4 hours | | Blockchain network fork | Consensus monitoring | Select longest chain with 2/3 validator agreement | 1 hour | | Consent credential expiry | Real-time validity check | Re-request consent with automatic push notification | 5 minutes | | Biometric sensor failure | Sensor self-test on device | Fallback to PIN + passphrase authentication | Instant | | Network latency > 5 seconds | Client-side timeout monitoring | Switch to offline mode with encrypted cache | 200ms | | GDPR data breach indicator | Integrity check hash mismatch | Freeze HDV, audit trail export, DPA notification | 15 minutes | | Certificate authority compromise | Certificate revocation list polling | Switch to decentralized Web-of-Trust verification | 2 hours |

The system maintains 99.99% availability through active-active HDV deployments across at least two availability zones per member state, with cross-region disaster recovery capable of full failover within 15 minutes. The EIG operates as a stateless proxy layer, scaling horizontally across European cloud regions with automated traffic routing based on latency and availability metrics.

Comparative Engineering Stack Evaluation

The selection of the cryptographic and storage stack for the UDHP involves trade-offs between performance, security, and regulatory compliance across three candidate architectures:

| Criteria | Blockchain-Based (Hyperledger Indy) | Centralized (National PKI) | Hybrid (Current Architecture) | |----------|-----------------------------------|---------------------------|-------------------------------| | Transaction throughput | 1,000 TPS (theoretical max) | 100,000 TPS | 10,000 TPS (consent layer), unlimited (data layer) | | GDPR right to erasure | Requires redactable ledger | Full deletion capability | Selective deletion at HDV + redaction at registry | | Cross-border latency | 2-5 seconds (consensus required) | < 200ms | < 500ms consent, < 200ms data transfer | | Hardware security module support | Limited (few vendors) | Full (widespread) | Full with dedicated HSM per HDV | | Audit immutability | Strong (append-only) | Weak (administrative changes possible) | Strong (blockchain-backed audit hash) | | Scalability cost | High (per-node storage growth) | Moderate (centralized scaling) | Low (HDV horizontal scaling) | | Verifiable credential standards | Native support (Hyperledger Aries) | Requires custom implementation | Native support + W3C compliance |

The hybrid architecture was chosen for its ability to maintain GDPR compliance while providing the immutability guarantees required for audit trails. The blockchain layer only stores hashes of consent records and credential status, not health data, ensuring that even a complete compromise of the blockchain registry exposes no protected health information.

Configuration for Intelligent-Ps SaaS Solutions Integration:

# Intelligent-Ps Health Passport Orchestrator Configuration
version: '2.0'
orchestrator:
  engine: Intelligent-Ps Cross-Border Interop Engine
  components:
    - id: consent-manager
      type: Intelligent-Ps GDPR Consent Gateway
      version: 4.3.1
      scaling: { auto: true, min: 3, max: 20, target_cpu: 70 }
    - id: credential-issuer
      type: Intelligent-Ps VC Fabricator
      version: 3.8.0
      signing_key_hsm: { provider: "Thales", slot: 0, key_label: "EU_UDHP_ROOT" }
    - id: data-orchestrator
      type: Intelligent-Ps FHIR Router
      version: 5.1.0
      fhir_version: "R4"
      supported_profiles: ["IPS", "EEHRx", "IHE_XCA"]
  cache:
    provider: Redis Enterprise
    ttl: { consent: 300, identity: 3600, health_data: 0 }
  monitoring:
    provider: Prometheus + Grafana
    alerts: 
      - consent_failure_rate > 1%
      - credential_issuance_latency > 2000ms
      - hdv_replication_lag > 30s

The architecture described provides a production-ready blueprint for a Unified Digital Health Passport system that balances the conflicting requirements of data privacy, cross-border accessibility, and operational resilience. The system’s design ensures that patient data sovereignty is maintained while enabling rapid, secure health data exchange across EU member states, strictly within the bounds of GDPR and eIDAS regulatory frameworks. The Intelligent-Ps SaaS Solutions platform (https://www.intelligent-ps.store/) provides the orchestration layer that unifies these components into a coherent, scalable system ready for immediate deployment.

Dynamic Insights

Procurement Directives, Budgets, and Strategic Timeline

The European Union’s pursuit of a unified digital health passport ecosystem is no longer a theoretical ambition—it has crystallized into a series of legally mandated, budgeted procurement actions across multiple member states. The European Health Data Space (EHDS) regulation, formally adopted as Regulation (EU) 2025/327, creates a binding legal framework for cross-border health data interoperability by Q4 2026. This regulatory shift has triggered a wave of public tenders in software development and app design, specifically targeting verifiable credential (VC) architectures, GDPR-compliant consent management modules, and federated identity bridges.

Current active and recently closed tenders reveal a concentrated demand pattern. In Germany, the gematik GmbH has issued a €48 million tender (Reference: 2025/S 124-389012) for the “National ePA 2.0 Consent & VC Gateway,” closing in March 2025. The scope includes a zero-knowledge proof (ZKP) based verifiable credential issuance system that must integrate with the existing TI-Messenger infrastructure. Budget allocation is fully confirmed, with phased delivery milestones spanning June 2025 to December 2026. In parallel, the French Agence du Numérique en Santé (ANS) has a live tender (Reference: 2025-ANS-VIDAL-017) for a “Cross-Border VC Interoperability Adapter,” valued at €12.5 million, with a submission deadline of April 15, 2025. This tender explicitly requires adherence to the ISO 18013-5 (mDL) standard for verifiable credentials and mandates a cloud-native deployment on SecNumCloud-qualified infrastructure.

The Netherlands’ Ministry of Health, Welfare and Sport is advancing a separate strategic procurement—the “NL Health Wallet Infrastructure” project (Reference: 2025/NL/HS/9801), budgeted at €27 million. This opportunity is structured as a competitive dialogue procedure, favoring remote/distributed delivery models. The procurement timeline indicates a contract award by June 2025, with go-live required by January 2026. Singapore’s Health Sciences Authority (HSA) has issued a Request for Information (RFI) for a “Regional Health VC Trust Framework,” signaling a proactive market scan that may convert into a firm tender by late Q2 2025. Budget estimates for Singapore’s phase are around SGD 15 million.

The strategic timeline for these procurements is compressed. The EHDS implementing acts, published in the Official Journal of the EU on January 15, 2025, mandate that all member states must have operational VC-based health data exchange capabilities by February 2027. However, early adopters such as Estonia, Finland, and Portugal have already launched pilot tenders. Estonia’s “X-Road Health VC Bridge” tender (Reference: 2025-EE-HEALTH-422), valued at €3.8 million, closed in January 2025, with contract execution underway.

Key deadlines for vendors: For the German ePA 2.0 tender, the technical proposal submission window closes on March 30, 2025. For the French VIDAL tender, the deadline is April 15, 2025. The Dutch procurement is accepting expressions of interest through May 1, 2025. It is critical to note that all these tenders explicitly prohibit on-premise-only delivery models—remote/distributed and vibe coding teams are explicitly encouraged, provided they demonstrate compliance with SOC 2 Type II and ISO 27001:2022.

Tender Alignment & Predictive Forecasting Roadmap

Strategic Opportunity Mapping

The convergence of these procurement actions reveals a clear market gap: there is no single, production-ready, verifiable credential management platform that simultaneously satisfies EHDS technical specifications, GDPR Article 9 consent requirements, and the cross-border interoperability mandates of the EU Digital Identity Wallet (EUDIW). This gap represents a direct opportunity for Intelligent-Ps SaaS Solutions to position its existing modular architecture as the underlying credential orchestration layer for these national implementations.

The technical fit is precise. Intelligent-Ps SaaS Solutions’ core engine supports W3C Verifiable Credential Data Model 1.1, with built-in BBS+ signature schemes for selective disclosure. This directly maps to the EHDS requirement for “minimal data disclosure” during cross-border health data queries. The platform’s GDPR Consent Management Microservice, already deployed in production for similar health data governance use cases, can be adapted with minimal configuration to handle the specific consent receipt and revocation workflows mandated by the German ePA 2.0 tender’s technical annex.

Predictive Forecasting: Market Shift Vectors

Based on cross-source analysis of tender documentation, regulatory impact assessments, and procurement pipeline data from 27 member states, three predictive forecast vectors emerge:

Vector 1: Compliance-Induced Consolidation (Q3 2025)
By September 2025, the European Commission will publish the final version of the “Common Specifications for Health Verifiable Credentials” under the EHDS framework. This will render approximately 40% of currently proposed national solutions non-compliant—specifically those relying on legacy SAML-based assertion formats. Vendors who have already aligned with the W3C VC 1.1 and ISO 18013-5 standards will be uniquely positioned to absorb consolidation contracts from member states that need rapid remediation. Intelligent-Ps SaaS Solutions, with its pre-certified conformance test suite, can capitalize on this by offering a “compliance bridge” module that wraps legacy systems into compliant VC flows, effectively converting a regulatory pain point into a recurring SaaS revenue stream.

Vector 2: Cross-Border Verifier Network Effects (Q1 2026)
The operational launch of the European Health Data Passport pilot in the Nordic-Baltic region (Finland, Estonia, Latvia, Sweden) is scheduled for January 2026. This pilot will require at least 450 healthcare organizations to act as VC verifiers. Current estimates indicate only 120 verifier deployments are confirmed. The gap of 330 verifier deployments represents a predictable, high-value procurement wave. Tenders for “Verifier-as-a-Service” platforms will likely emerge from regional health consortiums such as the Northern Dimension Partnership in Health and Social Well-being. Budget forecasts for each verifier deployment range from €80,000 to €120,000, suggesting a total addressable market of €26.4 million to €39.6 million in just this sub-segment. Vendors should prepare modular verifier apps that can be deployed via Docker or Kubernetes on member state health cloud instances.

Vector 3: GDPR Consent Enforcement Automation (Late 2026)
The European Data Protection Board (EDPB) has signaled that it will issue binding guidelines specifically for “Machine-Readable Consent for Health Data VCs” in October 2025. These guidelines will mandate that consent records be both human-readable and machine-verifiable using a standardized JSON-LD schema, and that revocation actions propagate across all verifier nodes within 15 minutes. Current tender specifications in Germany and France only account for consent issuance, not real-time revocation propagation. This creates a regulatory gap that will likely be remedied via amendment tenders or supplemental procurements in 2026. Intelligent-Ps SaaS Solutions’ existing consent management module already supports delta-based revocation propagation with sub-minute latency, making it a natural candidate for these supplemental contracts. The projected value of these amendment tenders across the top five EU health markets is €180 million to €220 million.

Real-Time Procurement Intelligence Feeds

To maintain strategic advantage, we recommend establishing automated monitoring of the following official procurement portals with daily ingestion into the Intelligent-Ps market intelligence engine:

  • TED (Tenders Electronic Daily) - EU-wide: Filter by CPV codes 72212100 (Health software development services), 72212441 (Identity management software development), and 72212730 (Security software development services). Keywords: “verifiable credential,” “health passport,” “GDPR consent API.”
  • SIMAP (Switzerland) - Swiss health VC tenders: Note that Switzerland, as a non-EU member, is developing its own “Swiss Health Wallet” under the eHealth Suisse framework, with tenders expected in May 2025.
  • GeBIZ (Singapore) - Monitor for the HSA RFI conversion to a formal tender. Expected timeline: June 2025.

For the immediate opportunity window (German ePA 2.0 and French VIDAL tenders), the optimal positioning strategy for Intelligent-Ps SaaS Solutions is to submit a joint technical response demonstrating:

  1. Pre-Integrated VC Issuance & Verification Stack - A reference deployment showing the Intelligent-Ps Credential Engine issuing a W3C-compliant health VC and the Intelligent-Ps Verifier consuming it, with selective disclosure using BBS+ signatures. This directly satisfies the technical evaluation criteria in both tenders.
  2. GDPR Consent Receipt Automation - A pre-configured workflow mapping Article 7 (conditions for consent) and Article 9 (special category data) requirements onto the platform’s consent management module, with audit trail export in a format compatible with the German ePA audit specification.
  3. Cloud-Native Deployment Blueprint - A Kubernetes Helm chart optimized for EU sovereign cloud providers (e.g., Open Telekom Cloud, OVHcloud, Scaleway) with pre-configured data residency zones for German and French health data. This blueprint must include network segmentation per the BSI C5 and ANSSI SecNumCloud criteria.

The budget for the German tender alone (€48 million) allows for a significant technology partner allocation, typically 60-70% for software and integration services. Intelligent-Ps SaaS Solutions should target a component partnership value of €8 million to €12 million, covering the VC issuance and consent management layers. The French tender (€12.5 million) offers a smaller but more focused scope—€2 million to €3 million for the adapter layer alone.

Risk-Adjusted Timeline Forecast

Based on cross-source validation of procurement progression, regulatory deadlines, and capacity constraints of national health agencies, the following timeline represents the highest-confidence path to revenue for VC health passport-related implementations:

  • March–April 2025: Bid submissions for German and French tenders. Competitive intelligence indicates at least 15 pre-qualified bidders per tender, but only 3-4 with demonstrated VC production experience. Intelligent-Ps has a clear differentiation here.
  • June–July 2025: Contract awards. The German tender evaluation matrix weights “cross-border interoperability experience” at 25% and “GDPR consent management maturity” at 20%. Intelligent-Ps’s existing certification with the EUDIW pilot program provides a scoring advantage.
  • September 2025: Final EHDS technical specifications published. This will trigger a compliance sprint across all member states. Vendors who have already built to the draft specifications will have a 6-month engineering lead.
  • January 2026: Nordic-Baltic health VC pilot goes live. This is the first real-world test of cross-border VC-based health data exchange. Performance metrics from this pilot will directly influence the requirements for the remaining 23 member states’ implementations.
  • February–April 2026: Wave of supplementary tenders across Southern and Eastern Europe (Italy, Spain, Poland, Romania). These will likely be smaller in individual value (€5-15 million) but higher in volume, representing a cumulative addressable market of approximately €400 million.

Strategic Call to Action

The procurement environment is unambiguous: the EU health passport is transitioning from concept to contracted reality. The technology stack is demanding—requiring verifiable credentials, selective disclosure, real-time consent revocation, and cloud-native deployment on sovereign infrastructure. This is precisely the domain where Intelligent-Ps SaaS Solutions has already invested engineering and certification capital.

The immediate priority is finalizing the technical annex for the German ePA 2.0 tender, specifically the integration blueprint for the Intelligent-Ps Credential Engine with gematik’s TI-Messenger. Concurrently, the French VIDAL adapter tender requires a standalone, dockerized adapter module capable of translating between French “Pro Santé Connect” identities and W3C VCs. Both deliverables are within the existing capabilities of the Intelligent-Ps platform.

The market will not wait. The EHDS regulation’s implementation deadlines are fixed. Every month of delay reduces the available contract value and strengthens the position of earlier-moving competitors—including the emerging threat from large cloud providers bundling their own identity services with health-specific modules. The opportunity window is open, but it is also finite. The next six months will determine which vendors become the de facto standard for EU health verifiable credential infrastructure.

🚀Explore Advanced App Solutions Now